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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (533) hide show
  1. package/es/index.js +46649 -35051
  2. package/es/style.css +1933 -2633
  3. package/es/ui/config/index.d.ts +5 -0
  4. package/es/ui/index.d.ts +34 -0
  5. package/es/ui/src/AdvancedSearch/index.d.ts +3 -0
  6. package/es/ui/src/AdvancedSearch/src/data.d.ts +27 -0
  7. package/es/ui/src/Basic/index.d.ts +4 -0
  8. package/es/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
  9. package/es/ui/src/Basic/src/BasicHelp.d.ts +117 -0
  10. package/es/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
  11. package/es/ui/src/BasicContainer/index.d.ts +3 -0
  12. package/es/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
  13. package/es/ui/src/BasicContainer/src/props.d.ts +94 -0
  14. package/es/ui/src/BasicResizeWrapper/index.d.ts +2 -0
  15. package/es/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
  16. package/es/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
  17. package/es/ui/src/Button/index.d.ts +235 -0
  18. package/es/ui/src/Button/src/BasicButton.d.ts +105 -0
  19. package/es/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
  20. package/es/ui/src/Button/src/props.d.ts +48 -0
  21. package/es/ui/src/ClickOutSide/index.d.ts +2 -0
  22. package/es/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
  23. package/es/ui/src/ColorPickerPopover/index.d.ts +2 -0
  24. package/es/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
  25. package/es/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
  26. package/es/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
  27. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
  28. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
  29. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
  30. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
  31. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
  32. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
  33. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
  34. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
  35. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
  36. package/es/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
  37. package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
  38. package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
  39. package/es/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
  40. package/es/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
  41. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
  42. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
  43. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
  44. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
  45. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
  46. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
  47. package/es/ui/src/Container/index.d.ts +5 -0
  48. package/es/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  49. package/es/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  50. package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
  51. package/es/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  52. package/es/ui/src/Container/src/typing.d.ts +15 -0
  53. package/es/ui/src/ContextMenu/index.d.ts +3 -0
  54. package/es/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
  55. package/es/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
  56. package/es/ui/src/ContextMenu/src/typing.d.ts +33 -0
  57. package/es/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
  58. package/es/ui/src/CountDown/index.d.ts +3 -0
  59. package/es/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  60. package/es/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  61. package/es/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  62. package/es/ui/src/CountTo/index.d.ts +2 -0
  63. package/es/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
  64. package/es/ui/src/Cropper/index.d.ts +4 -0
  65. package/es/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
  66. package/es/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
  67. package/es/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
  68. package/es/ui/src/Cropper/src/typing.d.ts +6 -0
  69. package/es/ui/src/Description/index.d.ts +6 -0
  70. package/es/ui/src/Description/src/Description.d.ts +98 -0
  71. package/es/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
  72. package/es/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
  73. package/es/ui/src/Description/src/components/formItem.d.ts +41 -0
  74. package/es/ui/src/Description/src/props.d.ts +60 -0
  75. package/es/ui/src/Description/src/typing.d.ts +38 -0
  76. package/es/ui/src/Description/src/useDescription.d.ts +2 -0
  77. package/es/ui/src/Descriptions/index.d.ts +249 -0
  78. package/es/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
  79. package/es/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
  80. package/es/ui/src/Descriptions/src/props.d.ts +52 -0
  81. package/es/ui/src/Descriptions/src/typing.d.ts +31 -0
  82. package/es/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
  83. package/es/ui/src/Drawer/index.d.ts +4 -0
  84. package/es/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
  85. package/es/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
  86. package/es/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
  87. package/es/ui/src/Drawer/src/props.d.ts +115 -0
  88. package/es/ui/src/Drawer/src/typing.d.ts +177 -0
  89. package/es/ui/src/Drawer/src/useDrawer.d.ts +6 -0
  90. package/es/ui/src/Dropdown/index.d.ts +3 -0
  91. package/es/ui/src/Dropdown/src/typing.d.ts +9 -0
  92. package/es/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
  93. package/es/ui/src/Icon/index.d.ts +5 -0
  94. package/es/ui/src/Icon/src/Icon.vue.d.ts +51 -0
  95. package/es/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  96. package/es/ui/src/Label/index.d.ts +2 -0
  97. package/es/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
  98. package/es/ui/src/Label/src/props.d.ts +14 -0
  99. package/es/ui/src/Loading/index.d.ts +4 -0
  100. package/es/ui/src/Loading/src/Loading.vue.d.ts +57 -0
  101. package/es/ui/src/Loading/src/createLoading.d.ts +13 -0
  102. package/es/ui/src/Loading/src/typing.d.ts +9 -0
  103. package/es/ui/src/Loading/src/useLoading.d.ts +11 -0
  104. package/es/ui/src/Modal/index.d.ts +710 -0
  105. package/es/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
  106. package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
  107. package/es/ui/src/Modal/src/components/Modal.d.ts +300 -0
  108. package/es/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  109. package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
  110. package/es/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  111. package/es/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
  112. package/es/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
  113. package/es/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  114. package/es/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  115. package/es/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  116. package/es/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  117. package/es/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  118. package/es/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  119. package/es/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  120. package/es/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  121. package/es/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  122. package/es/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  123. package/es/ui/src/Modal/src/props.d.ts +171 -0
  124. package/es/ui/src/Modal/src/typing.d.ts +174 -0
  125. package/es/ui/src/Modal/src/utils/index.d.ts +5 -0
  126. package/es/ui/src/Modal/src/utils/is.d.ts +13 -0
  127. package/es/ui/src/Modal/src/utils/log.d.ts +2 -0
  128. package/es/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  129. package/es/ui/src/Page/index.d.ts +5 -0
  130. package/es/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  131. package/es/ui/src/Page/src/PageSecond.d.ts +63 -0
  132. package/es/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
  133. package/es/ui/src/Process/index.d.ts +2 -0
  134. package/es/ui/src/Process/src/Process.d.ts +80 -0
  135. package/es/ui/src/Scrollbar/index.d.ts +6 -0
  136. package/es/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  137. package/es/ui/src/Scrollbar/src/bar.d.ts +14 -0
  138. package/es/ui/src/Scrollbar/src/types.d.ts +18 -0
  139. package/es/ui/src/Scrollbar/src/util.d.ts +8 -0
  140. package/es/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
  141. package/es/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
  142. package/es/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
  143. package/es/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
  144. package/es/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
  145. package/es/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
  146. package/es/ui/src/ShyContainer/index.d.ts +3 -0
  147. package/es/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
  148. package/es/ui/src/ShyContainer/src/props.d.ts +98 -0
  149. package/es/ui/src/ShyForm/index.d.ts +21 -0
  150. package/es/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
  151. package/es/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
  152. package/es/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
  153. package/es/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
  154. package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
  155. package/es/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
  156. package/es/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
  157. package/es/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
  158. package/es/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
  159. package/es/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
  160. package/es/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
  161. package/es/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
  162. package/es/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
  163. package/es/ui/src/ShyForm/src/components/Group.d.ts +125 -0
  164. package/es/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
  165. package/es/ui/src/ShyForm/src/components/Table.d.ts +271 -0
  166. package/es/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
  167. package/es/ui/src/ShyForm/src/helper.d.ts +14 -0
  168. package/es/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
  169. package/es/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
  170. package/es/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
  171. package/es/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
  172. package/es/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
  173. package/es/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
  174. package/es/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
  175. package/es/ui/src/ShyForm/src/props.d.ts +430 -0
  176. package/es/ui/src/ShyForm/src/types/form.d.ts +127 -0
  177. package/es/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
  178. package/es/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
  179. package/es/ui/src/ShyForm/src/types/index.d.ts +90 -0
  180. package/es/ui/src/ShyLayoutContainer/index.d.ts +2 -0
  181. package/es/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
  182. package/es/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
  183. package/es/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
  184. package/es/ui/src/ShyTable/index.d.ts +10 -0
  185. package/es/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
  186. package/es/ui/src/ShyTable/src/componentMap.d.ts +6 -0
  187. package/es/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  188. package/es/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
  189. package/es/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
  190. package/es/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
  191. package/es/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
  192. package/es/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
  193. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
  194. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
  195. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
  196. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
  197. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
  198. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
  199. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
  200. package/es/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
  201. package/es/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
  202. package/es/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
  203. package/es/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
  204. package/es/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
  205. package/es/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
  206. package/es/ui/src/ShyTable/src/const.d.ts +25 -0
  207. package/es/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
  208. package/es/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
  209. package/es/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
  210. package/es/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
  211. package/es/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
  212. package/es/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
  213. package/es/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
  214. package/es/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
  215. package/es/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
  216. package/es/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
  217. package/es/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
  218. package/es/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
  219. package/es/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
  220. package/es/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
  221. package/es/ui/src/ShyTable/src/props.d.ts +577 -0
  222. package/es/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
  223. package/es/ui/src/ShyTable/src/types/table.d.ts +422 -0
  224. package/es/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
  225. package/es/ui/src/ShyTag/index.d.ts +3 -0
  226. package/es/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
  227. package/es/ui/src/ShyTag/src/props.d.ts +47 -0
  228. package/es/ui/src/StrengthMeter/index.d.ts +2 -0
  229. package/es/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
  230. package/es/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
  231. package/es/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
  232. package/es/ui/src/TablePlus/componentMap.d.ts +6 -0
  233. package/es/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
  234. package/es/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
  235. package/es/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
  236. package/es/ui/src/TablePlus/hooks/index.d.ts +2 -0
  237. package/es/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
  238. package/es/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
  239. package/es/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
  240. package/es/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
  241. package/es/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
  242. package/es/ui/src/TablePlus/index.d.ts +3 -0
  243. package/es/ui/src/TablePlus/props.d.ts +6 -0
  244. package/es/ui/src/TablePlus/types/componentType.d.ts +1 -0
  245. package/es/ui/src/Transition/index.d.ts +368 -0
  246. package/es/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  247. package/es/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  248. package/es/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  249. package/es/ui/src/Tree/index.d.ts +12 -0
  250. package/es/ui/src/Tree/src/BasicTree.d.ts +97 -0
  251. package/es/ui/src/Tree/src/TreeIcon.d.ts +2 -0
  252. package/es/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
  253. package/es/ui/src/Tree/src/types/tree.d.ts +123 -0
  254. package/es/ui/src/Tree/style/index.d.ts +0 -0
  255. package/es/ui/src/Upload/src/components/FileList.d.ts +254 -0
  256. package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
  257. package/es/ui/src/Upload/src/components/data.d.ts +9 -0
  258. package/es/ui/src/Upload/src/helper.d.ts +7 -0
  259. package/es/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
  260. package/es/ui/src/Upload/src/props.d.ts +153 -0
  261. package/es/ui/src/Upload/src/types/typing.d.ts +45 -0
  262. package/es/ui/src/directives/clickOutside.d.ts +3 -0
  263. package/es/ui/src/directives/index.d.ts +1 -0
  264. package/es/ui/src/enums/sizeEnum.d.ts +11 -0
  265. package/es/ui/types/global.d.ts +102 -0
  266. package/es/ui/types/index.d.ts +36 -0
  267. package/lib/index.js +46623 -35025
  268. package/lib/style.css +1933 -2633
  269. package/lib/ui/config/index.d.ts +5 -0
  270. package/lib/ui/index.d.ts +34 -0
  271. package/lib/ui/src/AdvancedSearch/index.d.ts +3 -0
  272. package/lib/ui/src/AdvancedSearch/src/data.d.ts +27 -0
  273. package/lib/ui/src/Basic/index.d.ts +4 -0
  274. package/lib/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
  275. package/lib/ui/src/Basic/src/BasicHelp.d.ts +117 -0
  276. package/lib/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
  277. package/lib/ui/src/BasicContainer/index.d.ts +3 -0
  278. package/lib/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
  279. package/lib/ui/src/BasicContainer/src/props.d.ts +94 -0
  280. package/lib/ui/src/BasicResizeWrapper/index.d.ts +2 -0
  281. package/lib/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
  282. package/lib/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
  283. package/lib/ui/src/Button/index.d.ts +235 -0
  284. package/lib/ui/src/Button/src/BasicButton.d.ts +105 -0
  285. package/lib/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
  286. package/lib/ui/src/Button/src/props.d.ts +48 -0
  287. package/lib/ui/src/ClickOutSide/index.d.ts +2 -0
  288. package/lib/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
  289. package/lib/ui/src/ColorPickerPopover/index.d.ts +2 -0
  290. package/lib/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
  291. package/lib/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
  292. package/lib/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
  293. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
  294. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
  295. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
  296. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
  297. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
  298. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
  299. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
  300. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
  301. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
  302. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
  303. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
  304. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
  305. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
  306. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
  307. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
  308. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
  309. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
  310. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
  311. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
  312. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
  313. package/lib/ui/src/Container/index.d.ts +5 -0
  314. package/lib/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  315. package/lib/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  316. package/lib/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
  317. package/lib/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  318. package/lib/ui/src/Container/src/typing.d.ts +15 -0
  319. package/lib/ui/src/ContextMenu/index.d.ts +3 -0
  320. package/lib/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
  321. package/lib/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
  322. package/lib/ui/src/ContextMenu/src/typing.d.ts +33 -0
  323. package/lib/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
  324. package/lib/ui/src/CountDown/index.d.ts +3 -0
  325. package/lib/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  326. package/lib/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  327. package/lib/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  328. package/lib/ui/src/CountTo/index.d.ts +2 -0
  329. package/lib/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
  330. package/lib/ui/src/Cropper/index.d.ts +4 -0
  331. package/lib/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
  332. package/lib/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
  333. package/lib/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
  334. package/lib/ui/src/Cropper/src/typing.d.ts +6 -0
  335. package/lib/ui/src/Description/index.d.ts +6 -0
  336. package/lib/ui/src/Description/src/Description.d.ts +98 -0
  337. package/lib/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
  338. package/lib/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
  339. package/lib/ui/src/Description/src/components/formItem.d.ts +41 -0
  340. package/lib/ui/src/Description/src/props.d.ts +60 -0
  341. package/lib/ui/src/Description/src/typing.d.ts +38 -0
  342. package/lib/ui/src/Description/src/useDescription.d.ts +2 -0
  343. package/lib/ui/src/Descriptions/index.d.ts +249 -0
  344. package/lib/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
  345. package/lib/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
  346. package/lib/ui/src/Descriptions/src/props.d.ts +52 -0
  347. package/lib/ui/src/Descriptions/src/typing.d.ts +31 -0
  348. package/lib/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
  349. package/lib/ui/src/Drawer/index.d.ts +4 -0
  350. package/lib/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
  351. package/lib/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
  352. package/lib/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
  353. package/lib/ui/src/Drawer/src/props.d.ts +115 -0
  354. package/lib/ui/src/Drawer/src/typing.d.ts +177 -0
  355. package/lib/ui/src/Drawer/src/useDrawer.d.ts +6 -0
  356. package/lib/ui/src/Dropdown/index.d.ts +3 -0
  357. package/lib/ui/src/Dropdown/src/typing.d.ts +9 -0
  358. package/lib/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
  359. package/lib/ui/src/Icon/index.d.ts +5 -0
  360. package/lib/ui/src/Icon/src/Icon.vue.d.ts +51 -0
  361. package/lib/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  362. package/lib/ui/src/Label/index.d.ts +2 -0
  363. package/lib/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
  364. package/lib/ui/src/Label/src/props.d.ts +14 -0
  365. package/lib/ui/src/Loading/index.d.ts +4 -0
  366. package/lib/ui/src/Loading/src/Loading.vue.d.ts +57 -0
  367. package/lib/ui/src/Loading/src/createLoading.d.ts +13 -0
  368. package/lib/ui/src/Loading/src/typing.d.ts +9 -0
  369. package/lib/ui/src/Loading/src/useLoading.d.ts +11 -0
  370. package/lib/ui/src/Modal/index.d.ts +710 -0
  371. package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
  372. package/lib/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
  373. package/lib/ui/src/Modal/src/components/Modal.d.ts +300 -0
  374. package/lib/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  375. package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
  376. package/lib/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  377. package/lib/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
  378. package/lib/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
  379. package/lib/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  380. package/lib/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  381. package/lib/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  382. package/lib/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  383. package/lib/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  384. package/lib/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  385. package/lib/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  386. package/lib/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  387. package/lib/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  388. package/lib/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  389. package/lib/ui/src/Modal/src/props.d.ts +171 -0
  390. package/lib/ui/src/Modal/src/typing.d.ts +174 -0
  391. package/lib/ui/src/Modal/src/utils/index.d.ts +5 -0
  392. package/lib/ui/src/Modal/src/utils/is.d.ts +13 -0
  393. package/lib/ui/src/Modal/src/utils/log.d.ts +2 -0
  394. package/lib/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  395. package/lib/ui/src/Page/index.d.ts +5 -0
  396. package/lib/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  397. package/lib/ui/src/Page/src/PageSecond.d.ts +63 -0
  398. package/lib/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
  399. package/lib/ui/src/Process/index.d.ts +2 -0
  400. package/lib/ui/src/Process/src/Process.d.ts +80 -0
  401. package/lib/ui/src/Scrollbar/index.d.ts +6 -0
  402. package/lib/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  403. package/lib/ui/src/Scrollbar/src/bar.d.ts +14 -0
  404. package/lib/ui/src/Scrollbar/src/types.d.ts +18 -0
  405. package/lib/ui/src/Scrollbar/src/util.d.ts +8 -0
  406. package/lib/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
  407. package/lib/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
  408. package/lib/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
  409. package/lib/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
  410. package/lib/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
  411. package/lib/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
  412. package/lib/ui/src/ShyContainer/index.d.ts +3 -0
  413. package/lib/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
  414. package/lib/ui/src/ShyContainer/src/props.d.ts +98 -0
  415. package/lib/ui/src/ShyForm/index.d.ts +21 -0
  416. package/lib/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
  417. package/lib/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
  418. package/lib/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
  419. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
  420. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
  421. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
  422. package/lib/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
  423. package/lib/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
  424. package/lib/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
  425. package/lib/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
  426. package/lib/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
  427. package/lib/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
  428. package/lib/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
  429. package/lib/ui/src/ShyForm/src/components/Group.d.ts +125 -0
  430. package/lib/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
  431. package/lib/ui/src/ShyForm/src/components/Table.d.ts +271 -0
  432. package/lib/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
  433. package/lib/ui/src/ShyForm/src/helper.d.ts +14 -0
  434. package/lib/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
  435. package/lib/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
  436. package/lib/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
  437. package/lib/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
  438. package/lib/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
  439. package/lib/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
  440. package/lib/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
  441. package/lib/ui/src/ShyForm/src/props.d.ts +430 -0
  442. package/lib/ui/src/ShyForm/src/types/form.d.ts +127 -0
  443. package/lib/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
  444. package/lib/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
  445. package/lib/ui/src/ShyForm/src/types/index.d.ts +90 -0
  446. package/lib/ui/src/ShyLayoutContainer/index.d.ts +2 -0
  447. package/lib/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
  448. package/lib/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
  449. package/lib/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
  450. package/lib/ui/src/ShyTable/index.d.ts +10 -0
  451. package/lib/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
  452. package/lib/ui/src/ShyTable/src/componentMap.d.ts +6 -0
  453. package/lib/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  454. package/lib/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
  455. package/lib/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
  456. package/lib/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
  457. package/lib/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
  458. package/lib/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
  459. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
  460. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
  461. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
  462. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
  463. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
  464. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
  465. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
  466. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
  467. package/lib/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
  468. package/lib/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
  469. package/lib/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
  470. package/lib/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
  471. package/lib/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
  472. package/lib/ui/src/ShyTable/src/const.d.ts +25 -0
  473. package/lib/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
  474. package/lib/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
  475. package/lib/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
  476. package/lib/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
  477. package/lib/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
  478. package/lib/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
  479. package/lib/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
  480. package/lib/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
  481. package/lib/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
  482. package/lib/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
  483. package/lib/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
  484. package/lib/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
  485. package/lib/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
  486. package/lib/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
  487. package/lib/ui/src/ShyTable/src/props.d.ts +577 -0
  488. package/lib/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
  489. package/lib/ui/src/ShyTable/src/types/table.d.ts +422 -0
  490. package/lib/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
  491. package/lib/ui/src/ShyTag/index.d.ts +3 -0
  492. package/lib/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
  493. package/lib/ui/src/ShyTag/src/props.d.ts +47 -0
  494. package/lib/ui/src/StrengthMeter/index.d.ts +2 -0
  495. package/lib/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
  496. package/lib/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
  497. package/lib/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
  498. package/lib/ui/src/TablePlus/componentMap.d.ts +6 -0
  499. package/lib/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
  500. package/lib/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
  501. package/lib/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
  502. package/lib/ui/src/TablePlus/hooks/index.d.ts +2 -0
  503. package/lib/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
  504. package/lib/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
  505. package/lib/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
  506. package/lib/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
  507. package/lib/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
  508. package/lib/ui/src/TablePlus/index.d.ts +3 -0
  509. package/lib/ui/src/TablePlus/props.d.ts +6 -0
  510. package/lib/ui/src/TablePlus/types/componentType.d.ts +1 -0
  511. package/lib/ui/src/Transition/index.d.ts +368 -0
  512. package/lib/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  513. package/lib/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  514. package/lib/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  515. package/lib/ui/src/Tree/index.d.ts +12 -0
  516. package/lib/ui/src/Tree/src/BasicTree.d.ts +97 -0
  517. package/lib/ui/src/Tree/src/TreeIcon.d.ts +2 -0
  518. package/lib/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
  519. package/lib/ui/src/Tree/src/types/tree.d.ts +123 -0
  520. package/lib/ui/src/Tree/style/index.d.ts +0 -0
  521. package/lib/ui/src/Upload/src/components/FileList.d.ts +254 -0
  522. package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
  523. package/lib/ui/src/Upload/src/components/data.d.ts +9 -0
  524. package/lib/ui/src/Upload/src/helper.d.ts +7 -0
  525. package/lib/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
  526. package/lib/ui/src/Upload/src/props.d.ts +153 -0
  527. package/lib/ui/src/Upload/src/types/typing.d.ts +45 -0
  528. package/lib/ui/src/directives/clickOutside.d.ts +3 -0
  529. package/lib/ui/src/directives/index.d.ts +1 -0
  530. package/lib/ui/src/enums/sizeEnum.d.ts +11 -0
  531. package/lib/ui/types/global.d.ts +102 -0
  532. package/lib/ui/types/index.d.ts +36 -0
  533. package/package.json +8 -7
