3h1-ui 3.0.0-next.25 → 3.0.0-next.250

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 (551) hide show
  1. package/es/index.js +46586 -34992
  2. package/es/style.css +1750 -2464
  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/AdvancedSearch.vue.d.ts +279 -0
  7. package/es/ui/src/AdvancedSearch/src/data.d.ts +27 -0
  8. package/es/ui/src/Basic/index.d.ts +4 -0
  9. package/es/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
  10. package/es/ui/src/Basic/src/BasicHelp.d.ts +117 -0
  11. package/es/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
  12. package/es/ui/src/BasicContainer/index.d.ts +3 -0
  13. package/es/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
  14. package/es/ui/src/BasicContainer/src/props.d.ts +94 -0
  15. package/es/ui/src/BasicResizeWrapper/index.d.ts +2 -0
  16. package/es/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
  17. package/es/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
  18. package/es/ui/src/Button/index.d.ts +235 -0
  19. package/es/ui/src/Button/src/BasicButton.d.ts +105 -0
  20. package/es/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
  21. package/es/ui/src/Button/src/props.d.ts +48 -0
  22. package/es/ui/src/ClickOutSide/index.d.ts +2 -0
  23. package/es/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
  24. package/es/ui/src/ColorPickerPopover/index.d.ts +2 -0
  25. package/es/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
  26. package/es/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
  27. package/es/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
  28. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
  29. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
  30. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
  31. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
  32. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
  33. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
  34. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
  35. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
  36. package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
  37. package/es/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
  38. package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
  39. package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
  40. package/es/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
  41. package/es/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
  42. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
  43. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
  44. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
  45. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
  46. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
  47. package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
  48. package/es/ui/src/Container/index.d.ts +5 -0
  49. package/es/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  50. package/es/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  51. package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +142 -0
  52. package/es/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  53. package/es/ui/src/Container/src/typing.d.ts +15 -0
  54. package/es/ui/src/ContextMenu/index.d.ts +3 -0
  55. package/es/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
  56. package/es/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
  57. package/es/ui/src/ContextMenu/src/typing.d.ts +33 -0
  58. package/es/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
  59. package/es/ui/src/CountDown/index.d.ts +3 -0
  60. package/es/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  61. package/es/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  62. package/es/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  63. package/es/ui/src/CountTo/index.d.ts +2 -0
  64. package/es/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
  65. package/es/ui/src/Cropper/index.d.ts +4 -0
  66. package/es/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
  67. package/es/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
  68. package/es/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
  69. package/es/ui/src/Cropper/src/typing.d.ts +6 -0
  70. package/es/ui/src/Description/index.d.ts +6 -0
  71. package/es/ui/src/Description/src/Description.d.ts +98 -0
  72. package/es/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
  73. package/es/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
  74. package/es/ui/src/Description/src/components/formItem.d.ts +41 -0
  75. package/es/ui/src/Description/src/props.d.ts +60 -0
  76. package/es/ui/src/Description/src/typing.d.ts +38 -0
  77. package/es/ui/src/Description/src/useDescription.d.ts +2 -0
  78. package/es/ui/src/Descriptions/index.d.ts +249 -0
  79. package/es/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
  80. package/es/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
  81. package/es/ui/src/Descriptions/src/props.d.ts +52 -0
  82. package/es/ui/src/Descriptions/src/typing.d.ts +31 -0
  83. package/es/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
  84. package/es/ui/src/DescriptionsForm/index.d.ts +426 -0
  85. package/es/ui/src/DescriptionsForm/src/DescriptionsForm.vue.d.ts +106 -0
  86. package/es/ui/src/Drawer/index.d.ts +4 -0
  87. package/es/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
  88. package/es/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
  89. package/es/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
  90. package/es/ui/src/Drawer/src/props.d.ts +115 -0
  91. package/es/ui/src/Drawer/src/typing.d.ts +177 -0
  92. package/es/ui/src/Drawer/src/useDrawer.d.ts +6 -0
  93. package/es/ui/src/Dropdown/index.d.ts +3 -0
  94. package/es/ui/src/Dropdown/src/typing.d.ts +9 -0
  95. package/es/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
  96. package/es/ui/src/Icon/index.d.ts +5 -0
  97. package/es/ui/src/Icon/src/Icon.vue.d.ts +51 -0
  98. package/es/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  99. package/es/ui/src/Label/index.d.ts +2 -0
  100. package/es/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
  101. package/es/ui/src/Label/src/props.d.ts +14 -0
  102. package/es/ui/src/Loading/index.d.ts +4 -0
  103. package/es/ui/src/Loading/src/Loading.vue.d.ts +57 -0
  104. package/es/ui/src/Loading/src/createLoading.d.ts +13 -0
  105. package/es/ui/src/Loading/src/typing.d.ts +9 -0
  106. package/es/ui/src/Loading/src/useLoading.d.ts +11 -0
  107. package/es/ui/src/Modal/index.d.ts +710 -0
  108. package/es/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
  109. package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
  110. package/es/ui/src/Modal/src/components/Modal.d.ts +300 -0
  111. package/es/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  112. package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
  113. package/es/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  114. package/es/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
  115. package/es/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
  116. package/es/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  117. package/es/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  118. package/es/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  119. package/es/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  120. package/es/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  121. package/es/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  122. package/es/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  123. package/es/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  124. package/es/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  125. package/es/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  126. package/es/ui/src/Modal/src/props.d.ts +171 -0
  127. package/es/ui/src/Modal/src/typing.d.ts +174 -0
  128. package/es/ui/src/Modal/src/utils/index.d.ts +5 -0
  129. package/es/ui/src/Modal/src/utils/is.d.ts +13 -0
  130. package/es/ui/src/Modal/src/utils/log.d.ts +2 -0
  131. package/es/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  132. package/es/ui/src/Page/index.d.ts +5 -0
  133. package/es/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  134. package/es/ui/src/Page/src/PageSecond.d.ts +63 -0
  135. package/es/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
  136. package/es/ui/src/Process/index.d.ts +2 -0
  137. package/es/ui/src/Process/src/Process.d.ts +80 -0
  138. package/es/ui/src/Scrollbar/index.d.ts +6 -0
  139. package/es/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  140. package/es/ui/src/Scrollbar/src/bar.d.ts +14 -0
  141. package/es/ui/src/Scrollbar/src/types.d.ts +18 -0
  142. package/es/ui/src/Scrollbar/src/util.d.ts +8 -0
  143. package/es/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
  144. package/es/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
  145. package/es/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
  146. package/es/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
  147. package/es/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
  148. package/es/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
  149. package/es/ui/src/ShyContainer/index.d.ts +3 -0
  150. package/es/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
  151. package/es/ui/src/ShyContainer/src/props.d.ts +98 -0
  152. package/es/ui/src/ShyForm/index.d.ts +21 -0
  153. package/es/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
  154. package/es/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
  155. package/es/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
  156. package/es/ui/src/ShyForm/src/components/ApiModalSelect/ApiModalSelect.vue.d.ts +2211 -0
  157. package/es/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
  158. package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
  159. package/es/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
  160. package/es/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
  161. package/es/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
  162. package/es/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
  163. package/es/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
  164. package/es/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
  165. package/es/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
  166. package/es/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
  167. package/es/ui/src/ShyForm/src/components/Group.d.ts +125 -0
  168. package/es/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
  169. package/es/ui/src/ShyForm/src/components/Table.d.ts +271 -0
  170. package/es/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
  171. package/es/ui/src/ShyForm/src/helper.d.ts +14 -0
  172. package/es/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
  173. package/es/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
  174. package/es/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
  175. package/es/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
  176. package/es/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
  177. package/es/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
  178. package/es/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
  179. package/es/ui/src/ShyForm/src/props.d.ts +430 -0
  180. package/es/ui/src/ShyForm/src/types/form.d.ts +127 -0
  181. package/es/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
  182. package/es/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
  183. package/es/ui/src/ShyForm/src/types/index.d.ts +90 -0
  184. package/es/ui/src/ShyLayoutContainer/index.d.ts +2 -0
  185. package/es/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
  186. package/es/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
  187. package/es/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
  188. package/es/ui/src/ShyTable/index.d.ts +10 -0
  189. package/es/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
  190. package/es/ui/src/ShyTable/src/componentMap.d.ts +6 -0
  191. package/es/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  192. package/es/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
  193. package/es/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
  194. package/es/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
  195. package/es/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
  196. package/es/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
  197. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
  198. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
  199. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
  200. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
  201. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
  202. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
  203. package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
  204. package/es/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
  205. package/es/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
  206. package/es/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
  207. package/es/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
  208. package/es/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
  209. package/es/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
  210. package/es/ui/src/ShyTable/src/const.d.ts +25 -0
  211. package/es/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
  212. package/es/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
  213. package/es/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
  214. package/es/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
  215. package/es/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
  216. package/es/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
  217. package/es/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
  218. package/es/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
  219. package/es/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
  220. package/es/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
  221. package/es/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
  222. package/es/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
  223. package/es/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
  224. package/es/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
  225. package/es/ui/src/ShyTable/src/props.d.ts +577 -0
  226. package/es/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
  227. package/es/ui/src/ShyTable/src/types/table.d.ts +422 -0
  228. package/es/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
  229. package/es/ui/src/ShyTag/index.d.ts +3 -0
  230. package/es/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
  231. package/es/ui/src/ShyTag/src/props.d.ts +47 -0
  232. package/es/ui/src/StrengthMeter/index.d.ts +2 -0
  233. package/es/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
  234. package/es/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
  235. package/es/ui/src/TablePlus/TablePlus.vue.d.ts +1534 -0
  236. package/es/ui/src/TablePlus/componentMap.d.ts +6 -0
  237. package/es/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
  238. package/es/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
  239. package/es/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
  240. package/es/ui/src/TablePlus/hooks/index.d.ts +2 -0
  241. package/es/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
  242. package/es/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
  243. package/es/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
  244. package/es/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
  245. package/es/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
  246. package/es/ui/src/TablePlus/index.d.ts +3 -0
  247. package/es/ui/src/TablePlus/props.d.ts +6 -0
  248. package/es/ui/src/TablePlus/types/componentType.d.ts +1 -0
  249. package/es/ui/src/Transition/index.d.ts +368 -0
  250. package/es/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  251. package/es/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  252. package/es/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  253. package/es/ui/src/Tree/index.d.ts +12 -0
  254. package/es/ui/src/Tree/src/BasicTree.d.ts +97 -0
  255. package/es/ui/src/Tree/src/TreeIcon.d.ts +2 -0
  256. package/es/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
  257. package/es/ui/src/Tree/src/types/tree.d.ts +123 -0
  258. package/es/ui/src/Tree/style/index.d.ts +0 -0
  259. package/es/ui/src/Upload/index.d.ts +9574 -0
  260. package/es/ui/src/Upload/src/BasicUpload.vue.d.ts +2949 -0
  261. package/es/ui/src/Upload/src/components/FileList.d.ts +254 -0
  262. package/es/ui/src/Upload/src/components/ImageUpload.vue.d.ts +410 -0
  263. package/es/ui/src/Upload/src/components/ThumbUrl.vue.d.ts +25 -0
  264. package/es/ui/src/Upload/src/components/UploadModal.vue.d.ts +1350 -0
  265. package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
  266. package/es/ui/src/Upload/src/components/data.d.ts +9 -0
  267. package/es/ui/src/Upload/src/helper.d.ts +7 -0
  268. package/es/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
  269. package/es/ui/src/Upload/src/props.d.ts +153 -0
  270. package/es/ui/src/Upload/src/types/typing.d.ts +45 -0
  271. package/es/ui/src/directives/clickOutside.d.ts +3 -0
  272. package/es/ui/src/directives/index.d.ts +1 -0
  273. package/es/ui/src/enums/sizeEnum.d.ts +11 -0
  274. package/es/ui/types/global.d.ts +102 -0
  275. package/es/ui/types/index.d.ts +36 -0
  276. package/lib/index.js +46748 -35154
  277. package/lib/style.css +1750 -2464
  278. package/lib/ui/config/index.d.ts +5 -0
  279. package/lib/ui/index.d.ts +34 -0
  280. package/lib/ui/src/AdvancedSearch/index.d.ts +3 -0
  281. package/lib/ui/src/AdvancedSearch/src/AdvancedSearch.vue.d.ts +279 -0
  282. package/lib/ui/src/AdvancedSearch/src/data.d.ts +27 -0
  283. package/lib/ui/src/Basic/index.d.ts +4 -0
  284. package/lib/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
  285. package/lib/ui/src/Basic/src/BasicHelp.d.ts +117 -0
  286. package/lib/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
  287. package/lib/ui/src/BasicContainer/index.d.ts +3 -0
  288. package/lib/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
  289. package/lib/ui/src/BasicContainer/src/props.d.ts +94 -0
  290. package/lib/ui/src/BasicResizeWrapper/index.d.ts +2 -0
  291. package/lib/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
  292. package/lib/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
  293. package/lib/ui/src/Button/index.d.ts +235 -0
  294. package/lib/ui/src/Button/src/BasicButton.d.ts +105 -0
  295. package/lib/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
  296. package/lib/ui/src/Button/src/props.d.ts +48 -0
  297. package/lib/ui/src/ClickOutSide/index.d.ts +2 -0
  298. package/lib/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
  299. package/lib/ui/src/ColorPickerPopover/index.d.ts +2 -0
  300. package/lib/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
  301. package/lib/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
  302. package/lib/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
  303. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
  304. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
  305. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
  306. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
  307. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
  308. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
  309. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
  310. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
  311. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
  312. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
  313. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
  314. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
  315. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
  316. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
  317. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
  318. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
  319. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
  320. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
  321. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
  322. package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
  323. package/lib/ui/src/Container/index.d.ts +5 -0
  324. package/lib/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  325. package/lib/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  326. package/lib/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +142 -0
  327. package/lib/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  328. package/lib/ui/src/Container/src/typing.d.ts +15 -0
  329. package/lib/ui/src/ContextMenu/index.d.ts +3 -0
  330. package/lib/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
  331. package/lib/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
  332. package/lib/ui/src/ContextMenu/src/typing.d.ts +33 -0
  333. package/lib/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
  334. package/lib/ui/src/CountDown/index.d.ts +3 -0
  335. package/lib/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  336. package/lib/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  337. package/lib/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  338. package/lib/ui/src/CountTo/index.d.ts +2 -0
  339. package/lib/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
  340. package/lib/ui/src/Cropper/index.d.ts +4 -0
  341. package/lib/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
  342. package/lib/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
  343. package/lib/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
  344. package/lib/ui/src/Cropper/src/typing.d.ts +6 -0
  345. package/lib/ui/src/Description/index.d.ts +6 -0
  346. package/lib/ui/src/Description/src/Description.d.ts +98 -0
  347. package/lib/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
  348. package/lib/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
  349. package/lib/ui/src/Description/src/components/formItem.d.ts +41 -0
  350. package/lib/ui/src/Description/src/props.d.ts +60 -0
  351. package/lib/ui/src/Description/src/typing.d.ts +38 -0
  352. package/lib/ui/src/Description/src/useDescription.d.ts +2 -0
  353. package/lib/ui/src/Descriptions/index.d.ts +249 -0
  354. package/lib/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
  355. package/lib/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
  356. package/lib/ui/src/Descriptions/src/props.d.ts +52 -0
  357. package/lib/ui/src/Descriptions/src/typing.d.ts +31 -0
  358. package/lib/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
  359. package/lib/ui/src/DescriptionsForm/index.d.ts +426 -0
  360. package/lib/ui/src/DescriptionsForm/src/DescriptionsForm.vue.d.ts +106 -0
  361. package/lib/ui/src/Drawer/index.d.ts +4 -0
  362. package/lib/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
  363. package/lib/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
  364. package/lib/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
  365. package/lib/ui/src/Drawer/src/props.d.ts +115 -0
  366. package/lib/ui/src/Drawer/src/typing.d.ts +177 -0
  367. package/lib/ui/src/Drawer/src/useDrawer.d.ts +6 -0
  368. package/lib/ui/src/Dropdown/index.d.ts +3 -0
  369. package/lib/ui/src/Dropdown/src/typing.d.ts +9 -0
  370. package/lib/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
  371. package/lib/ui/src/Icon/index.d.ts +5 -0
  372. package/lib/ui/src/Icon/src/Icon.vue.d.ts +51 -0
  373. package/lib/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  374. package/lib/ui/src/Label/index.d.ts +2 -0
  375. package/lib/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
  376. package/lib/ui/src/Label/src/props.d.ts +14 -0
  377. package/lib/ui/src/Loading/index.d.ts +4 -0
  378. package/lib/ui/src/Loading/src/Loading.vue.d.ts +57 -0
  379. package/lib/ui/src/Loading/src/createLoading.d.ts +13 -0
  380. package/lib/ui/src/Loading/src/typing.d.ts +9 -0
  381. package/lib/ui/src/Loading/src/useLoading.d.ts +11 -0
  382. package/lib/ui/src/Modal/index.d.ts +710 -0
  383. package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
  384. package/lib/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
  385. package/lib/ui/src/Modal/src/components/Modal.d.ts +300 -0
  386. package/lib/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  387. package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
  388. package/lib/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  389. package/lib/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
  390. package/lib/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
  391. package/lib/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  392. package/lib/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  393. package/lib/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  394. package/lib/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  395. package/lib/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  396. package/lib/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  397. package/lib/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  398. package/lib/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  399. package/lib/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  400. package/lib/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  401. package/lib/ui/src/Modal/src/props.d.ts +171 -0
  402. package/lib/ui/src/Modal/src/typing.d.ts +174 -0
  403. package/lib/ui/src/Modal/src/utils/index.d.ts +5 -0
  404. package/lib/ui/src/Modal/src/utils/is.d.ts +13 -0
  405. package/lib/ui/src/Modal/src/utils/log.d.ts +2 -0
  406. package/lib/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  407. package/lib/ui/src/Page/index.d.ts +5 -0
  408. package/lib/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  409. package/lib/ui/src/Page/src/PageSecond.d.ts +63 -0
  410. package/lib/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
  411. package/lib/ui/src/Process/index.d.ts +2 -0
  412. package/lib/ui/src/Process/src/Process.d.ts +80 -0
  413. package/lib/ui/src/Scrollbar/index.d.ts +6 -0
  414. package/lib/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  415. package/lib/ui/src/Scrollbar/src/bar.d.ts +14 -0
  416. package/lib/ui/src/Scrollbar/src/types.d.ts +18 -0
  417. package/lib/ui/src/Scrollbar/src/util.d.ts +8 -0
  418. package/lib/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
  419. package/lib/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
  420. package/lib/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
  421. package/lib/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
  422. package/lib/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
  423. package/lib/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
  424. package/lib/ui/src/ShyContainer/index.d.ts +3 -0
  425. package/lib/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
  426. package/lib/ui/src/ShyContainer/src/props.d.ts +98 -0
  427. package/lib/ui/src/ShyForm/index.d.ts +21 -0
  428. package/lib/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
  429. package/lib/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
  430. package/lib/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
  431. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/ApiModalSelect.vue.d.ts +2211 -0
  432. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
  433. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
  434. package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
  435. package/lib/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
  436. package/lib/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
  437. package/lib/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
  438. package/lib/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
  439. package/lib/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
  440. package/lib/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
  441. package/lib/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
  442. package/lib/ui/src/ShyForm/src/components/Group.d.ts +125 -0
  443. package/lib/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
  444. package/lib/ui/src/ShyForm/src/components/Table.d.ts +271 -0
  445. package/lib/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
  446. package/lib/ui/src/ShyForm/src/helper.d.ts +14 -0
  447. package/lib/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
  448. package/lib/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
  449. package/lib/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
  450. package/lib/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
  451. package/lib/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
  452. package/lib/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
  453. package/lib/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
  454. package/lib/ui/src/ShyForm/src/props.d.ts +430 -0
  455. package/lib/ui/src/ShyForm/src/types/form.d.ts +127 -0
  456. package/lib/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
  457. package/lib/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
  458. package/lib/ui/src/ShyForm/src/types/index.d.ts +90 -0
  459. package/lib/ui/src/ShyLayoutContainer/index.d.ts +2 -0
  460. package/lib/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
  461. package/lib/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
  462. package/lib/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
  463. package/lib/ui/src/ShyTable/index.d.ts +10 -0
  464. package/lib/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
  465. package/lib/ui/src/ShyTable/src/componentMap.d.ts +6 -0
  466. package/lib/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  467. package/lib/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
  468. package/lib/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
  469. package/lib/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
  470. package/lib/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
  471. package/lib/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
  472. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
  473. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
  474. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
  475. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
  476. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
  477. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
  478. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
  479. package/lib/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
  480. package/lib/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
  481. package/lib/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
  482. package/lib/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
  483. package/lib/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
  484. package/lib/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
  485. package/lib/ui/src/ShyTable/src/const.d.ts +25 -0
  486. package/lib/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
  487. package/lib/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
  488. package/lib/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
  489. package/lib/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
  490. package/lib/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
  491. package/lib/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
  492. package/lib/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
  493. package/lib/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
  494. package/lib/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
  495. package/lib/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
  496. package/lib/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
  497. package/lib/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
  498. package/lib/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
  499. package/lib/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
  500. package/lib/ui/src/ShyTable/src/props.d.ts +577 -0
  501. package/lib/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
  502. package/lib/ui/src/ShyTable/src/types/table.d.ts +422 -0
  503. package/lib/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
  504. package/lib/ui/src/ShyTag/index.d.ts +3 -0
  505. package/lib/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
  506. package/lib/ui/src/ShyTag/src/props.d.ts +47 -0
  507. package/lib/ui/src/StrengthMeter/index.d.ts +2 -0
  508. package/lib/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
  509. package/lib/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
  510. package/lib/ui/src/TablePlus/TablePlus.vue.d.ts +1534 -0
  511. package/lib/ui/src/TablePlus/componentMap.d.ts +6 -0
  512. package/lib/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
  513. package/lib/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
  514. package/lib/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
  515. package/lib/ui/src/TablePlus/hooks/index.d.ts +2 -0
  516. package/lib/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
  517. package/lib/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
  518. package/lib/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
  519. package/lib/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
  520. package/lib/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
  521. package/lib/ui/src/TablePlus/index.d.ts +3 -0
  522. package/lib/ui/src/TablePlus/props.d.ts +6 -0
  523. package/lib/ui/src/TablePlus/types/componentType.d.ts +1 -0
  524. package/lib/ui/src/Transition/index.d.ts +368 -0
  525. package/lib/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  526. package/lib/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  527. package/lib/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  528. package/lib/ui/src/Tree/index.d.ts +12 -0
  529. package/lib/ui/src/Tree/src/BasicTree.d.ts +97 -0
  530. package/lib/ui/src/Tree/src/TreeIcon.d.ts +2 -0
  531. package/lib/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
  532. package/lib/ui/src/Tree/src/types/tree.d.ts +123 -0
  533. package/lib/ui/src/Tree/style/index.d.ts +0 -0
  534. package/lib/ui/src/Upload/index.d.ts +9574 -0
  535. package/lib/ui/src/Upload/src/BasicUpload.vue.d.ts +2949 -0
  536. package/lib/ui/src/Upload/src/components/FileList.d.ts +254 -0
  537. package/lib/ui/src/Upload/src/components/ImageUpload.vue.d.ts +410 -0
  538. package/lib/ui/src/Upload/src/components/ThumbUrl.vue.d.ts +25 -0
  539. package/lib/ui/src/Upload/src/components/UploadModal.vue.d.ts +1350 -0
  540. package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
  541. package/lib/ui/src/Upload/src/components/data.d.ts +9 -0
  542. package/lib/ui/src/Upload/src/helper.d.ts +7 -0
  543. package/lib/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
  544. package/lib/ui/src/Upload/src/props.d.ts +153 -0
  545. package/lib/ui/src/Upload/src/types/typing.d.ts +45 -0
  546. package/lib/ui/src/directives/clickOutside.d.ts +3 -0
  547. package/lib/ui/src/directives/index.d.ts +1 -0
  548. package/lib/ui/src/enums/sizeEnum.d.ts +11 -0
  549. package/lib/ui/types/global.d.ts +102 -0
  550. package/lib/ui/types/index.d.ts +36 -0
  551. package/package.json +7 -6
