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

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