@@ -0,0 +1,2080 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ title: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ default: string;
6
+ };
7
+ }, {
8
+ props: any;
9
+ register: import("../../../../Modal").RegisterFn;
10
+ closeModal: () => void;
11
+ getTreeProps: unknown;
12
+ getTableProps: any;
13
+ tableRef: import("vue").Ref<any>;
14
+ treeRef: import("vue").Ref<any>;
15
+ handleSelect: (key: any) => Promise<void>;
16
+ emit: (event: "register" | "confirm", ...args: any[]) => void;
17
+ handleComfirm: () => void;
18
+ readonly BasicModal: {
19
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
20
+ defaultFullscreen: {
21
+ type: BooleanConstructor;
22
+ };
23
+ canFullscreen: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ wrapperFooterOffset: {
28
+ type: NumberConstructor;
29
+ default: number;
30
+ };
31
+ helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
32
+ useWrapper: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ loading: {
37
+ type: BooleanConstructor;
38
+ };
39
+ loadingTip: {
40
+ type: StringConstructor;
41
+ };
42
+ showCancelBtn: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ showOkBtn: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
51
+ afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
52
+ (): () => Promise<VueNode>;
53
+ new (): any;
54
+ readonly prototype: any;
55
+ }) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
56
+ (): () => Promise<VueNode>;
57
+ new (): any;
58
+ readonly prototype: any;
59
+ })[];
60
+ bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
61
+ closable: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
66
+ confirmLoading: {
67
+ type: BooleanConstructor;
68
+ };
69
+ destroyOnClose: {
70
+ type: BooleanConstructor;
71
+ };
72
+ footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
73
+ getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
74
+ (): () => any;
75
+ new (): any;
76
+ readonly prototype: any;
77
+ }) | ((new (...args: any[]) => () => any) | (() => () => any) | {
78
+ (): () => any;
79
+ new (): any;
80
+ readonly prototype: any;
81
+ })[];
82
+ mask: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
86
+ maskClosable: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ };
90
+ keyboard: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
94
+ maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
95
+ okType: {
96
+ type: StringConstructor;
97
+ default: string;
98
+ };
99
+ okButtonProps: {
100
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
101
+ };
102
+ cancelButtonProps: {
103
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
104
+ };
105
+ title: {
106
+ type: StringConstructor;
107
+ };
108
+ visible: {
109
+ type: BooleanConstructor;
110
+ };
111
+ width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
112
+ wrapClassName: {
113
+ type: StringConstructor;
114
+ };
115
+ zIndex: {
116
+ type: NumberConstructor;
117
+ };
118
+ size: {
119
+ type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
120
+ default: string;
121
+ };
122
+ scrollTop: {
123
+ type: BooleanConstructor;
124
+ default: boolean;
125
+ };
126
+ height: {
127
+ type: NumberConstructor;
128
+ };
129
+ minHeight: {
130
+ type: NumberConstructor;
131
+ };
132
+ draggable: {
133
+ type: BooleanConstructor;
134
+ default: boolean;
135
+ };
136
+ centered: {
137
+ type: BooleanConstructor;
138
+ };
139
+ cancelText: {
140
+ type: StringConstructor;
141
+ default: string;
142
+ };
143
+ okText: {
144
+ type: StringConstructor;
145
+ default: string;
146
+ };
147
+ closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
148
+ (): () => Promise<boolean>;
149
+ new (): any;
150
+ readonly prototype: any;
151
+ }) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
152
+ (): () => Promise<boolean>;
153
+ new (): any;
154
+ readonly prototype: any;
155
+ })[];
156
+ }>> & {
157
+ "onUpdate:visible"?: (...args: any[]) => any;
158
+ onCancel?: (...args: any[]) => any;
159
+ "onHeight-change"?: (...args: any[]) => any;
160
+ onOk?: (...args: any[]) => any;
161
+ "onVisible-change"?: (...args: any[]) => any;
162
+ onRegister?: (...args: any[]) => any;
163
+ }, {
164
+ prefixCls: string;
165
+ handleCancel: (e: Event) => Promise<void>;
166
+ getBindValue: import("vue").ComputedRef<Recordable<any>>;
167
+ getProps: import("vue").ComputedRef<Recordable<any>>;
168
+ handleFullScreen: (e: Event) => void;
169
+ fullScreenRef: import("vue").Ref<boolean>;
170
+ getMergeProps: import("vue").ComputedRef<Recordable<any>>;
171
+ handleOk: (e: Event) => void;
172
+ visibleRef: import("vue").Ref<boolean>;
173
+ omitBindValue: Object;
174
+ omitSlotKeys: import("vue").ComputedRef<string[]>;
175
+ modalWrapperRef: import("vue").Ref<any>;
176
+ handleExtHeight: (height: number) => void;
177
+ handleHeightChange: (height: string) => void;
178
+ handleTitleDbClick: (e: Event) => void;
179
+ getWrapperHeight: import("vue").ComputedRef<any>;
180
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
181
+ defaultFullscreen: {
182
+ type: BooleanConstructor;
183
+ };
184
+ canFullscreen: {
185
+ type: BooleanConstructor;
186
+ default: boolean;
187
+ };
188
+ wrapperFooterOffset: {
189
+ type: NumberConstructor;
190
+ default: number;
191
+ };
192
+ helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
193
+ useWrapper: {
194
+ type: BooleanConstructor;
195
+ default: boolean;
196
+ };
197
+ loading: {
198
+ type: BooleanConstructor;
199
+ };
200
+ loadingTip: {
201
+ type: StringConstructor;
202
+ };
203
+ showCancelBtn: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ showOkBtn: {
208
+ type: BooleanConstructor;
209
+ default: boolean;
210
+ };
211
+ wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
212
+ afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
213
+ (): () => Promise<VueNode>;
214
+ new (): any;
215
+ readonly prototype: any;
216
+ }) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
217
+ (): () => Promise<VueNode>;
218
+ new (): any;
219
+ readonly prototype: any;
220
+ })[];
221
+ bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
222
+ closable: {
223
+ type: BooleanConstructor;
224
+ default: boolean;
225
+ };
226
+ closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
227
+ confirmLoading: {
228
+ type: BooleanConstructor;
229
+ };
230
+ destroyOnClose: {
231
+ type: BooleanConstructor;
232
+ };
233
+ footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
234
+ getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
235
+ (): () => any;
236
+ new (): any;
237
+ readonly prototype: any;
238
+ }) | ((new (...args: any[]) => () => any) | (() => () => any) | {
239
+ (): () => any;
240
+ new (): any;
241
+ readonly prototype: any;
242
+ })[];
243
+ mask: {
244
+ type: BooleanConstructor;
245
+ default: boolean;
246
+ };
247
+ maskClosable: {
248
+ type: BooleanConstructor;
249
+ default: boolean;
250
+ };
251
+ keyboard: {
252
+ type: BooleanConstructor;
253
+ default: boolean;
254
+ };
255
+ maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
256
+ okType: {
257
+ type: StringConstructor;
258
+ default: string;
259
+ };
260
+ okButtonProps: {
261
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
262
+ };
263
+ cancelButtonProps: {
264
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
265
+ };
266
+ title: {
267
+ type: StringConstructor;
268
+ };
269
+ visible: {
270
+ type: BooleanConstructor;
271
+ };
272
+ width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
273
+ wrapClassName: {
274
+ type: StringConstructor;
275
+ };
276
+ zIndex: {
277
+ type: NumberConstructor;
278
+ };
279
+ size: {
280
+ type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
281
+ default: string;
282
+ };
283
+ scrollTop: {
284
+ type: BooleanConstructor;
285
+ default: boolean;
286
+ };
287
+ height: {
288
+ type: NumberConstructor;
289
+ };
290
+ minHeight: {
291
+ type: NumberConstructor;
292
+ };
293
+ draggable: {
294
+ type: BooleanConstructor;
295
+ default: boolean;
296
+ };
297
+ centered: {
298
+ type: BooleanConstructor;
299
+ };
300
+ cancelText: {
301
+ type: StringConstructor;
302
+ default: string;
303
+ };
304
+ okText: {
305
+ type: StringConstructor;
306
+ default: string;
307
+ };
308
+ closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
309
+ (): () => Promise<boolean>;
310
+ new (): any;
311
+ readonly prototype: any;
312
+ }) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
313
+ (): () => Promise<boolean>;
314
+ new (): any;
315
+ readonly prototype: any;
316
+ })[];
317
+ }>> & {
318
+ "onUpdate:visible"?: (...args: any[]) => any;
319
+ onCancel?: (...args: any[]) => any;
320
+ "onHeight-change"?: (...args: any[]) => any;
321
+ onOk?: (...args: any[]) => any;
322
+ "onVisible-change"?: (...args: any[]) => any;
323
+ onRegister?: (...args: any[]) => any;
324
+ }, {
325
+ size: "small" | "default" | "large";
326
+ mask: boolean;
327
+ loading: boolean;
328
+ visible: boolean;
329
+ defaultFullscreen: boolean;
330
+ canFullscreen: boolean;
331
+ wrapperFooterOffset: number;
332
+ useWrapper: boolean;
333
+ showCancelBtn: boolean;
334
+ showOkBtn: boolean;
335
+ closable: boolean;
336
+ confirmLoading: boolean;
337
+ destroyOnClose: boolean;
338
+ maskClosable: boolean;
339
+ keyboard: boolean;
340
+ okType: string;
341
+ scrollTop: boolean;
342
+ draggable: boolean;
343
+ centered: boolean;
344
+ cancelText: string;
345
+ okText: string;
346
+ }, true, {}, {}, {
347
+ P: {};
348
+ B: {};
349
+ D: {};
350
+ C: {};
351
+ M: {};
352
+ Defaults: {};
353
+ }, Readonly<import("vue").ExtractPropTypes<{
354
+ defaultFullscreen: {
355
+ type: BooleanConstructor;
356
+ };
357
+ canFullscreen: {
358
+ type: BooleanConstructor;
359
+ default: boolean;
360
+ };
361
+ wrapperFooterOffset: {
362
+ type: NumberConstructor;
363
+ default: number;
364
+ };
365
+ helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
366
+ useWrapper: {
367
+ type: BooleanConstructor;
368
+ default: boolean;
369
+ };
370
+ loading: {
371
+ type: BooleanConstructor;
372
+ };
373
+ loadingTip: {
374
+ type: StringConstructor;
375
+ };
376
+ showCancelBtn: {
377
+ type: BooleanConstructor;
378
+ default: boolean;
379
+ };
380
+ showOkBtn: {
381
+ type: BooleanConstructor;
382
+ default: boolean;
383
+ };
384
+ wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
385
+ afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
386
+ (): () => Promise<VueNode>;
387
+ new (): any;
388
+ readonly prototype: any;
389
+ }) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
390
+ (): () => Promise<VueNode>;
391
+ new (): any;
392
+ readonly prototype: any;
393
+ })[];
394
+ bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
395
+ closable: {
396
+ type: BooleanConstructor;
397
+ default: boolean;
398
+ };
399
+ closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
400
+ confirmLoading: {
401
+ type: BooleanConstructor;
402
+ };
403
+ destroyOnClose: {
404
+ type: BooleanConstructor;
405
+ };
406
+ footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
407
+ getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
408
+ (): () => any;
409
+ new (): any;
410
+ readonly prototype: any;
411
+ }) | ((new (...args: any[]) => () => any) | (() => () => any) | {
412
+ (): () => any;
413
+ new (): any;
414
+ readonly prototype: any;
415
+ })[];
416
+ mask: {
417
+ type: BooleanConstructor;
418
+ default: boolean;
419
+ };
420
+ maskClosable: {
421
+ type: BooleanConstructor;
422
+ default: boolean;
423
+ };
424
+ keyboard: {
425
+ type: BooleanConstructor;
426
+ default: boolean;
427
+ };
428
+ maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
429
+ okType: {
430
+ type: StringConstructor;
431
+ default: string;
432
+ };
433
+ okButtonProps: {
434
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
435
+ };
436
+ cancelButtonProps: {
437
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
438
+ };
439
+ title: {
440
+ type: StringConstructor;
441
+ };
442
+ visible: {
443
+ type: BooleanConstructor;
444
+ };
445
+ width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
446
+ wrapClassName: {
447
+ type: StringConstructor;
448
+ };
449
+ zIndex: {
450
+ type: NumberConstructor;
451
+ };
452
+ size: {
453
+ type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
454
+ default: string;
455
+ };
456
+ scrollTop: {
457
+ type: BooleanConstructor;
458
+ default: boolean;
459
+ };
460
+ height: {
461
+ type: NumberConstructor;
462
+ };
463
+ minHeight: {
464
+ type: NumberConstructor;
465
+ };
466
+ draggable: {
467
+ type: BooleanConstructor;
468
+ default: boolean;
469
+ };
470
+ centered: {
471
+ type: BooleanConstructor;
472
+ };
473
+ cancelText: {
474
+ type: StringConstructor;
475
+ default: string;
476
+ };
477
+ okText: {
478
+ type: StringConstructor;
479
+ default: string;
480
+ };
481
+ closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
482
+ (): () => Promise<boolean>;
483
+ new (): any;
484
+ readonly prototype: any;
485
+ }) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
486
+ (): () => Promise<boolean>;
487
+ new (): any;
488
+ readonly prototype: any;
489
+ })[];
490
+ }>> & {
491
+ "onUpdate:visible"?: (...args: any[]) => any;
492
+ onCancel?: (...args: any[]) => any;
493
+ "onHeight-change"?: (...args: any[]) => any;
494
+ onOk?: (...args: any[]) => any;
495
+ "onVisible-change"?: (...args: any[]) => any;
496
+ onRegister?: (...args: any[]) => any;
497
+ }, {
498
+ prefixCls: string;
499
+ handleCancel: (e: Event) => Promise<void>;
500
+ getBindValue: import("vue").ComputedRef<Recordable<any>>;
501
+ getProps: import("vue").ComputedRef<Recordable<any>>;
502
+ handleFullScreen: (e: Event) => void;
503
+ fullScreenRef: import("vue").Ref<boolean>;
504
+ getMergeProps: import("vue").ComputedRef<Recordable<any>>;
505
+ handleOk: (e: Event) => void;
506
+ visibleRef: import("vue").Ref<boolean>;
507
+ omitBindValue: Object;
508
+ omitSlotKeys: import("vue").ComputedRef<string[]>;
509
+ modalWrapperRef: import("vue").Ref<any>;
510
+ handleExtHeight: (height: number) => void;
511
+ handleHeightChange: (height: string) => void;
512
+ handleTitleDbClick: (e: Event) => void;
513
+ getWrapperHeight: import("vue").ComputedRef<any>;
514
+ }, {}, {}, {}, {
515
+ size: "small" | "default" | "large";
516
+ mask: boolean;
517
+ loading: boolean;
518
+ visible: boolean;
519
+ defaultFullscreen: boolean;
520
+ canFullscreen: boolean;
521
+ wrapperFooterOffset: number;
522
+ useWrapper: boolean;
523
+ showCancelBtn: boolean;
524
+ showOkBtn: boolean;
525
+ closable: boolean;
526
+ confirmLoading: boolean;
527
+ destroyOnClose: boolean;
528
+ maskClosable: boolean;
529
+ keyboard: boolean;
530
+ okType: string;
531
+ scrollTop: boolean;
532
+ draggable: boolean;
533
+ centered: boolean;
534
+ cancelText: string;
535
+ okText: string;
536
+ }>;
537
+ __isFragment?: never;
538
+ __isTeleport?: never;
539
+ __isSuspense?: never;
540
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
541
+ defaultFullscreen: {
542
+ type: BooleanConstructor;
543
+ };
544
+ canFullscreen: {
545
+ type: BooleanConstructor;
546
+ default: boolean;
547
+ };
548
+ wrapperFooterOffset: {
549
+ type: NumberConstructor;
550
+ default: number;
551
+ };
552
+ helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
553
+ useWrapper: {
554
+ type: BooleanConstructor;
555
+ default: boolean;
556
+ };
557
+ loading: {
558
+ type: BooleanConstructor;
559
+ };
560
+ loadingTip: {
561
+ type: StringConstructor;
562
+ };
563
+ showCancelBtn: {
564
+ type: BooleanConstructor;
565
+ default: boolean;
566
+ };
567
+ showOkBtn: {
568
+ type: BooleanConstructor;
569
+ default: boolean;
570
+ };
571
+ wrapperProps: ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../../Modal").ModalWrapperProps>))[];
572
+ afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
573
+ (): () => Promise<VueNode>;
574
+ new (): any;
575
+ readonly prototype: any;
576
+ }) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
577
+ (): () => Promise<VueNode>;
578
+ new (): any;
579
+ readonly prototype: any;
580
+ })[];
581
+ bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
582
+ closable: {
583
+ type: BooleanConstructor;
584
+ default: boolean;
585
+ };
586
+ closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
587
+ confirmLoading: {
588
+ type: BooleanConstructor;
589
+ };
590
+ destroyOnClose: {
591
+ type: BooleanConstructor;
592
+ };
593
+ footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
594
+ getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
595
+ (): () => any;
596
+ new (): any;
597
+ readonly prototype: any;
598
+ }) | ((new (...args: any[]) => () => any) | (() => () => any) | {
599
+ (): () => any;
600
+ new (): any;
601
+ readonly prototype: any;
602
+ })[];
603
+ mask: {
604
+ type: BooleanConstructor;
605
+ default: boolean;
606
+ };
607
+ maskClosable: {
608
+ type: BooleanConstructor;
609
+ default: boolean;
610
+ };
611
+ keyboard: {
612
+ type: BooleanConstructor;
613
+ default: boolean;
614
+ };
615
+ maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
616
+ okType: {
617
+ type: StringConstructor;
618
+ default: string;
619
+ };
620
+ okButtonProps: {
621
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
622
+ };
623
+ cancelButtonProps: {
624
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
625
+ };
626
+ title: {
627
+ type: StringConstructor;
628
+ };
629
+ visible: {
630
+ type: BooleanConstructor;
631
+ };
632
+ width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
633
+ wrapClassName: {
634
+ type: StringConstructor;
635
+ };
636
+ zIndex: {
637
+ type: NumberConstructor;
638
+ };
639
+ size: {
640
+ type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
641
+ default: string;
642
+ };
643
+ scrollTop: {
644
+ type: BooleanConstructor;
645
+ default: boolean;
646
+ };
647
+ height: {
648
+ type: NumberConstructor;
649
+ };
650
+ minHeight: {
651
+ type: NumberConstructor;
652
+ };
653
+ draggable: {
654
+ type: BooleanConstructor;
655
+ default: boolean;
656
+ };
657
+ centered: {
658
+ type: BooleanConstructor;
659
+ };
660
+ cancelText: {
661
+ type: StringConstructor;
662
+ default: string;
663
+ };
664
+ okText: {
665
+ type: StringConstructor;
666
+ default: string;
667
+ };
668
+ closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
669
+ (): () => Promise<boolean>;
670
+ new (): any;
671
+ readonly prototype: any;
672
+ }) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
673
+ (): () => Promise<boolean>;
674
+ new (): any;
675
+ readonly prototype: any;
676
+ })[];
677
+ }>> & {
678
+ "onUpdate:visible"?: (...args: any[]) => any;
679
+ onCancel?: (...args: any[]) => any;
680
+ "onHeight-change"?: (...args: any[]) => any;
681
+ onOk?: (...args: any[]) => any;
682
+ "onVisible-change"?: (...args: any[]) => any;
683
+ onRegister?: (...args: any[]) => any;
684
+ }, {
685
+ prefixCls: string;
686
+ handleCancel: (e: Event) => Promise<void>;
687
+ getBindValue: import("vue").ComputedRef<Recordable<any>>;
688
+ getProps: import("vue").ComputedRef<Recordable<any>>;
689
+ handleFullScreen: (e: Event) => void;
690
+ fullScreenRef: import("vue").Ref<boolean>;
691
+ getMergeProps: import("vue").ComputedRef<Recordable<any>>;
692
+ handleOk: (e: Event) => void;
693
+ visibleRef: import("vue").Ref<boolean>;
694
+ omitBindValue: Object;
695
+ omitSlotKeys: import("vue").ComputedRef<string[]>;
696
+ modalWrapperRef: import("vue").Ref<any>;
697
+ handleExtHeight: (height: number) => void;
698
+ handleHeightChange: (height: string) => void;
699
+ handleTitleDbClick: (e: Event) => void;
700
+ getWrapperHeight: import("vue").ComputedRef<any>;
701
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], "cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible", {
702
+ size: "small" | "default" | "large";
703
+ mask: boolean;
704
+ loading: boolean;
705
+ visible: boolean;
706
+ defaultFullscreen: boolean;
707
+ canFullscreen: boolean;
708
+ wrapperFooterOffset: number;
709
+ useWrapper: boolean;
710
+ showCancelBtn: boolean;
711
+ showOkBtn: boolean;
712
+ closable: boolean;
713
+ confirmLoading: boolean;
714
+ destroyOnClose: boolean;
715
+ maskClosable: boolean;
716
+ keyboard: boolean;
717
+ okType: string;
718
+ scrollTop: boolean;
719
+ draggable: boolean;
720
+ centered: boolean;
721
+ cancelText: string;
722
+ okText: string;
723
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
724
+ DeptTree: import("vue").DefineComponent<{
725
+ api: {
726
+ default: () => () => Promise<unknown>;
727
+ };
728
+ fieldNames: {
729
+ default: () => {
730
+ label: string;
731
+ value: string;
732
+ };
733
+ };
734
+ }, {
735
+ treeData: import("vue").Ref<any>;
736
+ searchToolbar: import("vue").Ref<boolean>;
737
+ emit: (event: "select", ...args: any[]) => void;
738
+ props: any;
739
+ fetch: () => Promise<void>;
740
+ handleSelect: (keys: string) => void;
741
+ reload: () => Promise<void>;
742
+ readonly BasicTree: import("vue").DefineComponent<{
743
+ value: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").KeyType[] | import("../../../../Tree").CheckKeys>, (() => import("../../../../Tree").KeyType[]) | (() => import("../../../../Tree").KeyType[]) | (() => {
744
+ checked: string[] | number[];
745
+ halfChecked: string[] | number[];
746
+ }), unknown, unknown, unknown>;
747
+ renderIcon: import("@shy-plugins/utils").BuildPropReturn<PropType<(params: Recordable<any>) => string>, ((params: Recordable<any>) => string) | (() => (params: Recordable<any>) => string), unknown, unknown, unknown>;
748
+ helpMessage: import("@shy-plugins/utils").BuildPropReturn<PropType<string | string[]>, string | (() => string), unknown, unknown, unknown>;
749
+ title: import("@shy-plugins/utils").BuildPropReturn<StringConstructor, string | (() => string), unknown, unknown, unknown>;
750
+ toolbar: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
751
+ search: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
752
+ searchValue: import("@shy-plugins/utils").BuildPropReturn<StringConstructor, string | (() => string), unknown, unknown, unknown>;
753
+ checkStrictly: BooleanConstructor;
754
+ clickRowToExpand: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
755
+ checkable: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
756
+ addable: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
757
+ defaultExpandLevel: import("@shy-plugins/utils").BuildPropReturn<PropType<string | number>, string | (() => string), unknown, unknown, unknown>;
758
+ defaultExpandAll: BooleanConstructor;
759
+ fieldNames: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").FieldNames>, unknown, unknown, unknown, unknown>;
760
+ treeData: import("@shy-plugins/utils").BuildPropReturn<PropType<import("ant-design-vue/es/tree").DataNode[]>, () => import("ant-design-vue/es/tree").DataNode[], unknown, unknown, unknown>;
761
+ actionList: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").TreeActionItem[]>, () => any[], unknown, unknown, unknown>;
762
+ expandedKeys: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").KeyType[]>, () => any[], unknown, unknown, unknown>;
763
+ selectedKeys: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").KeyType[]>, () => any[], unknown, unknown, unknown>;
764
+ checkedKeys: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").CheckKeys>, () => any[], unknown, unknown, unknown>;
765
+ beforeRightClick: import("@shy-plugins/utils").BuildPropReturn<PropType<(...arg: any) => import("../../../../Tree").ContextMenuOptions | import("../../../../Tree/src/types/tree").ContextMenuItem[]>, any, unknown, unknown, unknown>;
766
+ rightMenuList: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree/src/types/tree").ContextMenuItem[]>, () => import("../../../../Tree/src/types/tree").ContextMenuItem[], unknown, unknown, unknown>;
767
+ filterFn: import("@shy-plugins/utils").BuildPropReturn<PropType<(searchValue: any, node: import("../../../../Tree").TreeItem, fieldNames: import("../../../../Tree").FieldNames) => boolean>, any, unknown, unknown, unknown>;
768
+ highlight: import("@shy-plugins/utils").BuildPropReturn<PropType<String | Boolean>, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
769
+ expandOnSearch: BooleanConstructor;
770
+ checkOnSearch: BooleanConstructor;
771
+ selectedOnSearch: BooleanConstructor;
772
+ loading: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
773
+ treeWrapperClassName: StringConstructor;
774
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
775
+ value: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").KeyType[] | import("../../../../Tree").CheckKeys>, (() => import("../../../../Tree").KeyType[]) | (() => import("../../../../Tree").KeyType[]) | (() => {
776
+ checked: string[] | number[];
777
+ halfChecked: string[] | number[];
778
+ }), unknown, unknown, unknown>;
779
+ renderIcon: import("@shy-plugins/utils").BuildPropReturn<PropType<(params: Recordable<any>) => string>, ((params: Recordable<any>) => string) | (() => (params: Recordable<any>) => string), unknown, unknown, unknown>;
780
+ helpMessage: import("@shy-plugins/utils").BuildPropReturn<PropType<string | string[]>, string | (() => string), unknown, unknown, unknown>;
781
+ title: import("@shy-plugins/utils").BuildPropReturn<StringConstructor, string | (() => string), unknown, unknown, unknown>;
782
+ toolbar: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
783
+ search: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
784
+ searchValue: import("@shy-plugins/utils").BuildPropReturn<StringConstructor, string | (() => string), unknown, unknown, unknown>;
785
+ checkStrictly: BooleanConstructor;
786
+ clickRowToExpand: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
787
+ checkable: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
788
+ addable: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
789
+ defaultExpandLevel: import("@shy-plugins/utils").BuildPropReturn<PropType<string | number>, string | (() => string), unknown, unknown, unknown>;
790
+ defaultExpandAll: BooleanConstructor;
791
+ fieldNames: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").FieldNames>, unknown, unknown, unknown, unknown>;
792
+ treeData: import("@shy-plugins/utils").BuildPropReturn<PropType<import("ant-design-vue/es/tree").DataNode[]>, () => import("ant-design-vue/es/tree").DataNode[], unknown, unknown, unknown>;
793
+ actionList: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").TreeActionItem[]>, () => any[], unknown, unknown, unknown>;
794
+ expandedKeys: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").KeyType[]>, () => any[], unknown, unknown, unknown>;
795
+ selectedKeys: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").KeyType[]>, () => any[], unknown, unknown, unknown>;
796
+ checkedKeys: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree").CheckKeys>, () => any[], unknown, unknown, unknown>;
797
+ beforeRightClick: import("@shy-plugins/utils").BuildPropReturn<PropType<(...arg: any) => import("../../../../Tree").ContextMenuOptions | import("../../../../Tree/src/types/tree").ContextMenuItem[]>, any, unknown, unknown, unknown>;
798
+ rightMenuList: import("@shy-plugins/utils").BuildPropReturn<PropType<import("../../../../Tree/src/types/tree").ContextMenuItem[]>, () => import("../../../../Tree/src/types/tree").ContextMenuItem[], unknown, unknown, unknown>;
799
+ filterFn: import("@shy-plugins/utils").BuildPropReturn<PropType<(searchValue: any, node: import("../../../../Tree").TreeItem, fieldNames: import("../../../../Tree").FieldNames) => boolean>, any, unknown, unknown, unknown>;
800
+ highlight: import("@shy-plugins/utils").BuildPropReturn<PropType<String | Boolean>, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
801
+ expandOnSearch: BooleanConstructor;
802
+ checkOnSearch: BooleanConstructor;
803
+ selectedOnSearch: BooleanConstructor;
804
+ loading: import("@shy-plugins/utils").BuildPropReturn<BooleanConstructor, boolean | (() => false) | (() => true), unknown, unknown, unknown>;
805
+ treeWrapperClassName: StringConstructor;
806
+ }>> & {
807
+ [x: `on${Capitalize<string>}`]: (...args: any[]) => any;
808
+ }, {
809
+ value: import("@shy-plugins/utils").BuildPropType<PropType<import("../../../../Tree").KeyType[] | import("../../../../Tree").CheckKeys>, unknown, unknown>;
810
+ title: string;
811
+ loading: import("@shy-plugins/utils").BuildPropType<BooleanConstructor, unknown, unknown>;
812
+ fieldNames: undefined;
813
+ searchValue: string;
814
+ search: import("@shy-plugins/utils").BuildPropType<BooleanConstructor, unknown, unknown>;
815
+ helpMessage: import("@shy-plugins/utils").BuildPropType<PropType<string | string[]>, unknown, unknown>;
816
+ selectedKeys: import("../../../../Tree").KeyType[];
817
+ filterFn: (searchValue: any, node: import("../../../../Tree").TreeItem, fieldNames: import("../../../../Tree").FieldNames) => boolean;
818
+ treeData: import("ant-design-vue/es/tree").DataNode[];
819
+ renderIcon: (params: Recordable<any>) => string;
820
+ toolbar: import("@shy-plugins/utils").BuildPropType<BooleanConstructor, unknown, unknown>;
821
+ checkStrictly: boolean;
822
+ clickRowToExpand: import("@shy-plugins/utils").BuildPropType<BooleanConstructor, unknown, unknown>;
823
+ checkable: import("@shy-plugins/utils").BuildPropType<BooleanConstructor, unknown, unknown>;
824
+ addable: import("@shy-plugins/utils").BuildPropType<BooleanConstructor, unknown, unknown>;
825
+ defaultExpandLevel: import("@shy-plugins/utils").BuildPropType<PropType<string | number>, unknown, unknown>;
826
+ defaultExpandAll: boolean;
827
+ actionList: import("../../../../Tree").TreeActionItem[];
828
+ expandedKeys: import("../../../../Tree").KeyType[];
829
+ checkedKeys: import("../../../../Tree").CheckKeys;
830
+ beforeRightClick: (...arg: any) => import("../../../../Tree").ContextMenuOptions | import("../../../../Tree/src/types/tree").ContextMenuItem[];
831
+ rightMenuList: import("../../../../Tree/src/types/tree").ContextMenuItem[];
832
+ highlight: import("@shy-plugins/utils").BuildPropType<PropType<String | Boolean>, unknown, unknown>;
833
+ expandOnSearch: boolean;
834
+ checkOnSearch: boolean;
835
+ selectedOnSearch: boolean;
836
+ }, {}>;
837
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
838
+ api: {
839
+ default: () => () => Promise<unknown>;
840
+ };
841
+ fieldNames: {
842
+ default: () => {
843
+ label: string;
844
+ value: string;
845
+ };
846
+ };
847
+ }>> & {
848
+ onSelect?: (...args: any[]) => any;
849
+ }, {
850
+ fieldNames: {
851
+ label: string;
852
+ value: string;
853
+ };
854
+ api: () => Promise<unknown>;
855
+ }, {}>;
856
+ Table: import("vue").DefineComponent<{}, {
857
+ getTableProps: any;
858
+ registerTable: (instance: import("../../../../ShyTable").TableActionType, formInstance: import("../../../../ShyTable").TableActionType & {
859
+ getForm: () => import("../../..").FormActionType;
860
+ getAdvancedForm: () => import("../../..").FormActionType;
861
+ }, advancedInstance: import("../../../../ShyTable").TableActionType & {
862
+ getForm: () => import("../../..").FormActionType;
863
+ getAdvancedForm: () => import("../../..").FormActionType;
864
+ }) => void;
865
+ tableAction: import("../../../../ShyTable").TableActionType & {
866
+ getForm: () => import("../../..").FormActionType;
867
+ getAdvancedForm: () => import("../../..").FormActionType;
868
+ };
869
+ readonly ShyTable: import("vue").DefineComponent<{
870
+ inset: {
871
+ type: BooleanConstructor;
872
+ default: boolean;
873
+ };
874
+ striped: {
875
+ type: BooleanConstructor;
876
+ default: boolean;
877
+ };
878
+ indentSize: {
879
+ type: NumberConstructor;
880
+ default: number;
881
+ };
882
+ canColDrag: {
883
+ type: BooleanConstructor;
884
+ default: boolean;
885
+ };
886
+ useTableWrapper: {
887
+ type: BooleanConstructor;
888
+ default: boolean;
889
+ };
890
+ isCanResizeParent: {
891
+ type: BooleanConstructor;
892
+ default: boolean;
893
+ };
894
+ canResize: {
895
+ type: BooleanConstructor;
896
+ default: boolean;
897
+ };
898
+ resizeHeightOffset: {
899
+ type: NumberConstructor;
900
+ default: number;
901
+ };
902
+ maxHeight: {
903
+ type: NumberConstructor;
904
+ };
905
+ bordered: {
906
+ type: BooleanConstructor;
907
+ default: boolean;
908
+ };
909
+ rowClassName: {
910
+ type: ((new (...args: any[]) => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | (() => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | {
911
+ (): (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string;
912
+ new (): any;
913
+ readonly prototype: any;
914
+ }) | ((new (...args: any[]) => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | (() => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | {
915
+ (): (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string;
916
+ new (): any;
917
+ readonly prototype: any;
918
+ })[];
919
+ };
920
+ scroll: {
921
+ type: ((new (...args: any[]) => {
922
+ x: number | true;
923
+ y: number;
924
+ }) | (() => {
925
+ x: number | true;
926
+ y: number;
927
+ })) | ((new (...args: any[]) => {
928
+ x: number | true;
929
+ y: number;
930
+ }) | (() => {
931
+ x: number | true;
932
+ y: number;
933
+ }))[];
934
+ default: any;
935
+ };
936
+ size: {
937
+ type: ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => import("../../../../ShyTable").SizeType)) | ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => import("../../../../ShyTable").SizeType))[];
938
+ default: string;
939
+ };
940
+ isShowPagination: {
941
+ type: BooleanConstructor;
942
+ default: boolean;
943
+ };
944
+ isShowFooterSettings: {
945
+ type: BooleanConstructor;
946
+ default: boolean;
947
+ };
948
+ isShowFooter: {
949
+ type: BooleanConstructor;
950
+ default: boolean;
951
+ };
952
+ pagination: {
953
+ type: ((new (...args: any[]) => import("../../../../ShyTable").PaginationProps) | (() => import("../../../../ShyTable").PaginationProps)) | ((new (...args: any[]) => import("../../../../ShyTable").PaginationProps) | (() => import("../../../../ShyTable").PaginationProps))[];
954
+ default: () => void;
955
+ };
956
+ clickToRowSelect: {
957
+ type: BooleanConstructor;
958
+ default: boolean;
959
+ };
960
+ autoCreateKey: {
961
+ type: BooleanConstructor;
962
+ default: boolean;
963
+ };
964
+ rowSelection: {
965
+ type: ((new (...args: any[]) => import("../../../../ShyTable").TableRowSelection<any>) | (() => import("../../../../ShyTable").TableRowSelection<any>)) | ((new (...args: any[]) => import("../../../../ShyTable").TableRowSelection<any>) | (() => import("../../../../ShyTable").TableRowSelection<any>))[];
966
+ default: any;
967
+ };
968
+ clearSelectOnPageChange: {
969
+ type: BooleanConstructor;
970
+ };
971
+ rowKey: {
972
+ 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)))[];
973
+ default: string;
974
+ };
975
+ isShowHeader: {
976
+ type: BooleanConstructor;
977
+ default: boolean;
978
+ };
979
+ headerAlign: {
980
+ type: ((new (...args: any[]) => "left" | "right") | (() => "left" | "right")) | ((new (...args: any[]) => "left" | "right") | (() => "left" | "right"))[];
981
+ default: string;
982
+ };
983
+ isShowTitle: {
984
+ type: BooleanConstructor;
985
+ default: boolean;
986
+ };
987
+ title: {
988
+ type: ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
989
+ [key: string]: any;
990
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
991
+ [key: string]: any;
992
+ }> | ((data: Recordable<any>) => string))) | ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
993
+ [key: string]: any;
994
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
995
+ [key: string]: any;
996
+ }> | ((data: Recordable<any>) => string)))[];
997
+ };
998
+ titleHelpMessage: {
999
+ type: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
1000
+ };
1001
+ showTableSetting: {
1002
+ type: BooleanConstructor;
1003
+ default: boolean;
1004
+ };
1005
+ tableSetting: {
1006
+ type: ((new (...args: any[]) => import("../../../../ShyTable").TableSetting) | (() => import("../../../../ShyTable").TableSetting)) | ((new (...args: any[]) => import("../../../../ShyTable").TableSetting) | (() => import("../../../../ShyTable").TableSetting))[];
1007
+ default: () => {};
1008
+ };
1009
+ loading: {
1010
+ type: BooleanConstructor;
1011
+ };
1012
+ api: {
1013
+ type: ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
1014
+ (): (...arg: any[]) => Promise<any>;
1015
+ new (): any;
1016
+ readonly prototype: any;
1017
+ }) | ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
1018
+ (): (...arg: any[]) => Promise<any>;
1019
+ new (): any;
1020
+ readonly prototype: any;
1021
+ })[];
1022
+ default: any;
1023
+ };
1024
+ beforeFetch: {
1025
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1026
+ (): Fn<any, any>;
1027
+ new (): any;
1028
+ readonly prototype: any;
1029
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1030
+ (): Fn<any, any>;
1031
+ new (): any;
1032
+ readonly prototype: any;
1033
+ })[];
1034
+ default: any;
1035
+ };
1036
+ afterFetch: {
1037
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1038
+ (): Fn<any, any>;
1039
+ new (): any;
1040
+ readonly prototype: any;
1041
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1042
+ (): Fn<any, any>;
1043
+ new (): any;
1044
+ readonly prototype: any;
1045
+ })[];
1046
+ default: any;
1047
+ };
1048
+ fetchSetting: {
1049
+ type: ((new (...args: any[]) => import("../../../../ShyTable").FetchSetting) | (() => import("../../../../ShyTable").FetchSetting)) | ((new (...args: any[]) => import("../../../../ShyTable").FetchSetting) | (() => import("../../../../ShyTable").FetchSetting))[];
1050
+ default: () => {
1051
+ pageField: string;
1052
+ sizeField: string;
1053
+ listField: string;
1054
+ totalField: string;
1055
+ };
1056
+ };
1057
+ immediate: {
1058
+ type: BooleanConstructor;
1059
+ default: boolean;
1060
+ };
1061
+ emptyDataIsShowTable: {
1062
+ type: BooleanConstructor;
1063
+ default: boolean;
1064
+ };
1065
+ dataSource: {
1066
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
1067
+ default: any;
1068
+ };
1069
+ isTreeTable: {
1070
+ type: BooleanConstructor;
1071
+ default: boolean;
1072
+ };
1073
+ beforeEditSubmit: {
1074
+ type: ((new (...args: any[]) => (data: {
1075
+ record: Recordable<any>;
1076
+ index: number;
1077
+ key: string | number;
1078
+ value: any;
1079
+ }) => Promise<any>) | (() => (data: {
1080
+ record: Recordable<any>;
1081
+ index: number;
1082
+ key: string | number;
1083
+ value: any;
1084
+ }) => Promise<any>) | {
1085
+ (): (data: {
1086
+ record: Recordable<any>;
1087
+ index: number;
1088
+ key: string | number;
1089
+ value: any;
1090
+ }) => Promise<any>;
1091
+ new (): any;
1092
+ readonly prototype: any;
1093
+ }) | ((new (...args: any[]) => (data: {
1094
+ record: Recordable<any>;
1095
+ index: number;
1096
+ key: string | number;
1097
+ value: any;
1098
+ }) => Promise<any>) | (() => (data: {
1099
+ record: Recordable<any>;
1100
+ index: number;
1101
+ key: string | number;
1102
+ value: any;
1103
+ }) => Promise<any>) | {
1104
+ (): (data: {
1105
+ record: Recordable<any>;
1106
+ index: number;
1107
+ key: string | number;
1108
+ value: any;
1109
+ }) => Promise<any>;
1110
+ new (): any;
1111
+ readonly prototype: any;
1112
+ })[];
1113
+ };
1114
+ actionColWidth: {
1115
+ type: NumberConstructor;
1116
+ default: number;
1117
+ };
1118
+ showIndexColumn: {
1119
+ type: BooleanConstructor;
1120
+ default: boolean;
1121
+ };
1122
+ indexColumnProps: {
1123
+ type: ((new (...args: any[]) => {
1124
+ width?: number;
1125
+ children?: import("../../../../ShyTable").ShyColumn[];
1126
+ filters?: {
1127
+ text: string;
1128
+ value: string;
1129
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1130
+ }[];
1131
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1132
+ customTitle?: import("@shy-plugins/utils").VueNode;
1133
+ slots?: Recordable<any>;
1134
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1135
+ advancedComponent?: import("../../types").ComponentType;
1136
+ advancedComponentProps?: import("../../..").ComponentProps;
1137
+ globalShow?: boolean;
1138
+ advancedShow?: boolean;
1139
+ defaultHidden?: boolean;
1140
+ helpMessage?: string | string[];
1141
+ format?: import("../../../../ShyTable").CellFormat;
1142
+ tag?: boolean;
1143
+ options?: Recordable<any>[];
1144
+ edit?: boolean;
1145
+ editRow?: boolean;
1146
+ editable?: boolean;
1147
+ editComponent?: import("../../types").ComponentType;
1148
+ editComponentProps?: Recordable<any> | ((opt: {
1149
+ text: string | number | boolean | Recordable<any>;
1150
+ record: Recordable<any>;
1151
+ column: import("../../../../ShyTable").ShyColumn;
1152
+ index: number;
1153
+ typeAction: import("../../../../ShyTable").TableActionType;
1154
+ }) => Recordable<any>);
1155
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1156
+ editValueMap?: (value: any) => string;
1157
+ onEditRow?: () => void;
1158
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1159
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1160
+ editRender?: (opt: {
1161
+ text: string | number | boolean | Recordable<any>;
1162
+ record: Recordable<any>;
1163
+ column: import("../../../../ShyTable").ShyColumn;
1164
+ index: number;
1165
+ }) => import("vue").VNodeChild | JSX.Element;
1166
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1167
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn)) | ((new (...args: any[]) => {
1168
+ width?: number;
1169
+ children?: import("../../../../ShyTable").ShyColumn[];
1170
+ filters?: {
1171
+ text: string;
1172
+ value: string;
1173
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1174
+ }[];
1175
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1176
+ customTitle?: import("@shy-plugins/utils").VueNode;
1177
+ slots?: Recordable<any>;
1178
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1179
+ advancedComponent?: import("../../types").ComponentType;
1180
+ advancedComponentProps?: import("../../..").ComponentProps;
1181
+ globalShow?: boolean;
1182
+ advancedShow?: boolean;
1183
+ defaultHidden?: boolean;
1184
+ helpMessage?: string | string[];
1185
+ format?: import("../../../../ShyTable").CellFormat;
1186
+ tag?: boolean;
1187
+ options?: Recordable<any>[];
1188
+ edit?: boolean;
1189
+ editRow?: boolean;
1190
+ editable?: boolean;
1191
+ editComponent?: import("../../types").ComponentType;
1192
+ editComponentProps?: Recordable<any> | ((opt: {
1193
+ text: string | number | boolean | Recordable<any>;
1194
+ record: Recordable<any>;
1195
+ column: import("../../../../ShyTable").ShyColumn;
1196
+ index: number;
1197
+ typeAction: import("../../../../ShyTable").TableActionType;
1198
+ }) => Recordable<any>);
1199
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1200
+ editValueMap?: (value: any) => string;
1201
+ onEditRow?: () => void;
1202
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1203
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1204
+ editRender?: (opt: {
1205
+ text: string | number | boolean | Recordable<any>;
1206
+ record: Recordable<any>;
1207
+ column: import("../../../../ShyTable").ShyColumn;
1208
+ index: number;
1209
+ }) => import("vue").VNodeChild | JSX.Element;
1210
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1211
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn))[];
1212
+ default: any;
1213
+ };
1214
+ actionColumn: {
1215
+ type: ((new (...args: any[]) => {
1216
+ width?: number;
1217
+ children?: import("../../../../ShyTable").ShyColumn[];
1218
+ filters?: {
1219
+ text: string;
1220
+ value: string;
1221
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1222
+ }[];
1223
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1224
+ customTitle?: import("@shy-plugins/utils").VueNode;
1225
+ slots?: Recordable<any>;
1226
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1227
+ advancedComponent?: import("../../types").ComponentType;
1228
+ advancedComponentProps?: import("../../..").ComponentProps;
1229
+ globalShow?: boolean;
1230
+ advancedShow?: boolean;
1231
+ defaultHidden?: boolean;
1232
+ helpMessage?: string | string[];
1233
+ format?: import("../../../../ShyTable").CellFormat;
1234
+ tag?: boolean;
1235
+ options?: Recordable<any>[];
1236
+ edit?: boolean;
1237
+ editRow?: boolean;
1238
+ editable?: boolean;
1239
+ editComponent?: import("../../types").ComponentType;
1240
+ editComponentProps?: Recordable<any> | ((opt: {
1241
+ text: string | number | boolean | Recordable<any>;
1242
+ record: Recordable<any>;
1243
+ column: import("../../../../ShyTable").ShyColumn;
1244
+ index: number;
1245
+ typeAction: import("../../../../ShyTable").TableActionType;
1246
+ }) => Recordable<any>);
1247
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1248
+ editValueMap?: (value: any) => string;
1249
+ onEditRow?: () => void;
1250
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1251
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1252
+ editRender?: (opt: {
1253
+ text: string | number | boolean | Recordable<any>;
1254
+ record: Recordable<any>;
1255
+ column: import("../../../../ShyTable").ShyColumn;
1256
+ index: number;
1257
+ }) => import("vue").VNodeChild | JSX.Element;
1258
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1259
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn)) | ((new (...args: any[]) => {
1260
+ width?: number;
1261
+ children?: import("../../../../ShyTable").ShyColumn[];
1262
+ filters?: {
1263
+ text: string;
1264
+ value: string;
1265
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1266
+ }[];
1267
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1268
+ customTitle?: import("@shy-plugins/utils").VueNode;
1269
+ slots?: Recordable<any>;
1270
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1271
+ advancedComponent?: import("../../types").ComponentType;
1272
+ advancedComponentProps?: import("../../..").ComponentProps;
1273
+ globalShow?: boolean;
1274
+ advancedShow?: boolean;
1275
+ defaultHidden?: boolean;
1276
+ helpMessage?: string | string[];
1277
+ format?: import("../../../../ShyTable").CellFormat;
1278
+ tag?: boolean;
1279
+ options?: Recordable<any>[];
1280
+ edit?: boolean;
1281
+ editRow?: boolean;
1282
+ editable?: boolean;
1283
+ editComponent?: import("../../types").ComponentType;
1284
+ editComponentProps?: Recordable<any> | ((opt: {
1285
+ text: string | number | boolean | Recordable<any>;
1286
+ record: Recordable<any>;
1287
+ column: import("../../../../ShyTable").ShyColumn;
1288
+ index: number;
1289
+ typeAction: import("../../../../ShyTable").TableActionType;
1290
+ }) => Recordable<any>);
1291
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1292
+ editValueMap?: (value: any) => string;
1293
+ onEditRow?: () => void;
1294
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1295
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1296
+ editRender?: (opt: {
1297
+ text: string | number | boolean | Recordable<any>;
1298
+ record: Recordable<any>;
1299
+ column: import("../../../../ShyTable").ShyColumn;
1300
+ index: number;
1301
+ }) => import("vue").VNodeChild | JSX.Element;
1302
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1303
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn))[];
1304
+ default: any;
1305
+ };
1306
+ ellipsis: {
1307
+ type: BooleanConstructor;
1308
+ default: boolean;
1309
+ };
1310
+ resizable: {
1311
+ type: BooleanConstructor;
1312
+ default: boolean;
1313
+ };
1314
+ columns: {
1315
+ type: ((new (...args: any[]) => import("../../../../ShyTable").ShyColumn[]) | (() => import("../../../../ShyTable").ShyColumn[])) | ((new (...args: any[]) => import("../../../../ShyTable").ShyColumn[]) | (() => import("../../../../ShyTable").ShyColumn[]))[];
1316
+ default: () => any[];
1317
+ };
1318
+ showSummary: {
1319
+ type: BooleanConstructor;
1320
+ default: boolean;
1321
+ };
1322
+ summaryFunc: {
1323
+ type: ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
1324
+ (): (...arg: any[]) => any[];
1325
+ new (): any;
1326
+ readonly prototype: any;
1327
+ }) | ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
1328
+ (): (...arg: any[]) => any[];
1329
+ new (): any;
1330
+ readonly prototype: any;
1331
+ })[];
1332
+ default: any;
1333
+ };
1334
+ summaryData: {
1335
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
1336
+ default: any;
1337
+ };
1338
+ summaryTotalFields: {
1339
+ type: ((new (...args: any[]) => string[]) | (() => string[])) | ((new (...args: any[]) => string[]) | (() => string[]))[];
1340
+ default: any;
1341
+ };
1342
+ showSummaryTotal: {
1343
+ type: BooleanConstructor;
1344
+ default: boolean;
1345
+ };
1346
+ summaryPrecision: {
1347
+ type: NumberConstructor;
1348
+ default: number;
1349
+ };
1350
+ useSearchForm: {
1351
+ type: BooleanConstructor;
1352
+ };
1353
+ isSortFetch: {
1354
+ type: BooleanConstructor;
1355
+ default: boolean;
1356
+ };
1357
+ sortFn: {
1358
+ type: ((new (...args: any[]) => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | (() => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | {
1359
+ (): (sortInfo: import("../../../../ShyTable").SorterResult) => any;
1360
+ new (): any;
1361
+ readonly prototype: any;
1362
+ }) | ((new (...args: any[]) => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | (() => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | {
1363
+ (): (sortInfo: import("../../../../ShyTable").SorterResult) => any;
1364
+ new (): any;
1365
+ readonly prototype: any;
1366
+ })[];
1367
+ default: (sortInfo: import("../../../../ShyTable").SorterResult) => {
1368
+ sort: string;
1369
+ order: string;
1370
+ } | {
1371
+ sort?: undefined;
1372
+ order?: undefined;
1373
+ };
1374
+ };
1375
+ filterFn: {
1376
+ type: ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
1377
+ (): (data: Partial<Recordable<string[]>>) => any;
1378
+ new (): any;
1379
+ readonly prototype: any;
1380
+ }) | ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
1381
+ (): (data: Partial<Recordable<string[]>>) => any;
1382
+ new (): any;
1383
+ readonly prototype: any;
1384
+ })[];
1385
+ default: (data: Partial<Recordable<string[]>>) => Partial<Recordable<string[]>>;
1386
+ };
1387
+ searchInfo: {
1388
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
1389
+ default: any;
1390
+ };
1391
+ defSort: {
1392
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
1393
+ default: any;
1394
+ };
1395
+ handleSearchInfoFn: {
1396
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1397
+ (): Fn<any, any>;
1398
+ new (): any;
1399
+ readonly prototype: any;
1400
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1401
+ (): Fn<any, any>;
1402
+ new (): any;
1403
+ readonly prototype: any;
1404
+ })[];
1405
+ default: any;
1406
+ };
1407
+ formLayout: {
1408
+ type: ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline")) | ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline"))[];
1409
+ default: string;
1410
+ };
1411
+ formLabelInInput: {
1412
+ type: BooleanConstructor;
1413
+ default: boolean;
1414
+ };
1415
+ formConfig: {
1416
+ type: ((new (...args: any[]) => Partial<import("../../..").FormProps>) | (() => Partial<import("../../..").FormProps>)) | ((new (...args: any[]) => Partial<import("../../..").FormProps>) | (() => Partial<import("../../..").FormProps>))[];
1417
+ default: any;
1418
+ };
1419
+ useInfo: {
1420
+ type: BooleanConstructor;
1421
+ default: boolean;
1422
+ };
1423
+ infoConfig: {
1424
+ type: ((new (...args: any[]) => import("../../../../ShyTable").InfoConfig) | (() => import("../../../../ShyTable").InfoConfig)) | ((new (...args: any[]) => import("../../../../ShyTable").InfoConfig) | (() => import("../../../../ShyTable").InfoConfig))[];
1425
+ default: () => {};
1426
+ };
1427
+ }, () => 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<{
1428
+ inset: {
1429
+ type: BooleanConstructor;
1430
+ default: boolean;
1431
+ };
1432
+ striped: {
1433
+ type: BooleanConstructor;
1434
+ default: boolean;
1435
+ };
1436
+ indentSize: {
1437
+ type: NumberConstructor;
1438
+ default: number;
1439
+ };
1440
+ canColDrag: {
1441
+ type: BooleanConstructor;
1442
+ default: boolean;
1443
+ };
1444
+ useTableWrapper: {
1445
+ type: BooleanConstructor;
1446
+ default: boolean;
1447
+ };
1448
+ isCanResizeParent: {
1449
+ type: BooleanConstructor;
1450
+ default: boolean;
1451
+ };
1452
+ canResize: {
1453
+ type: BooleanConstructor;
1454
+ default: boolean;
1455
+ };
1456
+ resizeHeightOffset: {
1457
+ type: NumberConstructor;
1458
+ default: number;
1459
+ };
1460
+ maxHeight: {
1461
+ type: NumberConstructor;
1462
+ };
1463
+ bordered: {
1464
+ type: BooleanConstructor;
1465
+ default: boolean;
1466
+ };
1467
+ rowClassName: {
1468
+ type: ((new (...args: any[]) => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | (() => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | {
1469
+ (): (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string;
1470
+ new (): any;
1471
+ readonly prototype: any;
1472
+ }) | ((new (...args: any[]) => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | (() => (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string) | {
1473
+ (): (record: import("../../../../ShyTable").TableCustomRecord<any>, index: number) => string;
1474
+ new (): any;
1475
+ readonly prototype: any;
1476
+ })[];
1477
+ };
1478
+ scroll: {
1479
+ type: ((new (...args: any[]) => {
1480
+ x: number | true;
1481
+ y: number;
1482
+ }) | (() => {
1483
+ x: number | true;
1484
+ y: number;
1485
+ })) | ((new (...args: any[]) => {
1486
+ x: number | true;
1487
+ y: number;
1488
+ }) | (() => {
1489
+ x: number | true;
1490
+ y: number;
1491
+ }))[];
1492
+ default: any;
1493
+ };
1494
+ size: {
1495
+ type: ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => import("../../../../ShyTable").SizeType)) | ((new (...args: any[]) => "small" | "default" | "large" | "middle") | (() => import("../../../../ShyTable").SizeType))[];
1496
+ default: string;
1497
+ };
1498
+ isShowPagination: {
1499
+ type: BooleanConstructor;
1500
+ default: boolean;
1501
+ };
1502
+ isShowFooterSettings: {
1503
+ type: BooleanConstructor;
1504
+ default: boolean;
1505
+ };
1506
+ isShowFooter: {
1507
+ type: BooleanConstructor;
1508
+ default: boolean;
1509
+ };
1510
+ pagination: {
1511
+ type: ((new (...args: any[]) => import("../../../../ShyTable").PaginationProps) | (() => import("../../../../ShyTable").PaginationProps)) | ((new (...args: any[]) => import("../../../../ShyTable").PaginationProps) | (() => import("../../../../ShyTable").PaginationProps))[];
1512
+ default: () => void;
1513
+ };
1514
+ clickToRowSelect: {
1515
+ type: BooleanConstructor;
1516
+ default: boolean;
1517
+ };
1518
+ autoCreateKey: {
1519
+ type: BooleanConstructor;
1520
+ default: boolean;
1521
+ };
1522
+ rowSelection: {
1523
+ type: ((new (...args: any[]) => import("../../../../ShyTable").TableRowSelection<any>) | (() => import("../../../../ShyTable").TableRowSelection<any>)) | ((new (...args: any[]) => import("../../../../ShyTable").TableRowSelection<any>) | (() => import("../../../../ShyTable").TableRowSelection<any>))[];
1524
+ default: any;
1525
+ };
1526
+ clearSelectOnPageChange: {
1527
+ type: BooleanConstructor;
1528
+ };
1529
+ rowKey: {
1530
+ 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)))[];
1531
+ default: string;
1532
+ };
1533
+ isShowHeader: {
1534
+ type: BooleanConstructor;
1535
+ default: boolean;
1536
+ };
1537
+ headerAlign: {
1538
+ type: ((new (...args: any[]) => "left" | "right") | (() => "left" | "right")) | ((new (...args: any[]) => "left" | "right") | (() => "left" | "right"))[];
1539
+ default: string;
1540
+ };
1541
+ isShowTitle: {
1542
+ type: BooleanConstructor;
1543
+ default: boolean;
1544
+ };
1545
+ title: {
1546
+ type: ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1547
+ [key: string]: any;
1548
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1549
+ [key: string]: any;
1550
+ }> | ((data: Recordable<any>) => string))) | ((new (...args: any[]) => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1551
+ [key: string]: any;
1552
+ }> | ((data: Recordable<any>) => string)) | (() => Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1553
+ [key: string]: any;
1554
+ }> | ((data: Recordable<any>) => string)))[];
1555
+ };
1556
+ titleHelpMessage: {
1557
+ type: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
1558
+ };
1559
+ showTableSetting: {
1560
+ type: BooleanConstructor;
1561
+ default: boolean;
1562
+ };
1563
+ tableSetting: {
1564
+ type: ((new (...args: any[]) => import("../../../../ShyTable").TableSetting) | (() => import("../../../../ShyTable").TableSetting)) | ((new (...args: any[]) => import("../../../../ShyTable").TableSetting) | (() => import("../../../../ShyTable").TableSetting))[];
1565
+ default: () => {};
1566
+ };
1567
+ loading: {
1568
+ type: BooleanConstructor;
1569
+ };
1570
+ api: {
1571
+ type: ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
1572
+ (): (...arg: any[]) => Promise<any>;
1573
+ new (): any;
1574
+ readonly prototype: any;
1575
+ }) | ((new (...args: any[]) => (...arg: any[]) => Promise<any>) | (() => (...arg: any[]) => Promise<any>) | {
1576
+ (): (...arg: any[]) => Promise<any>;
1577
+ new (): any;
1578
+ readonly prototype: any;
1579
+ })[];
1580
+ default: any;
1581
+ };
1582
+ beforeFetch: {
1583
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1584
+ (): Fn<any, any>;
1585
+ new (): any;
1586
+ readonly prototype: any;
1587
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1588
+ (): Fn<any, any>;
1589
+ new (): any;
1590
+ readonly prototype: any;
1591
+ })[];
1592
+ default: any;
1593
+ };
1594
+ afterFetch: {
1595
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1596
+ (): Fn<any, any>;
1597
+ new (): any;
1598
+ readonly prototype: any;
1599
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1600
+ (): Fn<any, any>;
1601
+ new (): any;
1602
+ readonly prototype: any;
1603
+ })[];
1604
+ default: any;
1605
+ };
1606
+ fetchSetting: {
1607
+ type: ((new (...args: any[]) => import("../../../../ShyTable").FetchSetting) | (() => import("../../../../ShyTable").FetchSetting)) | ((new (...args: any[]) => import("../../../../ShyTable").FetchSetting) | (() => import("../../../../ShyTable").FetchSetting))[];
1608
+ default: () => {
1609
+ pageField: string;
1610
+ sizeField: string;
1611
+ listField: string;
1612
+ totalField: string;
1613
+ };
1614
+ };
1615
+ immediate: {
1616
+ type: BooleanConstructor;
1617
+ default: boolean;
1618
+ };
1619
+ emptyDataIsShowTable: {
1620
+ type: BooleanConstructor;
1621
+ default: boolean;
1622
+ };
1623
+ dataSource: {
1624
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
1625
+ default: any;
1626
+ };
1627
+ isTreeTable: {
1628
+ type: BooleanConstructor;
1629
+ default: boolean;
1630
+ };
1631
+ beforeEditSubmit: {
1632
+ type: ((new (...args: any[]) => (data: {
1633
+ record: Recordable<any>;
1634
+ index: number;
1635
+ key: string | number;
1636
+ value: any;
1637
+ }) => Promise<any>) | (() => (data: {
1638
+ record: Recordable<any>;
1639
+ index: number;
1640
+ key: string | number;
1641
+ value: any;
1642
+ }) => Promise<any>) | {
1643
+ (): (data: {
1644
+ record: Recordable<any>;
1645
+ index: number;
1646
+ key: string | number;
1647
+ value: any;
1648
+ }) => Promise<any>;
1649
+ new (): any;
1650
+ readonly prototype: any;
1651
+ }) | ((new (...args: any[]) => (data: {
1652
+ record: Recordable<any>;
1653
+ index: number;
1654
+ key: string | number;
1655
+ value: any;
1656
+ }) => Promise<any>) | (() => (data: {
1657
+ record: Recordable<any>;
1658
+ index: number;
1659
+ key: string | number;
1660
+ value: any;
1661
+ }) => Promise<any>) | {
1662
+ (): (data: {
1663
+ record: Recordable<any>;
1664
+ index: number;
1665
+ key: string | number;
1666
+ value: any;
1667
+ }) => Promise<any>;
1668
+ new (): any;
1669
+ readonly prototype: any;
1670
+ })[];
1671
+ };
1672
+ actionColWidth: {
1673
+ type: NumberConstructor;
1674
+ default: number;
1675
+ };
1676
+ showIndexColumn: {
1677
+ type: BooleanConstructor;
1678
+ default: boolean;
1679
+ };
1680
+ indexColumnProps: {
1681
+ type: ((new (...args: any[]) => {
1682
+ width?: number;
1683
+ children?: import("../../../../ShyTable").ShyColumn[];
1684
+ filters?: {
1685
+ text: string;
1686
+ value: string;
1687
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1688
+ }[];
1689
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1690
+ customTitle?: import("@shy-plugins/utils").VueNode;
1691
+ slots?: Recordable<any>;
1692
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1693
+ advancedComponent?: import("../../types").ComponentType;
1694
+ advancedComponentProps?: import("../../..").ComponentProps;
1695
+ globalShow?: boolean;
1696
+ advancedShow?: boolean;
1697
+ defaultHidden?: boolean;
1698
+ helpMessage?: string | string[];
1699
+ format?: import("../../../../ShyTable").CellFormat;
1700
+ tag?: boolean;
1701
+ options?: Recordable<any>[];
1702
+ edit?: boolean;
1703
+ editRow?: boolean;
1704
+ editable?: boolean;
1705
+ editComponent?: import("../../types").ComponentType;
1706
+ editComponentProps?: Recordable<any> | ((opt: {
1707
+ text: string | number | boolean | Recordable<any>;
1708
+ record: Recordable<any>;
1709
+ column: import("../../../../ShyTable").ShyColumn;
1710
+ index: number;
1711
+ typeAction: import("../../../../ShyTable").TableActionType;
1712
+ }) => Recordable<any>);
1713
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1714
+ editValueMap?: (value: any) => string;
1715
+ onEditRow?: () => void;
1716
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1717
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1718
+ editRender?: (opt: {
1719
+ text: string | number | boolean | Recordable<any>;
1720
+ record: Recordable<any>;
1721
+ column: import("../../../../ShyTable").ShyColumn;
1722
+ index: number;
1723
+ }) => import("vue").VNodeChild | JSX.Element;
1724
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1725
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn)) | ((new (...args: any[]) => {
1726
+ width?: number;
1727
+ children?: import("../../../../ShyTable").ShyColumn[];
1728
+ filters?: {
1729
+ text: string;
1730
+ value: string;
1731
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1732
+ }[];
1733
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1734
+ customTitle?: import("@shy-plugins/utils").VueNode;
1735
+ slots?: Recordable<any>;
1736
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1737
+ advancedComponent?: import("../../types").ComponentType;
1738
+ advancedComponentProps?: import("../../..").ComponentProps;
1739
+ globalShow?: boolean;
1740
+ advancedShow?: boolean;
1741
+ defaultHidden?: boolean;
1742
+ helpMessage?: string | string[];
1743
+ format?: import("../../../../ShyTable").CellFormat;
1744
+ tag?: boolean;
1745
+ options?: Recordable<any>[];
1746
+ edit?: boolean;
1747
+ editRow?: boolean;
1748
+ editable?: boolean;
1749
+ editComponent?: import("../../types").ComponentType;
1750
+ editComponentProps?: Recordable<any> | ((opt: {
1751
+ text: string | number | boolean | Recordable<any>;
1752
+ record: Recordable<any>;
1753
+ column: import("../../../../ShyTable").ShyColumn;
1754
+ index: number;
1755
+ typeAction: import("../../../../ShyTable").TableActionType;
1756
+ }) => Recordable<any>);
1757
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1758
+ editValueMap?: (value: any) => string;
1759
+ onEditRow?: () => void;
1760
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1761
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1762
+ editRender?: (opt: {
1763
+ text: string | number | boolean | Recordable<any>;
1764
+ record: Recordable<any>;
1765
+ column: import("../../../../ShyTable").ShyColumn;
1766
+ index: number;
1767
+ }) => import("vue").VNodeChild | JSX.Element;
1768
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1769
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn))[];
1770
+ default: any;
1771
+ };
1772
+ actionColumn: {
1773
+ type: ((new (...args: any[]) => {
1774
+ width?: number;
1775
+ children?: import("../../../../ShyTable").ShyColumn[];
1776
+ filters?: {
1777
+ text: string;
1778
+ value: string;
1779
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1780
+ }[];
1781
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1782
+ customTitle?: import("@shy-plugins/utils").VueNode;
1783
+ slots?: Recordable<any>;
1784
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1785
+ advancedComponent?: import("../../types").ComponentType;
1786
+ advancedComponentProps?: import("../../..").ComponentProps;
1787
+ globalShow?: boolean;
1788
+ advancedShow?: boolean;
1789
+ defaultHidden?: boolean;
1790
+ helpMessage?: string | string[];
1791
+ format?: import("../../../../ShyTable").CellFormat;
1792
+ tag?: boolean;
1793
+ options?: Recordable<any>[];
1794
+ edit?: boolean;
1795
+ editRow?: boolean;
1796
+ editable?: boolean;
1797
+ editComponent?: import("../../types").ComponentType;
1798
+ editComponentProps?: Recordable<any> | ((opt: {
1799
+ text: string | number | boolean | Recordable<any>;
1800
+ record: Recordable<any>;
1801
+ column: import("../../../../ShyTable").ShyColumn;
1802
+ index: number;
1803
+ typeAction: import("../../../../ShyTable").TableActionType;
1804
+ }) => Recordable<any>);
1805
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1806
+ editValueMap?: (value: any) => string;
1807
+ onEditRow?: () => void;
1808
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1809
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1810
+ editRender?: (opt: {
1811
+ text: string | number | boolean | Recordable<any>;
1812
+ record: Recordable<any>;
1813
+ column: import("../../../../ShyTable").ShyColumn;
1814
+ index: number;
1815
+ }) => import("vue").VNodeChild | JSX.Element;
1816
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1817
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn)) | ((new (...args: any[]) => {
1818
+ width?: number;
1819
+ children?: import("../../../../ShyTable").ShyColumn[];
1820
+ filters?: {
1821
+ text: string;
1822
+ value: string;
1823
+ children?: unknown[] | (((props: Record<string, unknown>) => unknown[]) & (() => unknown[]) & (() => unknown[]));
1824
+ }[];
1825
+ flag?: "INDEX" | "ACTION" | "DEFAULT" | "CHECKBOX" | "RADIO";
1826
+ customTitle?: import("@shy-plugins/utils").VueNode;
1827
+ slots?: Recordable<any>;
1828
+ advancedType?: import("../../../../ShyAdvancedSearch").AdvancedSearchType;
1829
+ advancedComponent?: import("../../types").ComponentType;
1830
+ advancedComponentProps?: import("../../..").ComponentProps;
1831
+ globalShow?: boolean;
1832
+ advancedShow?: boolean;
1833
+ defaultHidden?: boolean;
1834
+ helpMessage?: string | string[];
1835
+ format?: import("../../../../ShyTable").CellFormat;
1836
+ tag?: boolean;
1837
+ options?: Recordable<any>[];
1838
+ edit?: boolean;
1839
+ editRow?: boolean;
1840
+ editable?: boolean;
1841
+ editComponent?: import("../../types").ComponentType;
1842
+ editComponentProps?: Recordable<any> | ((opt: {
1843
+ text: string | number | boolean | Recordable<any>;
1844
+ record: Recordable<any>;
1845
+ column: import("../../../../ShyTable").ShyColumn;
1846
+ index: number;
1847
+ typeAction: import("../../../../ShyTable").TableActionType;
1848
+ }) => Recordable<any>);
1849
+ editRule?: boolean | ((text: string, record: Recordable<any>) => Promise<string>);
1850
+ editValueMap?: (value: any) => string;
1851
+ onEditRow?: () => void;
1852
+ auth?: string | string[] | import("../../../../ShyTable").RoleEnum[];
1853
+ ifShow?: boolean | ((column: import("../../../../ShyTable").ShyColumn) => boolean);
1854
+ editRender?: (opt: {
1855
+ text: string | number | boolean | Recordable<any>;
1856
+ record: Recordable<any>;
1857
+ column: import("../../../../ShyTable").ShyColumn;
1858
+ index: number;
1859
+ }) => import("vue").VNodeChild | JSX.Element;
1860
+ editDynamicDisabled?: boolean | ((record: Recordable<any>) => boolean);
1861
+ } & import("ant-design-vue/lib/table").ColumnProps<Recordable<any>>) | (() => import("../../../../ShyTable").ShyColumn))[];
1862
+ default: any;
1863
+ };
1864
+ ellipsis: {
1865
+ type: BooleanConstructor;
1866
+ default: boolean;
1867
+ };
1868
+ resizable: {
1869
+ type: BooleanConstructor;
1870
+ default: boolean;
1871
+ };
1872
+ columns: {
1873
+ type: ((new (...args: any[]) => import("../../../../ShyTable").ShyColumn[]) | (() => import("../../../../ShyTable").ShyColumn[])) | ((new (...args: any[]) => import("../../../../ShyTable").ShyColumn[]) | (() => import("../../../../ShyTable").ShyColumn[]))[];
1874
+ default: () => any[];
1875
+ };
1876
+ showSummary: {
1877
+ type: BooleanConstructor;
1878
+ default: boolean;
1879
+ };
1880
+ summaryFunc: {
1881
+ type: ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
1882
+ (): (...arg: any[]) => any[];
1883
+ new (): any;
1884
+ readonly prototype: any;
1885
+ }) | ((new (...args: any[]) => (...arg: any[]) => any[]) | (() => (...arg: any[]) => any[]) | {
1886
+ (): (...arg: any[]) => any[];
1887
+ new (): any;
1888
+ readonly prototype: any;
1889
+ })[];
1890
+ default: any;
1891
+ };
1892
+ summaryData: {
1893
+ type: ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[])) | ((new (...args: any[]) => Recordable<any>[]) | (() => Recordable<any>[]))[];
1894
+ default: any;
1895
+ };
1896
+ summaryTotalFields: {
1897
+ type: ((new (...args: any[]) => string[]) | (() => string[])) | ((new (...args: any[]) => string[]) | (() => string[]))[];
1898
+ default: any;
1899
+ };
1900
+ showSummaryTotal: {
1901
+ type: BooleanConstructor;
1902
+ default: boolean;
1903
+ };
1904
+ summaryPrecision: {
1905
+ type: NumberConstructor;
1906
+ default: number;
1907
+ };
1908
+ useSearchForm: {
1909
+ type: BooleanConstructor;
1910
+ };
1911
+ isSortFetch: {
1912
+ type: BooleanConstructor;
1913
+ default: boolean;
1914
+ };
1915
+ sortFn: {
1916
+ type: ((new (...args: any[]) => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | (() => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | {
1917
+ (): (sortInfo: import("../../../../ShyTable").SorterResult) => any;
1918
+ new (): any;
1919
+ readonly prototype: any;
1920
+ }) | ((new (...args: any[]) => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | (() => (sortInfo: import("../../../../ShyTable").SorterResult) => any) | {
1921
+ (): (sortInfo: import("../../../../ShyTable").SorterResult) => any;
1922
+ new (): any;
1923
+ readonly prototype: any;
1924
+ })[];
1925
+ default: (sortInfo: import("../../../../ShyTable").SorterResult) => {
1926
+ sort: string;
1927
+ order: string;
1928
+ } | {
1929
+ sort?: undefined;
1930
+ order?: undefined;
1931
+ };
1932
+ };
1933
+ filterFn: {
1934
+ type: ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
1935
+ (): (data: Partial<Recordable<string[]>>) => any;
1936
+ new (): any;
1937
+ readonly prototype: any;
1938
+ }) | ((new (...args: any[]) => (data: Partial<Recordable<string[]>>) => any) | (() => (data: Partial<Recordable<string[]>>) => any) | {
1939
+ (): (data: Partial<Recordable<string[]>>) => any;
1940
+ new (): any;
1941
+ readonly prototype: any;
1942
+ })[];
1943
+ default: (data: Partial<Recordable<string[]>>) => Partial<Recordable<string[]>>;
1944
+ };
1945
+ searchInfo: {
1946
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
1947
+ default: any;
1948
+ };
1949
+ defSort: {
1950
+ type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
1951
+ default: any;
1952
+ };
1953
+ handleSearchInfoFn: {
1954
+ type: ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1955
+ (): Fn<any, any>;
1956
+ new (): any;
1957
+ readonly prototype: any;
1958
+ }) | ((new (...args: any[]) => Fn<any, any>) | (() => Fn<any, any>) | {
1959
+ (): Fn<any, any>;
1960
+ new (): any;
1961
+ readonly prototype: any;
1962
+ })[];
1963
+ default: any;
1964
+ };
1965
+ formLayout: {
1966
+ type: ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline")) | ((new (...args: any[]) => "vertical" | "horizontal" | "inline") | (() => "vertical" | "horizontal" | "inline"))[];
1967
+ default: string;
1968
+ };
1969
+ formLabelInInput: {
1970
+ type: BooleanConstructor;
1971
+ default: boolean;
1972
+ };
1973
+ formConfig: {
1974
+ type: ((new (...args: any[]) => Partial<import("../../..").FormProps>) | (() => Partial<import("../../..").FormProps>)) | ((new (...args: any[]) => Partial<import("../../..").FormProps>) | (() => Partial<import("../../..").FormProps>))[];
1975
+ default: any;
1976
+ };
1977
+ useInfo: {
1978
+ type: BooleanConstructor;
1979
+ default: boolean;
1980
+ };
1981
+ infoConfig: {
1982
+ type: ((new (...args: any[]) => import("../../../../ShyTable").InfoConfig) | (() => import("../../../../ShyTable").InfoConfig)) | ((new (...args: any[]) => import("../../../../ShyTable").InfoConfig) | (() => import("../../../../ShyTable").InfoConfig))[];
1983
+ default: () => {};
1984
+ };
1985
+ }>> & {
1986
+ onChange?: (...args: any[]) => any;
1987
+ onRegister?: (...args: any[]) => any;
1988
+ "onFetch-success"?: (...args: any[]) => any;
1989
+ "onFetch-error"?: (...args: any[]) => any;
1990
+ "onSelection-change"?: (...args: any[]) => any;
1991
+ "onRow-click"?: (...args: any[]) => any;
1992
+ "onRow-dbClick"?: (...args: any[]) => any;
1993
+ "onRow-contextmenu"?: (...args: any[]) => any;
1994
+ "onRow-mouseenter"?: (...args: any[]) => any;
1995
+ "onRow-mouseleave"?: (...args: any[]) => any;
1996
+ "onEdit-end"?: (...args: any[]) => any;
1997
+ "onEdit-cancel"?: (...args: any[]) => any;
1998
+ "onEdit-row-end"?: (...args: any[]) => any;
1999
+ "onEdit-change"?: (...args: any[]) => any;
2000
+ "onExpanded-rows-change"?: (...args: any[]) => any;
2001
+ "onColumns-change"?: (...args: any[]) => any;
2002
+ "onColumns-reset"?: (...args: any[]) => any;
2003
+ }, {
2004
+ size: import("../../../../ShyTable").SizeType;
2005
+ scroll: {
2006
+ x: number | true;
2007
+ y: number;
2008
+ };
2009
+ bordered: boolean;
2010
+ loading: boolean;
2011
+ api: (...arg: any[]) => Promise<any>;
2012
+ immediate: boolean;
2013
+ inset: boolean;
2014
+ isShowHeader: boolean;
2015
+ isShowFooter: boolean;
2016
+ summaryPrecision: number;
2017
+ summaryTotalFields: string[];
2018
+ columns: import("../../../../ShyTable").ShyColumn[];
2019
+ formLabelInInput: boolean;
2020
+ resizable: boolean;
2021
+ ellipsis: boolean;
2022
+ striped: boolean;
2023
+ indentSize: number;
2024
+ canColDrag: boolean;
2025
+ useTableWrapper: boolean;
2026
+ isCanResizeParent: boolean;
2027
+ canResize: boolean;
2028
+ resizeHeightOffset: number;
2029
+ isShowPagination: boolean;
2030
+ isShowFooterSettings: boolean;
2031
+ pagination: void;
2032
+ clickToRowSelect: boolean;
2033
+ autoCreateKey: boolean;
2034
+ rowSelection: any;
2035
+ clearSelectOnPageChange: boolean;
2036
+ rowKey: string | ((record: Recordable<any>) => string);
2037
+ headerAlign: "left" | "right";
2038
+ isShowTitle: boolean;
2039
+ showTableSetting: boolean;
2040
+ tableSetting: {};
2041
+ beforeFetch: Fn<any, any>;
2042
+ afterFetch: Fn<any, any>;
2043
+ fetchSetting: import("../../../../ShyTable").FetchSetting;
2044
+ emptyDataIsShowTable: boolean;
2045
+ dataSource: Recordable<any>[];
2046
+ isTreeTable: boolean;
2047
+ actionColWidth: number;
2048
+ showIndexColumn: boolean;
2049
+ indexColumnProps: any;
2050
+ actionColumn: any;
2051
+ showSummary: boolean;
2052
+ summaryFunc: (...arg: any[]) => any[];
2053
+ summaryData: Recordable<any>[];
2054
+ showSummaryTotal: boolean;
2055
+ useSearchForm: boolean;
2056
+ isSortFetch: boolean;
2057
+ sortFn: (sortInfo: import("../../../../ShyTable").SorterResult) => any;
2058
+ filterFn: (data: Partial<Recordable<string[]>>) => any;
2059
+ searchInfo: any;
2060
+ defSort: any;
2061
+ handleSearchInfoFn: Fn<any, any>;
2062
+ formLayout: "vertical" | "horizontal" | "inline";
2063
+ formConfig: any;
2064
+ useInfo: boolean;
2065
+ infoConfig: {};
2066
+ }, {}>;
2067
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2068
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("register" | "confirm")[], "register" | "confirm", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2069
+ title: {
2070
+ type: StringConstructor;
2071
+ required: true;
2072
+ default: string;
2073
+ };
2074
+ }>> & {
2075
+ onRegister?: (...args: any[]) => any;
2076
+ onConfirm?: (...args: any[]) => any;
2077
+ }, {
2078
+ title: string;
2079
+ }, {}>;
2080
+ export default _sfc_main;