@@ -0,0 +1,426 @@
1
+ import descriptionsForm from './src/DescriptionsForm.vue';
2
+ export declare const DescriptionsForm: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ schema: {
5
+ type: ArrayConstructor;
6
+ required: true;
7
+ default: () => {
8
+ label: string;
9
+ field: string;
10
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
11
+ component?: ComponentType;
12
+ componentProps?: Recordable<any>;
13
+ bind?: string[];
14
+ alias?: string;
15
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
16
+ slot?: string;
17
+ span?: number;
18
+ required?: boolean;
19
+ metaMap?: {
20
+ [key: string]: string;
21
+ };
22
+ bindApiFieldMap?: string[];
23
+ }[];
24
+ };
25
+ column: {
26
+ type: NumberConstructor;
27
+ required: false;
28
+ default: number;
29
+ };
30
+ bordered: {
31
+ type: BooleanConstructor;
32
+ required: true;
33
+ default: () => boolean;
34
+ };
35
+ labelWidth: {
36
+ type: StringConstructor;
37
+ required: false;
38
+ default: () => string;
39
+ };
40
+ readonly: {
41
+ type: BooleanConstructor;
42
+ required: false;
43
+ default: () => boolean;
44
+ };
45
+ }>>, {
46
+ props: any;
47
+ form: import("vue").Ref<{
48
+ [key: string]: any;
49
+ }>;
50
+ formRef: import("vue").Ref<import("ant-design-vue").FormInstance>;
51
+ formSelectOption: {
52
+ [key: string]: any;
53
+ };
54
+ handleApiOptions: (api: (params?: object) => Promise<any[]>, item: {
55
+ label: string;
56
+ field: string;
57
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
58
+ component?: ComponentType;
59
+ componentProps?: Recordable<any>;
60
+ bind?: string[];
61
+ alias?: string;
62
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
63
+ slot?: string;
64
+ span?: number;
65
+ required?: boolean;
66
+ metaMap?: {
67
+ [key: string]: string;
68
+ };
69
+ bindApiFieldMap?: string[];
70
+ }) => any;
71
+ handleChangeBinding: (value: any, item: {
72
+ label: string;
73
+ field: string;
74
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
75
+ component?: ComponentType;
76
+ componentProps?: Recordable<any>;
77
+ bind?: string[];
78
+ alias?: string;
79
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
80
+ slot?: string;
81
+ span?: number;
82
+ required?: boolean;
83
+ metaMap?: {
84
+ [key: string]: string;
85
+ };
86
+ bindApiFieldMap?: string[];
87
+ }) => void;
88
+ filterOption: (input: string, option: any) => boolean;
89
+ isFormatter: (params: any[]) => any;
90
+ isBindApiFieldMap: (bindApiFieldMap: string[]) => any;
91
+ metaFormValue: (item: {
92
+ label: string;
93
+ field: string;
94
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
95
+ component?: ComponentType;
96
+ componentProps?: Recordable<any>;
97
+ bind?: string[];
98
+ alias?: string;
99
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
100
+ slot?: string;
101
+ span?: number;
102
+ required?: boolean;
103
+ metaMap?: {
104
+ [key: string]: string;
105
+ };
106
+ bindApiFieldMap?: string[];
107
+ }) => any;
108
+ validate: import("vue").ComputedRef<(nameList?: string | import("ant-design-vue/es/form/interface").NamePath[], options?: import("ant-design-vue/es/form/interface").ValidateOptions) => Promise<{
109
+ [key: string]: any;
110
+ }>>;
111
+ getFieldsValue: () => {
112
+ [key: string]: any;
113
+ };
114
+ resetFieldsValue: () => void;
115
+ setFieldValue: (params: object) => void;
116
+ readonly Descriptions: any;
117
+ readonly DescriptionsItem: any;
118
+ readonly Form: any;
119
+ readonly FormItem: any;
120
+ readonly Tooltip: any;
121
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
122
+ schema: {
123
+ type: ArrayConstructor;
124
+ required: true;
125
+ default: () => {
126
+ label: string;
127
+ field: string;
128
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
129
+ component?: ComponentType;
130
+ componentProps?: Recordable<any>;
131
+ bind?: string[];
132
+ alias?: string;
133
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
134
+ slot?: string;
135
+ span?: number;
136
+ required?: boolean;
137
+ metaMap?: {
138
+ [key: string]: string;
139
+ };
140
+ bindApiFieldMap?: string[];
141
+ }[];
142
+ };
143
+ column: {
144
+ type: NumberConstructor;
145
+ required: false;
146
+ default: number;
147
+ };
148
+ bordered: {
149
+ type: BooleanConstructor;
150
+ required: true;
151
+ default: () => boolean;
152
+ };
153
+ labelWidth: {
154
+ type: StringConstructor;
155
+ required: false;
156
+ default: () => string;
157
+ };
158
+ readonly: {
159
+ type: BooleanConstructor;
160
+ required: false;
161
+ default: () => boolean;
162
+ };
163
+ }>>, {
164
+ readonly: boolean;
165
+ schema: unknown[];
166
+ labelWidth: string;
167
+ column: number;
168
+ }, true, {}, {}, {
169
+ P: {};
170
+ B: {};
171
+ D: {};
172
+ C: {};
173
+ M: {};
174
+ Defaults: {};
175
+ }, Readonly<import("vue").ExtractPropTypes<{
176
+ schema: {
177
+ type: ArrayConstructor;
178
+ required: true;
179
+ default: () => {
180
+ label: string;
181
+ field: string;
182
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
183
+ component?: ComponentType;
184
+ componentProps?: Recordable<any>;
185
+ bind?: string[];
186
+ alias?: string;
187
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
188
+ slot?: string;
189
+ span?: number;
190
+ required?: boolean;
191
+ metaMap?: {
192
+ [key: string]: string;
193
+ };
194
+ bindApiFieldMap?: string[];
195
+ }[];
196
+ };
197
+ column: {
198
+ type: NumberConstructor;
199
+ required: false;
200
+ default: number;
201
+ };
202
+ bordered: {
203
+ type: BooleanConstructor;
204
+ required: true;
205
+ default: () => boolean;
206
+ };
207
+ labelWidth: {
208
+ type: StringConstructor;
209
+ required: false;
210
+ default: () => string;
211
+ };
212
+ readonly: {
213
+ type: BooleanConstructor;
214
+ required: false;
215
+ default: () => boolean;
216
+ };
217
+ }>>, {
218
+ props: any;
219
+ form: import("vue").Ref<{
220
+ [key: string]: any;
221
+ }>;
222
+ formRef: import("vue").Ref<import("ant-design-vue").FormInstance>;
223
+ formSelectOption: {
224
+ [key: string]: any;
225
+ };
226
+ handleApiOptions: (api: (params?: object) => Promise<any[]>, item: {
227
+ label: string;
228
+ field: string;
229
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
230
+ component?: ComponentType;
231
+ componentProps?: Recordable<any>;
232
+ bind?: string[];
233
+ alias?: string;
234
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
235
+ slot?: string;
236
+ span?: number;
237
+ required?: boolean;
238
+ metaMap?: {
239
+ [key: string]: string;
240
+ };
241
+ bindApiFieldMap?: string[];
242
+ }) => any;
243
+ handleChangeBinding: (value: any, item: {
244
+ label: string;
245
+ field: string;
246
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
247
+ component?: ComponentType;
248
+ componentProps?: Recordable<any>;
249
+ bind?: string[];
250
+ alias?: string;
251
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
252
+ slot?: string;
253
+ span?: number;
254
+ required?: boolean;
255
+ metaMap?: {
256
+ [key: string]: string;
257
+ };
258
+ bindApiFieldMap?: string[];
259
+ }) => void;
260
+ filterOption: (input: string, option: any) => boolean;
261
+ isFormatter: (params: any[]) => any;
262
+ isBindApiFieldMap: (bindApiFieldMap: string[]) => any;
263
+ metaFormValue: (item: {
264
+ label: string;
265
+ field: string;
266
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
267
+ component?: ComponentType;
268
+ componentProps?: Recordable<any>;
269
+ bind?: string[];
270
+ alias?: string;
271
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
272
+ slot?: string;
273
+ span?: number;
274
+ required?: boolean;
275
+ metaMap?: {
276
+ [key: string]: string;
277
+ };
278
+ bindApiFieldMap?: string[];
279
+ }) => any;
280
+ validate: import("vue").ComputedRef<(nameList?: string | import("ant-design-vue/es/form/interface").NamePath[], options?: import("ant-design-vue/es/form/interface").ValidateOptions) => Promise<{
281
+ [key: string]: any;
282
+ }>>;
283
+ getFieldsValue: () => {
284
+ [key: string]: any;
285
+ };
286
+ resetFieldsValue: () => void;
287
+ setFieldValue: (params: object) => void;
288
+ readonly Descriptions: any;
289
+ readonly DescriptionsItem: any;
290
+ readonly Form: any;
291
+ readonly FormItem: any;
292
+ readonly Tooltip: any;
293
+ }, {}, {}, {}, {
294
+ readonly: boolean;
295
+ schema: unknown[];
296
+ labelWidth: string;
297
+ column: number;
298
+ }>;
299
+ __isFragment?: never;
300
+ __isTeleport?: never;
301
+ __isSuspense?: never;
302
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
303
+ schema: {
304
+ type: ArrayConstructor;
305
+ required: true;
306
+ default: () => {
307
+ label: string;
308
+ field: string;
309
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
310
+ component?: ComponentType;
311
+ componentProps?: Recordable<any>;
312
+ bind?: string[];
313
+ alias?: string;
314
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
315
+ slot?: string;
316
+ span?: number;
317
+ required?: boolean;
318
+ metaMap?: {
319
+ [key: string]: string;
320
+ };
321
+ bindApiFieldMap?: string[];
322
+ }[];
323
+ };
324
+ column: {
325
+ type: NumberConstructor;
326
+ required: false;
327
+ default: number;
328
+ };
329
+ bordered: {
330
+ type: BooleanConstructor;
331
+ required: true;
332
+ default: () => boolean;
333
+ };
334
+ labelWidth: {
335
+ type: StringConstructor;
336
+ required: false;
337
+ default: () => string;
338
+ };
339
+ readonly: {
340
+ type: BooleanConstructor;
341
+ required: false;
342
+ default: () => boolean;
343
+ };
344
+ }>>, {
345
+ props: any;
346
+ form: import("vue").Ref<{
347
+ [key: string]: any;
348
+ }>;
349
+ formRef: import("vue").Ref<import("ant-design-vue").FormInstance>;
350
+ formSelectOption: {
351
+ [key: string]: any;
352
+ };
353
+ handleApiOptions: (api: (params?: object) => Promise<any[]>, item: {
354
+ label: string;
355
+ field: string;
356
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
357
+ component?: ComponentType;
358
+ componentProps?: Recordable<any>;
359
+ bind?: string[];
360
+ alias?: string;
361
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
362
+ slot?: string;
363
+ span?: number;
364
+ required?: boolean;
365
+ metaMap?: {
366
+ [key: string]: string;
367
+ };
368
+ bindApiFieldMap?: string[];
369
+ }) => any;
370
+ handleChangeBinding: (value: any, item: {
371
+ label: string;
372
+ field: string;
373
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
374
+ component?: ComponentType;
375
+ componentProps?: Recordable<any>;
376
+ bind?: string[];
377
+ alias?: string;
378
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
379
+ slot?: string;
380
+ span?: number;
381
+ required?: boolean;
382
+ metaMap?: {
383
+ [key: string]: string;
384
+ };
385
+ bindApiFieldMap?: string[];
386
+ }) => void;
387
+ filterOption: (input: string, option: any) => boolean;
388
+ isFormatter: (params: any[]) => any;
389
+ isBindApiFieldMap: (bindApiFieldMap: string[]) => any;
390
+ metaFormValue: (item: {
391
+ label: string;
392
+ field: string;
393
+ api?: [] | ((params?: object) => [] | Promise<any[]>);
394
+ component?: ComponentType;
395
+ componentProps?: Recordable<any>;
396
+ bind?: string[];
397
+ alias?: string;
398
+ formatter?: (value: any, record?: Recordable<any>, sourceValue?: any) => any;
399
+ slot?: string;
400
+ span?: number;
401
+ required?: boolean;
402
+ metaMap?: {
403
+ [key: string]: string;
404
+ };
405
+ bindApiFieldMap?: string[];
406
+ }) => any;
407
+ validate: import("vue").ComputedRef<(nameList?: string | import("ant-design-vue/es/form/interface").NamePath[], options?: import("ant-design-vue/es/form/interface").ValidateOptions) => Promise<{
408
+ [key: string]: any;
409
+ }>>;
410
+ getFieldsValue: () => {
411
+ [key: string]: any;
412
+ };
413
+ resetFieldsValue: () => void;
414
+ setFieldValue: (params: object) => void;
415
+ readonly Descriptions: any;
416
+ readonly DescriptionsItem: any;
417
+ readonly Form: any;
418
+ readonly FormItem: any;
419
+ readonly Tooltip: any;
420
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
421
+ readonly: boolean;
422
+ schema: unknown[];
423
+ labelWidth: string;
424
+ column: number;
425
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
426
+ export { descriptionsForm };
@@ -0,0 +1,106 @@
1
+ import type { FormInstance } from 'ant-design-vue';
2
+ import type { ComponentType } from '../../Form/src/types/index';
3
+ type FormSchema = {
4
+ label: string;
5
+ field: string;
6
+ api?: ((params?: object) => Promise<any[]> | []) | [];
7
+ component?: ComponentType;
8
+ componentProps?: Recordable;
9
+ bind?: string[];
10
+ alias?: string;
11
+ formatter?: (value: any, record?: Recordable, sourceValue?: any) => any;
12
+ slot?: string;
13
+ span?: number;
14
+ required?: boolean;
15
+ metaMap?: {
16
+ [key: string]: string;
17
+ };
18
+ bindApiFieldMap?: string[];
19
+ };
20
+ declare const _sfc_main: import("vue").DefineComponent<{
21
+ schema: {
22
+ type: ArrayConstructor;
23
+ required: true;
24
+ default: () => FormSchema[];
25
+ };
26
+ column: {
27
+ type: NumberConstructor;
28
+ required: false;
29
+ default: number;
30
+ };
31
+ bordered: {
32
+ type: BooleanConstructor;
33
+ required: true;
34
+ default: () => boolean;
35
+ };
36
+ labelWidth: {
37
+ type: StringConstructor;
38
+ required: false;
39
+ default: () => string;
40
+ };
41
+ readonly: {
42
+ type: BooleanConstructor;
43
+ required: false;
44
+ default: () => boolean;
45
+ };
46
+ }, {
47
+ props: any;
48
+ form: import("vue").Ref<{
49
+ [key: string]: any;
50
+ }>;
51
+ formRef: import("vue").Ref<FormInstance>;
52
+ formSelectOption: {
53
+ [key: string]: any;
54
+ };
55
+ handleApiOptions: (api: (params?: object) => Promise<any[]>, item: FormSchema) => any;
56
+ handleChangeBinding: (value: any, item: FormSchema) => void;
57
+ filterOption: (input: string, option: any) => boolean;
58
+ isFormatter: (params: any[]) => any;
59
+ isBindApiFieldMap: (bindApiFieldMap: string[]) => any;
60
+ metaFormValue: (item: FormSchema) => any;
61
+ validate: import("vue").ComputedRef<(nameList?: string | import("ant-design-vue/es/form/interface").NamePath[], options?: import("ant-design-vue/es/form/interface").ValidateOptions) => Promise<{
62
+ [key: string]: any;
63
+ }>>;
64
+ getFieldsValue: () => {
65
+ [key: string]: any;
66
+ };
67
+ resetFieldsValue: () => void;
68
+ setFieldValue: (params: object) => void;
69
+ readonly Descriptions: any;
70
+ readonly DescriptionsItem: any;
71
+ readonly Form: any;
72
+ readonly FormItem: any;
73
+ readonly Tooltip: any;
74
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
75
+ schema: {
76
+ type: ArrayConstructor;
77
+ required: true;
78
+ default: () => FormSchema[];
79
+ };
80
+ column: {
81
+ type: NumberConstructor;
82
+ required: false;
83
+ default: number;
84
+ };
85
+ bordered: {
86
+ type: BooleanConstructor;
87
+ required: true;
88
+ default: () => boolean;
89
+ };
90
+ labelWidth: {
91
+ type: StringConstructor;
92
+ required: false;
93
+ default: () => string;
94
+ };
95
+ readonly: {
96
+ type: BooleanConstructor;
97
+ required: false;
98
+ default: () => boolean;
99
+ };
100
+ }>>, {
101
+ readonly: boolean;
102
+ schema: unknown[];
103
+ labelWidth: string;
104
+ column: number;
105
+ }, {}>;
106
+ export default _sfc_main;
@@ -0,0 +1,4 @@
1
+ import BasicDrawer from './src/BasicDrawer.vue';
2
+ export * from './src/typing';
3
+ export { useDrawer, useDrawerInner } from './src/useDrawer';
4
+ export { BasicDrawer };
@@ -0,0 +1,170 @@
1
+ import type { DrawerProps } from './typing';
2
+ import type { CSSProperties } from 'vue';
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ confirmLoading: {
5
+ type: BooleanConstructor;
6
+ };
7
+ showCancelBtn: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ cancelButtonProps: import("vue").PropType<Recordable<any>>;
12
+ cancelText: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ showOkBtn: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ okButtonProps: import("vue").PropType<Recordable<any>>;
21
+ okText: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ okType: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ showFooter: {
30
+ type: BooleanConstructor;
31
+ };
32
+ footerHeight: {
33
+ type: import("vue").PropType<string | number>;
34
+ default: number;
35
+ };
36
+ isDetail: {
37
+ type: BooleanConstructor;
38
+ };
39
+ title: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ loadingText: {
44
+ type: StringConstructor;
45
+ };
46
+ showDetailBack: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ visible: {
51
+ type: BooleanConstructor;
52
+ };
53
+ loading: {
54
+ type: BooleanConstructor;
55
+ };
56
+ maskClosable: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ getContainer: {
61
+ type: import("vue").PropType<any>;
62
+ };
63
+ closeFunc: {
64
+ type: import("vue").PropType<any>;
65
+ default: any;
66
+ };
67
+ destroyOnClose: {
68
+ type: BooleanConstructor;
69
+ };
70
+ }, {
71
+ onClose: (e: Recordable) => Promise<void>;
72
+ prefixCls: string;
73
+ getMergeProps: any;
74
+ getScrollContentStyle: import("vue").ComputedRef<CSSProperties>;
75
+ getProps: any;
76
+ getLoading: import("vue").ComputedRef<boolean>;
77
+ getBindValues: import("vue").ComputedRef<DrawerProps>;
78
+ getFooterHeight: import("vue").ComputedRef<string>;
79
+ handleOk: () => void;
80
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "ok" | "visible-change" | "register")[], "close" | "ok" | "visible-change" | "register", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
81
+ confirmLoading: {
82
+ type: BooleanConstructor;
83
+ };
84
+ showCancelBtn: {
85
+ type: BooleanConstructor;
86
+ default: boolean;
87
+ };
88
+ cancelButtonProps: import("vue").PropType<Recordable<any>>;
89
+ cancelText: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ showOkBtn: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ okButtonProps: import("vue").PropType<Recordable<any>>;
98
+ okText: {
99
+ type: StringConstructor;
100
+ default: string;
101
+ };
102
+ okType: {
103
+ type: StringConstructor;
104
+ default: string;
105
+ };
106
+ showFooter: {
107
+ type: BooleanConstructor;
108
+ };
109
+ footerHeight: {
110
+ type: import("vue").PropType<string | number>;
111
+ default: number;
112
+ };
113
+ isDetail: {
114
+ type: BooleanConstructor;
115
+ };
116
+ title: {
117
+ type: StringConstructor;
118
+ default: string;
119
+ };
120
+ loadingText: {
121
+ type: StringConstructor;
122
+ };
123
+ showDetailBack: {
124
+ type: BooleanConstructor;
125
+ default: boolean;
126
+ };
127
+ visible: {
128
+ type: BooleanConstructor;
129
+ };
130
+ loading: {
131
+ type: BooleanConstructor;
132
+ };
133
+ maskClosable: {
134
+ type: BooleanConstructor;
135
+ default: boolean;
136
+ };
137
+ getContainer: {
138
+ type: import("vue").PropType<any>;
139
+ };
140
+ closeFunc: {
141
+ type: import("vue").PropType<any>;
142
+ default: any;
143
+ };
144
+ destroyOnClose: {
145
+ type: BooleanConstructor;
146
+ };
147
+ }>> & {
148
+ onClose?: (...args: any[]) => any;
149
+ onOk?: (...args: any[]) => any;
150
+ "onVisible-change"?: (...args: any[]) => any;
151
+ onRegister?: (...args: any[]) => any;
152
+ }, {
153
+ title: string;
154
+ loading: boolean;
155
+ showCancelBtn: boolean;
156
+ showOkBtn: boolean;
157
+ visible: boolean;
158
+ confirmLoading: boolean;
159
+ destroyOnClose: boolean;
160
+ maskClosable: boolean;
161
+ okType: string;
162
+ cancelText: string;
163
+ okText: string;
164
+ closeFunc: any;
165
+ showFooter: boolean;
166
+ footerHeight: string | number;
167
+ isDetail: boolean;
168
+ showDetailBack: boolean;
169
+ }, {}>;
170
+ export default _sfc_main;