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,254 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ columns: {
3
+ type: import("vue").PropType<import("../types/typing").FileBasicColumn[]>;
4
+ default: any;
5
+ };
6
+ actionColumn: {
7
+ type: import("vue").PropType<import("../types/typing").FileBasicColumn>;
8
+ default: any;
9
+ };
10
+ dataSource: {
11
+ type: import("vue").PropType<any[]>;
12
+ default: any;
13
+ };
14
+ openDrag: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ dragOptions: {
19
+ type: import("vue").PropType<{
20
+ scroll: boolean | HTMLElement;
21
+ filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
22
+ sort: boolean;
23
+ onChange: (evt: import("sortablejs").SortableEvent) => void;
24
+ onSelect: (event: import("sortablejs").SortableEvent) => void;
25
+ disabled: boolean;
26
+ direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
27
+ draggable: string;
28
+ group: string | import("sortablejs").GroupOptions;
29
+ animation: number;
30
+ chosenClass: string;
31
+ dataIdAttr: string;
32
+ delay: number;
33
+ delayOnTouchOnly: boolean;
34
+ dragClass: string;
35
+ dragoverBubble: boolean;
36
+ dropBubble: boolean;
37
+ emptyInsertThreshold: number;
38
+ easing: string;
39
+ fallbackClass: string;
40
+ fallbackOnBody: boolean;
41
+ fallbackTolerance: number;
42
+ fallbackOffset: {
43
+ x: number;
44
+ y: number;
45
+ };
46
+ forceFallback: boolean;
47
+ ghostClass: string;
48
+ handle: string;
49
+ ignore: string;
50
+ invertSwap: boolean;
51
+ invertedSwapThreshold: number;
52
+ preventOnFilter: boolean;
53
+ removeCloneOnHide: boolean;
54
+ store: {
55
+ get: (sortable: import("sortablejs")) => string[];
56
+ set: (sortable: import("sortablejs")) => void;
57
+ };
58
+ swapThreshold: number;
59
+ touchStartThreshold: number;
60
+ setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
61
+ onStart: (event: import("sortablejs").SortableEvent) => void;
62
+ onAdd: (event: import("sortablejs").SortableEvent) => void;
63
+ onClone: (event: import("sortablejs").SortableEvent) => void;
64
+ onChoose: (event: import("sortablejs").SortableEvent) => void;
65
+ onUnchoose: (event: import("sortablejs").SortableEvent) => void;
66
+ onUpdate: (event: import("sortablejs").SortableEvent) => void;
67
+ onSort: (event: import("sortablejs").SortableEvent) => void;
68
+ onRemove: (event: import("sortablejs").SortableEvent) => void;
69
+ onFilter: (event: import("sortablejs").SortableEvent) => void;
70
+ onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
71
+ forceAutoScrollFallback: boolean;
72
+ scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
73
+ scrollSensitivity: number;
74
+ scrollSpeed: number;
75
+ bubbleScroll: boolean;
76
+ multiDrag: boolean;
77
+ selectedClass: string;
78
+ multiDragKey: string;
79
+ avoidImplicitDeselect: boolean;
80
+ onDeselect: (event: import("sortablejs").SortableEvent) => void;
81
+ revertOnSpill: boolean;
82
+ removeOnSpill: boolean;
83
+ onSpill: (evt: import("sortablejs").SortableEvent) => void;
84
+ swap: boolean;
85
+ swapClass: string;
86
+ onAfterEnd: <T = any, R = any>(params: T) => R;
87
+ }>;
88
+ default: () => {};
89
+ };
90
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
91
+ columns: {
92
+ type: import("vue").PropType<import("../types/typing").FileBasicColumn[]>;
93
+ default: any;
94
+ };
95
+ actionColumn: {
96
+ type: import("vue").PropType<import("../types/typing").FileBasicColumn>;
97
+ default: any;
98
+ };
99
+ dataSource: {
100
+ type: import("vue").PropType<any[]>;
101
+ default: any;
102
+ };
103
+ openDrag: {
104
+ type: BooleanConstructor;
105
+ default: boolean;
106
+ };
107
+ dragOptions: {
108
+ type: import("vue").PropType<{
109
+ scroll: boolean | HTMLElement;
110
+ filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
111
+ sort: boolean;
112
+ onChange: (evt: import("sortablejs").SortableEvent) => void;
113
+ onSelect: (event: import("sortablejs").SortableEvent) => void;
114
+ disabled: boolean;
115
+ direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
116
+ draggable: string;
117
+ group: string | import("sortablejs").GroupOptions;
118
+ animation: number;
119
+ chosenClass: string;
120
+ dataIdAttr: string;
121
+ delay: number;
122
+ delayOnTouchOnly: boolean;
123
+ dragClass: string;
124
+ dragoverBubble: boolean;
125
+ dropBubble: boolean;
126
+ emptyInsertThreshold: number;
127
+ easing: string;
128
+ fallbackClass: string;
129
+ fallbackOnBody: boolean;
130
+ fallbackTolerance: number;
131
+ fallbackOffset: {
132
+ x: number;
133
+ y: number;
134
+ };
135
+ forceFallback: boolean;
136
+ ghostClass: string;
137
+ handle: string;
138
+ ignore: string;
139
+ invertSwap: boolean;
140
+ invertedSwapThreshold: number;
141
+ preventOnFilter: boolean;
142
+ removeCloneOnHide: boolean;
143
+ store: {
144
+ get: (sortable: import("sortablejs")) => string[];
145
+ set: (sortable: import("sortablejs")) => void;
146
+ };
147
+ swapThreshold: number;
148
+ touchStartThreshold: number;
149
+ setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
150
+ onStart: (event: import("sortablejs").SortableEvent) => void;
151
+ onAdd: (event: import("sortablejs").SortableEvent) => void;
152
+ onClone: (event: import("sortablejs").SortableEvent) => void;
153
+ onChoose: (event: import("sortablejs").SortableEvent) => void;
154
+ onUnchoose: (event: import("sortablejs").SortableEvent) => void;
155
+ onUpdate: (event: import("sortablejs").SortableEvent) => void;
156
+ onSort: (event: import("sortablejs").SortableEvent) => void;
157
+ onRemove: (event: import("sortablejs").SortableEvent) => void;
158
+ onFilter: (event: import("sortablejs").SortableEvent) => void;
159
+ onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
160
+ forceAutoScrollFallback: boolean;
161
+ scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
162
+ scrollSensitivity: number;
163
+ scrollSpeed: number;
164
+ bubbleScroll: boolean;
165
+ multiDrag: boolean;
166
+ selectedClass: string;
167
+ multiDragKey: string;
168
+ avoidImplicitDeselect: boolean;
169
+ onDeselect: (event: import("sortablejs").SortableEvent) => void;
170
+ revertOnSpill: boolean;
171
+ removeOnSpill: boolean;
172
+ onSpill: (evt: import("sortablejs").SortableEvent) => void;
173
+ swap: boolean;
174
+ swapClass: string;
175
+ onAfterEnd: <T = any, R = any>(params: T) => R;
176
+ }>;
177
+ default: () => {};
178
+ };
179
+ }>>, {
180
+ columns: import("../types/typing").FileBasicColumn[];
181
+ dataSource: any[];
182
+ actionColumn: import("../types/typing").FileBasicColumn;
183
+ openDrag: boolean;
184
+ dragOptions: {
185
+ scroll: boolean | HTMLElement;
186
+ filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
187
+ sort: boolean;
188
+ onChange: (evt: import("sortablejs").SortableEvent) => void;
189
+ onSelect: (event: import("sortablejs").SortableEvent) => void;
190
+ disabled: boolean;
191
+ direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
192
+ draggable: string;
193
+ group: string | import("sortablejs").GroupOptions;
194
+ animation: number;
195
+ chosenClass: string;
196
+ dataIdAttr: string;
197
+ delay: number;
198
+ delayOnTouchOnly: boolean;
199
+ dragClass: string;
200
+ dragoverBubble: boolean;
201
+ dropBubble: boolean;
202
+ emptyInsertThreshold: number;
203
+ easing: string;
204
+ fallbackClass: string;
205
+ fallbackOnBody: boolean;
206
+ fallbackTolerance: number;
207
+ fallbackOffset: {
208
+ x: number;
209
+ y: number;
210
+ };
211
+ forceFallback: boolean;
212
+ ghostClass: string;
213
+ handle: string;
214
+ ignore: string;
215
+ invertSwap: boolean;
216
+ invertedSwapThreshold: number;
217
+ preventOnFilter: boolean;
218
+ removeCloneOnHide: boolean;
219
+ store: {
220
+ get: (sortable: import("sortablejs")) => string[];
221
+ set: (sortable: import("sortablejs")) => void;
222
+ };
223
+ swapThreshold: number;
224
+ touchStartThreshold: number;
225
+ setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
226
+ onStart: (event: import("sortablejs").SortableEvent) => void;
227
+ onAdd: (event: import("sortablejs").SortableEvent) => void;
228
+ onClone: (event: import("sortablejs").SortableEvent) => void;
229
+ onChoose: (event: import("sortablejs").SortableEvent) => void;
230
+ onUnchoose: (event: import("sortablejs").SortableEvent) => void;
231
+ onUpdate: (event: import("sortablejs").SortableEvent) => void;
232
+ onSort: (event: import("sortablejs").SortableEvent) => void;
233
+ onRemove: (event: import("sortablejs").SortableEvent) => void;
234
+ onFilter: (event: import("sortablejs").SortableEvent) => void;
235
+ onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
236
+ forceAutoScrollFallback: boolean;
237
+ scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
238
+ scrollSensitivity: number;
239
+ scrollSpeed: number;
240
+ bubbleScroll: boolean;
241
+ multiDrag: boolean;
242
+ selectedClass: string;
243
+ multiDragKey: string;
244
+ avoidImplicitDeselect: boolean;
245
+ onDeselect: (event: import("sortablejs").SortableEvent) => void;
246
+ revertOnSpill: boolean;
247
+ removeOnSpill: boolean;
248
+ onSpill: (evt: import("sortablejs").SortableEvent) => void;
249
+ swap: boolean;
250
+ swapClass: string;
251
+ onAfterEnd: <T = any, R = any>(params: T) => R;
252
+ };
253
+ }, {}>;
254
+ export default _default;
@@ -0,0 +1,410 @@
1
+ import type { UploadFile } from 'ant-design-vue';
2
+ import { UploadRequestOption } from 'ant-design-vue/lib/vc-upload/interface';
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ showPreviewNumber: {
5
+ type: import("vue").PropType<boolean>;
6
+ default: boolean;
7
+ };
8
+ emptyHidePreview: {
9
+ type: import("vue").PropType<boolean>;
10
+ default: boolean;
11
+ };
12
+ listType: {
13
+ type: import("vue").PropType<"picture" | "text" | "picture-card">;
14
+ default: string;
15
+ };
16
+ helpText: {
17
+ type: import("vue").PropType<string>;
18
+ default: string;
19
+ };
20
+ maxSize: {
21
+ type: import("vue").PropType<number>;
22
+ default: number;
23
+ };
24
+ maxNumber: {
25
+ type: import("vue").PropType<number>;
26
+ default: number;
27
+ };
28
+ accept: {
29
+ type: import("vue").PropType<string[]>;
30
+ default: () => any[];
31
+ };
32
+ multiple: {
33
+ type: import("vue").PropType<boolean>;
34
+ default: boolean;
35
+ };
36
+ uploadParams: {
37
+ type: import("vue").PropType<any>;
38
+ default: () => {};
39
+ };
40
+ api: {
41
+ type: import("vue").PropType<PromiseFn<any, any>>;
42
+ default: any;
43
+ required: boolean;
44
+ };
45
+ name: {
46
+ type: import("vue").PropType<string>;
47
+ default: string;
48
+ };
49
+ filename: {
50
+ type: import("vue").PropType<string>;
51
+ default: any;
52
+ };
53
+ fileListOpenDrag: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ fileListDragOptions: {
58
+ type: import("vue").PropType<{
59
+ scroll: boolean | HTMLElement;
60
+ filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
61
+ sort: boolean;
62
+ onChange: (evt: import("sortablejs").SortableEvent) => void;
63
+ onSelect: (event: import("sortablejs").SortableEvent) => void;
64
+ disabled: boolean;
65
+ direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
66
+ draggable: string;
67
+ group: string | import("sortablejs").GroupOptions;
68
+ animation: number;
69
+ chosenClass: string;
70
+ dataIdAttr: string;
71
+ delay: number;
72
+ delayOnTouchOnly: boolean;
73
+ dragClass: string;
74
+ dragoverBubble: boolean;
75
+ dropBubble: boolean;
76
+ emptyInsertThreshold: number;
77
+ easing: string;
78
+ fallbackClass: string;
79
+ fallbackOnBody: boolean;
80
+ fallbackTolerance: number;
81
+ fallbackOffset: {
82
+ x: number;
83
+ y: number;
84
+ };
85
+ forceFallback: boolean;
86
+ ghostClass: string;
87
+ handle: string;
88
+ ignore: string;
89
+ invertSwap: boolean;
90
+ invertedSwapThreshold: number;
91
+ preventOnFilter: boolean;
92
+ removeCloneOnHide: boolean;
93
+ store: {
94
+ get: (sortable: import("sortablejs")) => string[];
95
+ set: (sortable: import("sortablejs")) => void;
96
+ };
97
+ swapThreshold: number;
98
+ touchStartThreshold: number;
99
+ setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
100
+ onStart: (event: import("sortablejs").SortableEvent) => void;
101
+ onAdd: (event: import("sortablejs").SortableEvent) => void;
102
+ onClone: (event: import("sortablejs").SortableEvent) => void;
103
+ onChoose: (event: import("sortablejs").SortableEvent) => void;
104
+ onUnchoose: (event: import("sortablejs").SortableEvent) => void;
105
+ onUpdate: (event: import("sortablejs").SortableEvent) => void;
106
+ onSort: (event: import("sortablejs").SortableEvent) => void;
107
+ onRemove: (event: import("sortablejs").SortableEvent) => void;
108
+ onFilter: (event: import("sortablejs").SortableEvent) => void;
109
+ onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
110
+ forceAutoScrollFallback: boolean;
111
+ scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
112
+ scrollSensitivity: number;
113
+ scrollSpeed: number;
114
+ bubbleScroll: boolean;
115
+ multiDrag: boolean;
116
+ selectedClass: string;
117
+ multiDragKey: string;
118
+ avoidImplicitDeselect: boolean;
119
+ onDeselect: (event: import("sortablejs").SortableEvent) => void;
120
+ revertOnSpill: boolean;
121
+ removeOnSpill: boolean;
122
+ onSpill: (evt: import("sortablejs").SortableEvent) => void;
123
+ swap: boolean;
124
+ swapClass: string;
125
+ onAfterEnd: <T = any, R = any>(params: T) => R;
126
+ }>;
127
+ default: () => {};
128
+ };
129
+ value: {
130
+ type: import("vue").PropType<string[]>;
131
+ default: () => any[];
132
+ };
133
+ }, {
134
+ emit: (event: "delete" | "change" | "update:value", ...args: any[]) => void;
135
+ props: any;
136
+ t: (key: any) => any;
137
+ createMessage: any;
138
+ accept: import("vue").Ref<string[]>;
139
+ helpText: import("vue").Ref<string>;
140
+ maxNumber: import("vue").Ref<number>;
141
+ maxSize: import("vue").Ref<number>;
142
+ isInnerOperate: import("vue").Ref<boolean>;
143
+ getStringAccept: import("vue").ComputedRef<string>;
144
+ previewOpen: import("vue").Ref<boolean>;
145
+ previewImage: import("vue").Ref<string>;
146
+ previewTitle: import("vue").Ref<string>;
147
+ fileList: import("vue").Ref<{
148
+ uid: string;
149
+ size?: number;
150
+ name: string;
151
+ fileName?: string;
152
+ lastModified?: number;
153
+ lastModifiedDate?: Date;
154
+ url?: string;
155
+ status?: import("ant-design-vue/es/upload/interface").UploadFileStatus;
156
+ percent?: number;
157
+ thumbUrl?: string;
158
+ crossOrigin?: "" | "anonymous" | "use-credentials";
159
+ originFileObj?: {
160
+ readonly lastModifiedDate: Date;
161
+ uid: string;
162
+ readonly lastModified: number;
163
+ readonly name: string;
164
+ readonly webkitRelativePath: string;
165
+ readonly size: number;
166
+ readonly type: string;
167
+ arrayBuffer: () => Promise<ArrayBuffer>;
168
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
169
+ stream: () => ReadableStream<Uint8Array>;
170
+ text: () => Promise<string>;
171
+ };
172
+ response?: unknown;
173
+ error?: any;
174
+ linkProps?: any;
175
+ type?: string;
176
+ xhr?: unknown;
177
+ preview?: string;
178
+ }[]>;
179
+ isLtMsg: import("vue").Ref<boolean>;
180
+ isActMsg: import("vue").Ref<boolean>;
181
+ getBase64: <T_1 extends string | ArrayBuffer>(file: File) => Promise<T_1>;
182
+ handlePreview: (file: UploadFile) => Promise<void>;
183
+ handleRemove: (file: UploadFile) => Promise<void>;
184
+ handleCancel: () => void;
185
+ beforeUpload: (file: File) => any;
186
+ customRequest: (info: UploadRequestOption<any>) => Promise<void>;
187
+ getValue: () => any;
188
+ readonly PlusOutlined: import("@ant-design/icons-vue/lib/icons/PlusOutlined").PlusOutlinedIconType;
189
+ readonly Modal: any;
190
+ readonly Upload: any;
191
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("delete" | "change" | "update:value")[], "delete" | "change" | "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
192
+ showPreviewNumber: {
193
+ type: import("vue").PropType<boolean>;
194
+ default: boolean;
195
+ };
196
+ emptyHidePreview: {
197
+ type: import("vue").PropType<boolean>;
198
+ default: boolean;
199
+ };
200
+ listType: {
201
+ type: import("vue").PropType<"picture" | "text" | "picture-card">;
202
+ default: string;
203
+ };
204
+ helpText: {
205
+ type: import("vue").PropType<string>;
206
+ default: string;
207
+ };
208
+ maxSize: {
209
+ type: import("vue").PropType<number>;
210
+ default: number;
211
+ };
212
+ maxNumber: {
213
+ type: import("vue").PropType<number>;
214
+ default: number;
215
+ };
216
+ accept: {
217
+ type: import("vue").PropType<string[]>;
218
+ default: () => any[];
219
+ };
220
+ multiple: {
221
+ type: import("vue").PropType<boolean>;
222
+ default: boolean;
223
+ };
224
+ uploadParams: {
225
+ type: import("vue").PropType<any>;
226
+ default: () => {};
227
+ };
228
+ api: {
229
+ type: import("vue").PropType<PromiseFn<any, any>>;
230
+ default: any;
231
+ required: boolean;
232
+ };
233
+ name: {
234
+ type: import("vue").PropType<string>;
235
+ default: string;
236
+ };
237
+ filename: {
238
+ type: import("vue").PropType<string>;
239
+ default: any;
240
+ };
241
+ fileListOpenDrag: {
242
+ type: BooleanConstructor;
243
+ default: boolean;
244
+ };
245
+ fileListDragOptions: {
246
+ type: import("vue").PropType<{
247
+ scroll: boolean | HTMLElement;
248
+ filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
249
+ sort: boolean;
250
+ onChange: (evt: import("sortablejs").SortableEvent) => void;
251
+ onSelect: (event: import("sortablejs").SortableEvent) => void;
252
+ disabled: boolean;
253
+ direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
254
+ draggable: string;
255
+ group: string | import("sortablejs").GroupOptions;
256
+ animation: number;
257
+ chosenClass: string;
258
+ dataIdAttr: string;
259
+ delay: number;
260
+ delayOnTouchOnly: boolean;
261
+ dragClass: string;
262
+ dragoverBubble: boolean;
263
+ dropBubble: boolean;
264
+ emptyInsertThreshold: number;
265
+ easing: string;
266
+ fallbackClass: string;
267
+ fallbackOnBody: boolean;
268
+ fallbackTolerance: number;
269
+ fallbackOffset: {
270
+ x: number;
271
+ y: number;
272
+ };
273
+ forceFallback: boolean;
274
+ ghostClass: string;
275
+ handle: string;
276
+ ignore: string;
277
+ invertSwap: boolean;
278
+ invertedSwapThreshold: number;
279
+ preventOnFilter: boolean;
280
+ removeCloneOnHide: boolean;
281
+ store: {
282
+ get: (sortable: import("sortablejs")) => string[];
283
+ set: (sortable: import("sortablejs")) => void;
284
+ };
285
+ swapThreshold: number;
286
+ touchStartThreshold: number;
287
+ setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
288
+ onStart: (event: import("sortablejs").SortableEvent) => void;
289
+ onAdd: (event: import("sortablejs").SortableEvent) => void;
290
+ onClone: (event: import("sortablejs").SortableEvent) => void;
291
+ onChoose: (event: import("sortablejs").SortableEvent) => void;
292
+ onUnchoose: (event: import("sortablejs").SortableEvent) => void;
293
+ onUpdate: (event: import("sortablejs").SortableEvent) => void;
294
+ onSort: (event: import("sortablejs").SortableEvent) => void;
295
+ onRemove: (event: import("sortablejs").SortableEvent) => void;
296
+ onFilter: (event: import("sortablejs").SortableEvent) => void;
297
+ onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
298
+ forceAutoScrollFallback: boolean;
299
+ scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
300
+ scrollSensitivity: number;
301
+ scrollSpeed: number;
302
+ bubbleScroll: boolean;
303
+ multiDrag: boolean;
304
+ selectedClass: string;
305
+ multiDragKey: string;
306
+ avoidImplicitDeselect: boolean;
307
+ onDeselect: (event: import("sortablejs").SortableEvent) => void;
308
+ revertOnSpill: boolean;
309
+ removeOnSpill: boolean;
310
+ onSpill: (evt: import("sortablejs").SortableEvent) => void;
311
+ swap: boolean;
312
+ swapClass: string;
313
+ onAfterEnd: <T = any, R = any>(params: T) => R;
314
+ }>;
315
+ default: () => {};
316
+ };
317
+ value: {
318
+ type: import("vue").PropType<string[]>;
319
+ default: () => any[];
320
+ };
321
+ }>> & {
322
+ onChange?: (...args: any[]) => any;
323
+ "onUpdate:value"?: (...args: any[]) => any;
324
+ onDelete?: (...args: any[]) => any;
325
+ }, {
326
+ value: string[];
327
+ name: string;
328
+ api: PromiseFn<any, any>;
329
+ showPreviewNumber: boolean;
330
+ emptyHidePreview: boolean;
331
+ listType: "picture" | "text" | "picture-card";
332
+ helpText: string;
333
+ maxSize: number;
334
+ maxNumber: number;
335
+ accept: string[];
336
+ multiple: boolean;
337
+ uploadParams: any;
338
+ filename: string;
339
+ fileListOpenDrag: boolean;
340
+ fileListDragOptions: {
341
+ scroll: boolean | HTMLElement;
342
+ filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
343
+ sort: boolean;
344
+ onChange: (evt: import("sortablejs").SortableEvent) => void;
345
+ onSelect: (event: import("sortablejs").SortableEvent) => void;
346
+ disabled: boolean;
347
+ direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
348
+ draggable: string;
349
+ group: string | import("sortablejs").GroupOptions;
350
+ animation: number;
351
+ chosenClass: string;
352
+ dataIdAttr: string;
353
+ delay: number;
354
+ delayOnTouchOnly: boolean;
355
+ dragClass: string;
356
+ dragoverBubble: boolean;
357
+ dropBubble: boolean;
358
+ emptyInsertThreshold: number;
359
+ easing: string;
360
+ fallbackClass: string;
361
+ fallbackOnBody: boolean;
362
+ fallbackTolerance: number;
363
+ fallbackOffset: {
364
+ x: number;
365
+ y: number;
366
+ };
367
+ forceFallback: boolean;
368
+ ghostClass: string;
369
+ handle: string;
370
+ ignore: string;
371
+ invertSwap: boolean;
372
+ invertedSwapThreshold: number;
373
+ preventOnFilter: boolean;
374
+ removeCloneOnHide: boolean;
375
+ store: {
376
+ get: (sortable: import("sortablejs")) => string[];
377
+ set: (sortable: import("sortablejs")) => void;
378
+ };
379
+ swapThreshold: number;
380
+ touchStartThreshold: number;
381
+ setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
382
+ onStart: (event: import("sortablejs").SortableEvent) => void;
383
+ onAdd: (event: import("sortablejs").SortableEvent) => void;
384
+ onClone: (event: import("sortablejs").SortableEvent) => void;
385
+ onChoose: (event: import("sortablejs").SortableEvent) => void;
386
+ onUnchoose: (event: import("sortablejs").SortableEvent) => void;
387
+ onUpdate: (event: import("sortablejs").SortableEvent) => void;
388
+ onSort: (event: import("sortablejs").SortableEvent) => void;
389
+ onRemove: (event: import("sortablejs").SortableEvent) => void;
390
+ onFilter: (event: import("sortablejs").SortableEvent) => void;
391
+ onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
392
+ forceAutoScrollFallback: boolean;
393
+ scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
394
+ scrollSensitivity: number;
395
+ scrollSpeed: number;
396
+ bubbleScroll: boolean;
397
+ multiDrag: boolean;
398
+ selectedClass: string;
399
+ multiDragKey: string;
400
+ avoidImplicitDeselect: boolean;
401
+ onDeselect: (event: import("sortablejs").SortableEvent) => void;
402
+ revertOnSpill: boolean;
403
+ removeOnSpill: boolean;
404
+ onSpill: (evt: import("sortablejs").SortableEvent) => void;
405
+ swap: boolean;
406
+ swapClass: string;
407
+ onAfterEnd: <T = any, R = any>(params: T) => R;
408
+ };
409
+ }, {}>;
410
+ export default _sfc_main;
@@ -0,0 +1,25 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ fileUrl: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ fileName: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ }, {
11
+ readonly Image: any;
12
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
13
+ fileUrl: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ };
17
+ fileName: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ }>>, {
22
+ fileName: string;
23
+ fileUrl: string;
24
+ }, {}>;
25
+ export default _sfc_main;