@antsoo-lib/components 0.0.1

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 (1148) hide show
  1. package/dist/akaza-components.mjs +72249 -0
  2. package/dist/akaza-components.umd.js +474 -0
  3. package/dist/index.d.ts +11 -0
  4. package/dist/src/_util/BaseMixin.d.ts +7 -0
  5. package/dist/src/_util/EventInterface.d.ts +18 -0
  6. package/dist/src/_util/KeyCode.d.ts +436 -0
  7. package/dist/src/_util/__mocks__/Portal.d.ts +9 -0
  8. package/dist/src/_util/__mocks__/RenderSlot.d.ts +3 -0
  9. package/dist/src/_util/canUseDom.d.ts +2 -0
  10. package/dist/src/_util/classNames.d.ts +2 -0
  11. package/dist/src/_util/collapseMotion.d.ts +3 -0
  12. package/dist/src/_util/colors.d.ts +13 -0
  13. package/dist/src/_util/component-classes.d.ts +66 -0
  14. package/dist/src/_util/copy-to-clipboard/index.d.ts +8 -0
  15. package/dist/src/_util/copy-to-clipboard/toggle-selection.d.ts +2 -0
  16. package/dist/src/_util/createContext.d.ts +6 -0
  17. package/dist/src/_util/createRef.d.ts +10 -0
  18. package/dist/src/_util/cssinjs/Cache.d.ts +10 -0
  19. package/dist/src/_util/cssinjs/Keyframes.d.ts +9 -0
  20. package/dist/src/_util/cssinjs/StyleContext.d.ts +500 -0
  21. package/dist/src/_util/cssinjs/hooks/useCacheToken.d.ts +40 -0
  22. package/dist/src/_util/cssinjs/hooks/useGlobalCache.d.ts +3 -0
  23. package/dist/src/_util/cssinjs/hooks/useHMR.d.ts +3 -0
  24. package/dist/src/_util/cssinjs/hooks/useStyleRegister/cacheMapUtil.d.ts +14 -0
  25. package/dist/src/_util/cssinjs/hooks/useStyleRegister/index.d.ts +68 -0
  26. package/dist/src/_util/cssinjs/index.d.ts +193 -0
  27. package/dist/src/_util/cssinjs/linters/contentQuotesLinter.d.ts +3 -0
  28. package/dist/src/_util/cssinjs/linters/hashedAnimationLinter.d.ts +3 -0
  29. package/dist/src/_util/cssinjs/linters/index.d.ts +6 -0
  30. package/dist/src/_util/cssinjs/linters/interface.d.ts +8 -0
  31. package/dist/src/_util/cssinjs/linters/legacyNotSelectorLinter.d.ts +3 -0
  32. package/dist/src/_util/cssinjs/linters/logicalPropertiesLinter.d.ts +3 -0
  33. package/dist/src/_util/cssinjs/linters/parentSelectorLinter.d.ts +3 -0
  34. package/dist/src/_util/cssinjs/linters/utils.d.ts +2 -0
  35. package/dist/src/_util/cssinjs/theme/Theme.d.ts +11 -0
  36. package/dist/src/_util/cssinjs/theme/ThemeCache.d.ts +20 -0
  37. package/dist/src/_util/cssinjs/theme/createTheme.d.ts +6 -0
  38. package/dist/src/_util/cssinjs/theme/index.d.ts +4 -0
  39. package/dist/src/_util/cssinjs/theme/interface.d.ts +2 -0
  40. package/dist/src/_util/cssinjs/transformers/interface.d.ts +4 -0
  41. package/dist/src/_util/cssinjs/transformers/legacyLogicalProperties.d.ts +12 -0
  42. package/dist/src/_util/cssinjs/transformers/px2rem.d.ts +20 -0
  43. package/dist/src/_util/cssinjs/util.d.ts +8 -0
  44. package/dist/src/_util/debouncedWatch.d.ts +27 -0
  45. package/dist/src/_util/eagerComputed.d.ts +3 -0
  46. package/dist/src/_util/easings.d.ts +1 -0
  47. package/dist/src/_util/env.d.ts +8 -0
  48. package/dist/src/_util/extendsObject.d.ts +3 -0
  49. package/dist/src/_util/firstNotUndefined.d.ts +2 -0
  50. package/dist/src/_util/gapSize.d.ts +3 -0
  51. package/dist/src/_util/getRequestAnimationFrame.d.ts +2 -0
  52. package/dist/src/_util/getScroll.d.ts +2 -0
  53. package/dist/src/_util/getScrollBarSize.d.ts +5 -0
  54. package/dist/src/_util/hooks/_vueuse/_configurable.d.ts +16 -0
  55. package/dist/src/_util/hooks/_vueuse/is.d.ts +16 -0
  56. package/dist/src/_util/hooks/_vueuse/resolveUnref.d.ts +5 -0
  57. package/dist/src/_util/hooks/_vueuse/tryOnMounted.d.ts +8 -0
  58. package/dist/src/_util/hooks/_vueuse/tryOnScopeDispose.d.ts +7 -0
  59. package/dist/src/_util/hooks/_vueuse/types.d.ts +114 -0
  60. package/dist/src/_util/hooks/_vueuse/unrefElement.d.ts +13 -0
  61. package/dist/src/_util/hooks/_vueuse/useElementSize.d.ts +20 -0
  62. package/dist/src/_util/hooks/_vueuse/useMutationObserver.d.ts +19 -0
  63. package/dist/src/_util/hooks/_vueuse/useResizeObserver.d.ts +44 -0
  64. package/dist/src/_util/hooks/_vueuse/useSupported.d.ts +2 -0
  65. package/dist/src/_util/hooks/useBreakpoint.d.ts +4 -0
  66. package/dist/src/_util/hooks/useDestroyed.d.ts +3 -0
  67. package/dist/src/_util/hooks/useFlexGapSupport.d.ts +3 -0
  68. package/dist/src/_util/hooks/useId.d.ts +6 -0
  69. package/dist/src/_util/hooks/useLayoutState.d.ts +6 -0
  70. package/dist/src/_util/hooks/useMemo.d.ts +2 -0
  71. package/dist/src/_util/hooks/useMergedState.d.ts +7 -0
  72. package/dist/src/_util/hooks/useRefs.d.ts +7 -0
  73. package/dist/src/_util/hooks/useScrollLocker.d.ts +6 -0
  74. package/dist/src/_util/hooks/useState.d.ts +2 -0
  75. package/dist/src/_util/isNumeric.d.ts +2 -0
  76. package/dist/src/_util/isValid.d.ts +2 -0
  77. package/dist/src/_util/isValidValue.d.ts +1 -0
  78. package/dist/src/_util/json2mq.d.ts +5 -0
  79. package/dist/src/_util/omit.d.ts +2 -0
  80. package/dist/src/_util/pickAttrs.d.ts +11 -0
  81. package/dist/src/_util/placements.d.ts +65 -0
  82. package/dist/src/_util/props-util/index.d.ts +33 -0
  83. package/dist/src/_util/props-util/initDefaultProps.d.ts +6 -0
  84. package/dist/src/_util/raf.d.ts +5 -0
  85. package/dist/src/_util/reactivePick.d.ts +9 -0
  86. package/dist/src/_util/requestAnimationTimeout.d.ts +4 -0
  87. package/dist/src/_util/responsiveObserve.d.ts +22 -0
  88. package/dist/src/_util/scrollTo.d.ts +10 -0
  89. package/dist/src/_util/setStyle.d.ts +12 -0
  90. package/dist/src/_util/shallowequal.d.ts +1 -0
  91. package/dist/src/_util/static-style-extract/index.d.ts +2 -0
  92. package/dist/src/_util/static-style-extract/interface.d.ts +2 -0
  93. package/dist/src/_util/statusUtils.d.ts +6 -0
  94. package/dist/src/_util/styleChecker.d.ts +4 -0
  95. package/dist/src/_util/throttleByAnimationFrame.d.ts +6 -0
  96. package/dist/src/_util/toReactive.d.ts +10 -0
  97. package/dist/src/_util/transButton.d.ts +35 -0
  98. package/dist/src/_util/transKeys.d.ts +2 -0
  99. package/dist/src/_util/transition.d.ts +18 -0
  100. package/dist/src/_util/type.d.ts +62 -0
  101. package/dist/src/_util/unreachableException.d.ts +4 -0
  102. package/dist/src/_util/util.d.ts +18 -0
  103. package/dist/src/_util/vnode.d.ts +11 -0
  104. package/dist/src/_util/vue-types/index.d.ts +12 -0
  105. package/dist/src/_util/warning.d.ts +6 -0
  106. package/dist/src/_util/wave/WaveEffect.d.ts +6 -0
  107. package/dist/src/_util/wave/index.d.ts +14 -0
  108. package/dist/src/_util/wave/style.d.ts +7 -0
  109. package/dist/src/_util/wave/useWave.d.ts +4 -0
  110. package/dist/src/_util/wave/util.d.ts +3 -0
  111. package/dist/src/affix/index.d.ts +109 -0
  112. package/dist/src/affix/style/index.d.ts +4 -0
  113. package/dist/src/affix/utils.d.ts +15 -0
  114. package/dist/src/alert/style/index.d.ts +14 -0
  115. package/dist/src/anchor/Anchor.d.ts +118 -0
  116. package/dist/src/anchor/AnchorLink.d.ts +59 -0
  117. package/dist/src/anchor/context.d.ts +18 -0
  118. package/dist/src/anchor/index.d.ts +9 -0
  119. package/dist/src/anchor/style/index.d.ts +6 -0
  120. package/dist/src/app/context.d.ts +21 -0
  121. package/dist/src/app/index.d.ts +45 -0
  122. package/dist/src/app/style/index.d.ts +6 -0
  123. package/dist/src/auto-complete/OptGroup.d.ts +9 -0
  124. package/dist/src/auto-complete/Option.d.ts +12 -0
  125. package/dist/src/avatar/AvatarContext.d.ts +8 -0
  126. package/dist/src/avatar/Group.d.ts +72 -0
  127. package/dist/src/avatar/index.d.ts +11 -0
  128. package/dist/src/avatar/style/index.d.ts +51 -0
  129. package/dist/src/badge/SingleNumber.d.ts +17 -0
  130. package/dist/src/badge/index.d.ts +9 -0
  131. package/dist/src/badge/style/index.d.ts +4 -0
  132. package/dist/src/breadcrumb/BreadcrumbSeparator.d.ts +11 -0
  133. package/dist/src/breadcrumb/index.d.ts +13 -0
  134. package/dist/src/breadcrumb/style/index.d.ts +4 -0
  135. package/dist/src/button/LoadingIcon.d.ts +13 -0
  136. package/dist/src/button/button-group.d.ts +33 -0
  137. package/dist/src/button/index.d.ts +11 -0
  138. package/dist/src/button/style/group.d.ts +4 -0
  139. package/dist/src/button/style/index.d.ts +11 -0
  140. package/dist/src/calendar/Header.d.ts +17 -0
  141. package/dist/src/calendar/date-fns.d.ts +17 -0
  142. package/dist/src/calendar/dayjs.d.ts +18 -0
  143. package/dist/src/calendar/index.d.ts +3 -0
  144. package/dist/src/calendar/locale/ar_EG.d.ts +2 -0
  145. package/dist/src/calendar/locale/az_AZ.d.ts +2 -0
  146. package/dist/src/calendar/locale/bg_BG.d.ts +2 -0
  147. package/dist/src/calendar/locale/bn_BD.d.ts +2 -0
  148. package/dist/src/calendar/locale/by_BY.d.ts +2 -0
  149. package/dist/src/calendar/locale/ca_ES.d.ts +2 -0
  150. package/dist/src/calendar/locale/cs_CZ.d.ts +2 -0
  151. package/dist/src/calendar/locale/da_DK.d.ts +2 -0
  152. package/dist/src/calendar/locale/de_DE.d.ts +2 -0
  153. package/dist/src/calendar/locale/el_GR.d.ts +2 -0
  154. package/dist/src/calendar/locale/en_GB.d.ts +2 -0
  155. package/dist/src/calendar/locale/en_US.d.ts +2 -0
  156. package/dist/src/calendar/locale/es_ES.d.ts +2 -0
  157. package/dist/src/calendar/locale/et_EE.d.ts +2 -0
  158. package/dist/src/calendar/locale/fa_IR.d.ts +2 -0
  159. package/dist/src/calendar/locale/fi_FI.d.ts +2 -0
  160. package/dist/src/calendar/locale/fr_BE.d.ts +2 -0
  161. package/dist/src/calendar/locale/fr_CA.d.ts +2 -0
  162. package/dist/src/calendar/locale/fr_FR.d.ts +2 -0
  163. package/dist/src/calendar/locale/ga_IE.d.ts +2 -0
  164. package/dist/src/calendar/locale/gl_ES.d.ts +2 -0
  165. package/dist/src/calendar/locale/he_IL.d.ts +2 -0
  166. package/dist/src/calendar/locale/hi_IN.d.ts +2 -0
  167. package/dist/src/calendar/locale/hr_HR.d.ts +2 -0
  168. package/dist/src/calendar/locale/hu_HU.d.ts +2 -0
  169. package/dist/src/calendar/locale/id_ID.d.ts +2 -0
  170. package/dist/src/calendar/locale/is_IS.d.ts +2 -0
  171. package/dist/src/calendar/locale/it_IT.d.ts +2 -0
  172. package/dist/src/calendar/locale/ja_JP.d.ts +2 -0
  173. package/dist/src/calendar/locale/ka_GE.d.ts +2 -0
  174. package/dist/src/calendar/locale/kk_KZ.d.ts +2 -0
  175. package/dist/src/calendar/locale/km_KH.d.ts +2 -0
  176. package/dist/src/calendar/locale/kmr_IQ.d.ts +2 -0
  177. package/dist/src/calendar/locale/kn_IN.d.ts +2 -0
  178. package/dist/src/calendar/locale/ko_KR.d.ts +2 -0
  179. package/dist/src/calendar/locale/lt_LT.d.ts +2 -0
  180. package/dist/src/calendar/locale/lv_LV.d.ts +2 -0
  181. package/dist/src/calendar/locale/mk_MK.d.ts +2 -0
  182. package/dist/src/calendar/locale/ml_IN.d.ts +2 -0
  183. package/dist/src/calendar/locale/mn_MN.d.ts +2 -0
  184. package/dist/src/calendar/locale/ms_MY.d.ts +2 -0
  185. package/dist/src/calendar/locale/nb_NO.d.ts +2 -0
  186. package/dist/src/calendar/locale/nl_BE.d.ts +2 -0
  187. package/dist/src/calendar/locale/nl_NL.d.ts +2 -0
  188. package/dist/src/calendar/locale/pl_PL.d.ts +2 -0
  189. package/dist/src/calendar/locale/pt_BR.d.ts +2 -0
  190. package/dist/src/calendar/locale/pt_PT.d.ts +2 -0
  191. package/dist/src/calendar/locale/ro_RO.d.ts +2 -0
  192. package/dist/src/calendar/locale/ru_RU.d.ts +2 -0
  193. package/dist/src/calendar/locale/sk_SK.d.ts +2 -0
  194. package/dist/src/calendar/locale/sl_SI.d.ts +2 -0
  195. package/dist/src/calendar/locale/sr_RS.d.ts +2 -0
  196. package/dist/src/calendar/locale/sv_SE.d.ts +2 -0
  197. package/dist/src/calendar/locale/ta_IN.d.ts +2 -0
  198. package/dist/src/calendar/locale/th_TH.d.ts +2 -0
  199. package/dist/src/calendar/locale/tr_TR.d.ts +2 -0
  200. package/dist/src/calendar/locale/uk_UA.d.ts +2 -0
  201. package/dist/src/calendar/locale/ur_PK.d.ts +2 -0
  202. package/dist/src/calendar/locale/vi_VN.d.ts +2 -0
  203. package/dist/src/calendar/locale/zh_CN.d.ts +2 -0
  204. package/dist/src/calendar/locale/zh_TW.d.ts +2 -0
  205. package/dist/src/calendar/moment.d.ts +17 -0
  206. package/dist/src/calendar/style/index.d.ts +22 -0
  207. package/dist/src/card/Grid.d.ts +25 -0
  208. package/dist/src/card/Meta.d.ts +44 -0
  209. package/dist/src/card/index.d.ts +11 -0
  210. package/dist/src/card/style/index.d.ts +6 -0
  211. package/dist/src/carousel/style/index.d.ts +9 -0
  212. package/dist/src/cascader/style/index.d.ts +9 -0
  213. package/dist/src/checkbox/Group.d.ts +62 -0
  214. package/dist/src/checkbox/index.d.ts +10 -0
  215. package/dist/src/checkbox/style/index.d.ts +13 -0
  216. package/dist/src/col/index.d.ts +135 -0
  217. package/dist/src/col/style/index.d.ts +2 -0
  218. package/dist/src/collapse/index.d.ts +10 -0
  219. package/dist/src/collapse/style/index.d.ts +14 -0
  220. package/dist/src/comment/style/index.d.ts +6 -0
  221. package/dist/src/components.d.ts +140 -0
  222. package/dist/src/config-provider/DisabledContext.d.ts +4 -0
  223. package/dist/src/config-provider/SizeContext.d.ts +4 -0
  224. package/dist/src/config-provider/context.d.ts +203 -0
  225. package/dist/src/config-provider/cssVariables.d.ts +3 -0
  226. package/dist/src/config-provider/hooks/useConfigInject.d.ts +42 -0
  227. package/dist/src/config-provider/hooks/useTheme.d.ts +3 -0
  228. package/dist/src/config-provider/index.d.ts +291 -0
  229. package/dist/src/config-provider/renderEmpty.d.ts +8 -0
  230. package/dist/src/config-provider/style/index.d.ts +4 -0
  231. package/dist/src/date-picker/PickerButton.d.ts +4 -0
  232. package/dist/src/date-picker/PickerTag.d.ts +5 -0
  233. package/dist/src/date-picker/date-fns.d.ts +5551 -0
  234. package/dist/src/date-picker/dayjs.d.ts +5552 -0
  235. package/dist/src/date-picker/generatePicker/generateRangePicker.d.ts +1110 -0
  236. package/dist/src/date-picker/generatePicker/generateSinglePicker.d.ts +6204 -0
  237. package/dist/src/date-picker/generatePicker/interface.d.ts +41 -0
  238. package/dist/src/date-picker/generatePicker/props.d.ts +411 -0
  239. package/dist/src/date-picker/index.d.ts +3 -0
  240. package/dist/src/date-picker/locale/ar_EG.d.ts +3 -0
  241. package/dist/src/date-picker/locale/az_AZ.d.ts +3 -0
  242. package/dist/src/date-picker/locale/bg_BG.d.ts +3 -0
  243. package/dist/src/date-picker/locale/bn_BD.d.ts +3 -0
  244. package/dist/src/date-picker/locale/by_BY.d.ts +3 -0
  245. package/dist/src/date-picker/locale/ca_ES.d.ts +3 -0
  246. package/dist/src/date-picker/locale/cs_CZ.d.ts +3 -0
  247. package/dist/src/date-picker/locale/da_DK.d.ts +3 -0
  248. package/dist/src/date-picker/locale/de_DE.d.ts +3 -0
  249. package/dist/src/date-picker/locale/el_GR.d.ts +3 -0
  250. package/dist/src/date-picker/locale/en_GB.d.ts +3 -0
  251. package/dist/src/date-picker/locale/en_US.d.ts +3 -0
  252. package/dist/src/date-picker/locale/es_ES.d.ts +3 -0
  253. package/dist/src/date-picker/locale/et_EE.d.ts +3 -0
  254. package/dist/src/date-picker/locale/fa_IR.d.ts +3 -0
  255. package/dist/src/date-picker/locale/fi_FI.d.ts +3 -0
  256. package/dist/src/date-picker/locale/fr_BE.d.ts +3 -0
  257. package/dist/src/date-picker/locale/fr_CA.d.ts +3 -0
  258. package/dist/src/date-picker/locale/fr_FR.d.ts +3 -0
  259. package/dist/src/date-picker/locale/ga_IE.d.ts +3 -0
  260. package/dist/src/date-picker/locale/gl_ES.d.ts +3 -0
  261. package/dist/src/date-picker/locale/he_IL.d.ts +3 -0
  262. package/dist/src/date-picker/locale/hi_IN.d.ts +3 -0
  263. package/dist/src/date-picker/locale/hr_HR.d.ts +3 -0
  264. package/dist/src/date-picker/locale/hu_HU.d.ts +3 -0
  265. package/dist/src/date-picker/locale/id_ID.d.ts +3 -0
  266. package/dist/src/date-picker/locale/is_IS.d.ts +3 -0
  267. package/dist/src/date-picker/locale/it_IT.d.ts +3 -0
  268. package/dist/src/date-picker/locale/ja_JP.d.ts +3 -0
  269. package/dist/src/date-picker/locale/ka_GE.d.ts +3 -0
  270. package/dist/src/date-picker/locale/kk_KZ.d.ts +3 -0
  271. package/dist/src/date-picker/locale/km_KH.d.ts +3 -0
  272. package/dist/src/date-picker/locale/kmr_IQ.d.ts +3 -0
  273. package/dist/src/date-picker/locale/kn_IN.d.ts +3 -0
  274. package/dist/src/date-picker/locale/ko_KR.d.ts +3 -0
  275. package/dist/src/date-picker/locale/lt_LT.d.ts +3 -0
  276. package/dist/src/date-picker/locale/lv_LV.d.ts +3 -0
  277. package/dist/src/date-picker/locale/mk_MK.d.ts +3 -0
  278. package/dist/src/date-picker/locale/ml_IN.d.ts +3 -0
  279. package/dist/src/date-picker/locale/mn_MN.d.ts +3 -0
  280. package/dist/src/date-picker/locale/ms_MY.d.ts +3 -0
  281. package/dist/src/date-picker/locale/nb_NO.d.ts +3 -0
  282. package/dist/src/date-picker/locale/nl_BE.d.ts +3 -0
  283. package/dist/src/date-picker/locale/nl_NL.d.ts +3 -0
  284. package/dist/src/date-picker/locale/pl_PL.d.ts +3 -0
  285. package/dist/src/date-picker/locale/pt_BR.d.ts +3 -0
  286. package/dist/src/date-picker/locale/pt_PT.d.ts +3 -0
  287. package/dist/src/date-picker/locale/ro_RO.d.ts +3 -0
  288. package/dist/src/date-picker/locale/ru_RU.d.ts +3 -0
  289. package/dist/src/date-picker/locale/sk_SK.d.ts +3 -0
  290. package/dist/src/date-picker/locale/sl_SI.d.ts +3 -0
  291. package/dist/src/date-picker/locale/sr_RS.d.ts +3 -0
  292. package/dist/src/date-picker/locale/sv_SE.d.ts +3 -0
  293. package/dist/src/date-picker/locale/ta_IN.d.ts +3 -0
  294. package/dist/src/date-picker/locale/th_TH.d.ts +3 -0
  295. package/dist/src/date-picker/locale/tr_TR.d.ts +3 -0
  296. package/dist/src/date-picker/locale/uk_UA.d.ts +3 -0
  297. package/dist/src/date-picker/locale/ur_PK.d.ts +3 -0
  298. package/dist/src/date-picker/locale/vi_VN.d.ts +3 -0
  299. package/dist/src/date-picker/locale/zh_CN.d.ts +3 -0
  300. package/dist/src/date-picker/locale/zh_TW.d.ts +3 -0
  301. package/dist/src/date-picker/moment.d.ts +5552 -0
  302. package/dist/src/date-picker/style/index.d.ts +36 -0
  303. package/dist/src/date-picker/util.d.ts +14 -0
  304. package/dist/src/descriptions/Cell.d.ts +14 -0
  305. package/dist/src/descriptions/Row.d.ts +11 -0
  306. package/dist/src/descriptions/style/index.d.ts +4 -0
  307. package/dist/src/divider/index.d.ts +109 -0
  308. package/dist/src/divider/style/index.d.ts +8 -0
  309. package/dist/src/drawer/style/index.d.ts +11 -0
  310. package/dist/src/drawer/style/motion.d.ts +4 -0
  311. package/dist/src/dropdown/index.d.ts +11 -0
  312. package/dist/src/dropdown/style/button.d.ts +4 -0
  313. package/dist/src/dropdown/style/index.d.ts +15 -0
  314. package/dist/src/dropdown/style/status.d.ts +4 -0
  315. package/dist/src/empty/empty.d.ts +3 -0
  316. package/dist/src/empty/index.d.ts +86 -0
  317. package/dist/src/empty/simple.d.ts +3 -0
  318. package/dist/src/empty/style/index.d.ts +7 -0
  319. package/dist/src/flex/index.d.ts +144 -0
  320. package/dist/src/flex/interface.d.ts +36 -0
  321. package/dist/src/flex/style/index.d.ts +30 -0
  322. package/dist/src/flex/utils.d.ts +6 -0
  323. package/dist/src/float-button/FloatButtonContent.d.ts +15 -0
  324. package/dist/src/float-button/context.d.ts +8 -0
  325. package/dist/src/float-button/index.d.ts +13 -0
  326. package/dist/src/float-button/style/index.d.ts +8 -0
  327. package/dist/src/float-button/util.d.ts +2 -0
  328. package/dist/src/form/ErrorList.d.ts +21 -0
  329. package/dist/src/form/FormItemContext.d.ts +32 -0
  330. package/dist/src/form/FormItemInput.d.ts +45 -0
  331. package/dist/src/form/FormItemLabel.d.ts +19 -0
  332. package/dist/src/form/context.d.ts +35 -0
  333. package/dist/src/form/index.d.ts +16 -0
  334. package/dist/src/form/interface.d.ts +171 -0
  335. package/dist/src/form/style/explain.d.ts +4 -0
  336. package/dist/src/form/style/index.d.ts +8 -0
  337. package/dist/src/form/useForm.d.ts +45 -0
  338. package/dist/src/form/utils/asyncUtil.d.ts +2 -0
  339. package/dist/src/form/utils/messages.d.ts +47 -0
  340. package/dist/src/form/utils/typeUtil.d.ts +1 -0
  341. package/dist/src/form/utils/useDebounce.d.ts +2 -0
  342. package/dist/src/form/utils/validateUtil.d.ts +6 -0
  343. package/dist/src/form/utils/valueUtil.d.ts +15 -0
  344. package/dist/src/grid/Col.d.ts +117 -0
  345. package/dist/src/grid/Row.d.ts +78 -0
  346. package/dist/src/grid/context.d.ts +11 -0
  347. package/dist/src/grid/index.d.ts +10 -0
  348. package/dist/src/grid/style/index.d.ts +4 -0
  349. package/dist/src/icon/index.d.ts +6 -0
  350. package/dist/src/image/PreviewGroup.d.ts +38 -0
  351. package/dist/src/image/style/index.d.ts +22 -0
  352. package/dist/src/input/ClearableLabeledInput.d.ts +152 -0
  353. package/dist/src/input/Group.d.ts +25 -0
  354. package/dist/src/input/calculateNodeHeight.d.ts +9 -0
  355. package/dist/src/input/index.d.ts +15 -0
  356. package/dist/src/input/style/index.d.ts +31 -0
  357. package/dist/src/input/util.d.ts +2 -0
  358. package/dist/src/input-number/src/InputNumber.d.ts +344 -0
  359. package/dist/src/input-number/src/StepHandler.d.ts +28 -0
  360. package/dist/src/input-number/src/hooks/useCursor.d.ts +6 -0
  361. package/dist/src/input-number/src/hooks/useFrame.d.ts +5 -0
  362. package/dist/src/input-number/src/utils/MiniDecimal.d.ts +68 -0
  363. package/dist/src/input-number/src/utils/numberUtil.d.ts +22 -0
  364. package/dist/src/input-number/src/utils/supportUtil.d.ts +1 -0
  365. package/dist/src/input-number/style/index.d.ts +11 -0
  366. package/dist/src/layout/injectionKey.d.ts +8 -0
  367. package/dist/src/layout/layout.d.ts +80 -0
  368. package/dist/src/layout/style/index.d.ts +17 -0
  369. package/dist/src/layout/style/light.d.ts +5 -0
  370. package/dist/src/list/contextKey.d.ts +6 -0
  371. package/dist/src/list/style/index.d.ts +7 -0
  372. package/dist/src/locale/LocaleReceiver.d.ts +35 -0
  373. package/dist/src/locale/ar_EG.d.ts +3 -0
  374. package/dist/src/locale/az_AZ.d.ts +3 -0
  375. package/dist/src/locale/bg_BG.d.ts +3 -0
  376. package/dist/src/locale/bn_BD.d.ts +3 -0
  377. package/dist/src/locale/by_BY.d.ts +3 -0
  378. package/dist/src/locale/ca_ES.d.ts +3 -0
  379. package/dist/src/locale/cs_CZ.d.ts +3 -0
  380. package/dist/src/locale/da_DK.d.ts +3 -0
  381. package/dist/src/locale/de_DE.d.ts +3 -0
  382. package/dist/src/locale/el_GR.d.ts +3 -0
  383. package/dist/src/locale/en_GB.d.ts +3 -0
  384. package/dist/src/locale/en_US.d.ts +3 -0
  385. package/dist/src/locale/es_ES.d.ts +3 -0
  386. package/dist/src/locale/et_EE.d.ts +3 -0
  387. package/dist/src/locale/fa_IR.d.ts +3 -0
  388. package/dist/src/locale/fi_FI.d.ts +3 -0
  389. package/dist/src/locale/fr_BE.d.ts +3 -0
  390. package/dist/src/locale/fr_CA.d.ts +3 -0
  391. package/dist/src/locale/fr_FR.d.ts +3 -0
  392. package/dist/src/locale/ga_IE.d.ts +3 -0
  393. package/dist/src/locale/gl_ES.d.ts +3 -0
  394. package/dist/src/locale/he_IL.d.ts +3 -0
  395. package/dist/src/locale/hi_IN.d.ts +3 -0
  396. package/dist/src/locale/hr_HR.d.ts +3 -0
  397. package/dist/src/locale/hu_HU.d.ts +3 -0
  398. package/dist/src/locale/hy_AM.d.ts +3 -0
  399. package/dist/src/locale/id_ID.d.ts +3 -0
  400. package/dist/src/locale/index.d.ts +91 -0
  401. package/dist/src/locale/is_IS.d.ts +3 -0
  402. package/dist/src/locale/it_IT.d.ts +3 -0
  403. package/dist/src/locale/ja_JP.d.ts +3 -0
  404. package/dist/src/locale/ka_GE.d.ts +3 -0
  405. package/dist/src/locale/kk_KZ.d.ts +3 -0
  406. package/dist/src/locale/km_KH.d.ts +3 -0
  407. package/dist/src/locale/kmr_IQ.d.ts +3 -0
  408. package/dist/src/locale/kn_IN.d.ts +3 -0
  409. package/dist/src/locale/ko_KR.d.ts +3 -0
  410. package/dist/src/locale/ku_IQ.d.ts +3 -0
  411. package/dist/src/locale/lt_LT.d.ts +3 -0
  412. package/dist/src/locale/lv_LV.d.ts +3 -0
  413. package/dist/src/locale/mk_MK.d.ts +3 -0
  414. package/dist/src/locale/ml_IN.d.ts +3 -0
  415. package/dist/src/locale/mn_MN.d.ts +3 -0
  416. package/dist/src/locale/ms_MY.d.ts +3 -0
  417. package/dist/src/locale/nb_NO.d.ts +3 -0
  418. package/dist/src/locale/ne_NP.d.ts +3 -0
  419. package/dist/src/locale/nl_BE.d.ts +3 -0
  420. package/dist/src/locale/nl_NL.d.ts +3 -0
  421. package/dist/src/locale/pl_PL.d.ts +3 -0
  422. package/dist/src/locale/pt_BR.d.ts +3 -0
  423. package/dist/src/locale/pt_PT.d.ts +3 -0
  424. package/dist/src/locale/ro_RO.d.ts +3 -0
  425. package/dist/src/locale/ru_RU.d.ts +3 -0
  426. package/dist/src/locale/sk_SK.d.ts +3 -0
  427. package/dist/src/locale/sl_SI.d.ts +3 -0
  428. package/dist/src/locale/sr_RS.d.ts +3 -0
  429. package/dist/src/locale/sv_SE.d.ts +3 -0
  430. package/dist/src/locale/ta_IN.d.ts +3 -0
  431. package/dist/src/locale/th_TH.d.ts +3 -0
  432. package/dist/src/locale/tr_TR.d.ts +3 -0
  433. package/dist/src/locale/uk_UA.d.ts +3 -0
  434. package/dist/src/locale/ur_PK.d.ts +3 -0
  435. package/dist/src/locale/vi_VN.d.ts +3 -0
  436. package/dist/src/locale/zh_CN.d.ts +3 -0
  437. package/dist/src/locale/zh_HK.d.ts +3 -0
  438. package/dist/src/locale/zh_TW.d.ts +3 -0
  439. package/dist/src/locale-provider/LocaleReceiver.d.ts +3 -0
  440. package/dist/src/locale-provider/index.d.ts +3 -0
  441. package/dist/src/mentions/style/index.d.ts +9 -0
  442. package/dist/src/menu/index.d.ts +17 -0
  443. package/dist/src/menu/src/Divider.d.ts +16 -0
  444. package/dist/src/menu/src/InlineSubMenuList.d.ts +13 -0
  445. package/dist/src/menu/src/Menu.d.ts +228 -0
  446. package/dist/src/menu/src/OverrideContext.d.ts +13 -0
  447. package/dist/src/menu/src/PopupTrigger.d.ts +29 -0
  448. package/dist/src/menu/src/SubMenuList.d.ts +3 -0
  449. package/dist/src/menu/src/hooks/useDirectionStyle.d.ts +2 -0
  450. package/dist/src/menu/src/hooks/useItems.d.ts +32 -0
  451. package/dist/src/menu/src/hooks/useKeyPath.d.ts +21 -0
  452. package/dist/src/menu/src/hooks/useMenuContext.d.ts +81 -0
  453. package/dist/src/menu/src/interface.d.ts +78 -0
  454. package/dist/src/menu/src/placements.d.ts +69 -0
  455. package/dist/src/menu/style/horizontal.d.ts +4 -0
  456. package/dist/src/menu/style/index.d.ts +42 -0
  457. package/dist/src/menu/style/rtl.d.ts +4 -0
  458. package/dist/src/menu/style/theme.d.ts +4 -0
  459. package/dist/src/menu/style/vertical.d.ts +4 -0
  460. package/dist/src/message/PurePanel.d.ts +22 -0
  461. package/dist/src/message/index.d.ts +58 -0
  462. package/dist/src/message/interface.d.ts +38 -0
  463. package/dist/src/message/style/index.d.ts +9 -0
  464. package/dist/src/message/useMessage.d.ts +8 -0
  465. package/dist/src/modal/ConfirmDialog.d.ts +12 -0
  466. package/dist/src/modal/confirm.d.ts +17 -0
  467. package/dist/src/modal/destroyFns.d.ts +2 -0
  468. package/dist/src/modal/index.d.ts +18 -0
  469. package/dist/src/modal/locale.d.ts +7 -0
  470. package/dist/src/modal/style/index.d.ts +33 -0
  471. package/dist/src/modal/useModal/HookModal.d.ts +26 -0
  472. package/dist/src/modal/useModal/index.d.ts +12 -0
  473. package/dist/src/notification/PurePanel.d.ts +30 -0
  474. package/dist/src/notification/index.d.ts +55 -0
  475. package/dist/src/notification/interface.d.ts +49 -0
  476. package/dist/src/notification/style/index.d.ts +20 -0
  477. package/dist/src/notification/style/placement.d.ts +5 -0
  478. package/dist/src/notification/useNotification.d.ts +9 -0
  479. package/dist/src/notification/util.d.ts +5 -0
  480. package/dist/src/page-header/style/index.d.ts +4 -0
  481. package/dist/src/pagination/Pagination.d.ts +406 -0
  482. package/dist/src/pagination/index.d.ts +360 -0
  483. package/dist/src/pagination/style/index.d.ts +4 -0
  484. package/dist/src/popconfirm/style/index.d.ts +9 -0
  485. package/dist/src/popover/index.d.ts +339 -0
  486. package/dist/src/popover/style/index.d.ts +13 -0
  487. package/dist/src/progress/Circle.d.ts +170 -0
  488. package/dist/src/progress/Line.d.ts +206 -0
  489. package/dist/src/progress/Steps.d.ts +168 -0
  490. package/dist/src/progress/index.d.ts +207 -0
  491. package/dist/src/progress/progress.d.ts +119 -0
  492. package/dist/src/progress/props.d.ts +79 -0
  493. package/dist/src/progress/style/index.d.ts +6 -0
  494. package/dist/src/progress/utils.d.ts +13 -0
  495. package/dist/src/qrcode/QRCode.d.ts +108 -0
  496. package/dist/src/qrcode/index.d.ts +162 -0
  497. package/dist/src/qrcode/interface.d.ts +83 -0
  498. package/dist/src/qrcode/qrcodegen.d.ts +100 -0
  499. package/dist/src/qrcode/style/index.d.ts +6 -0
  500. package/dist/src/radio/context.d.ts +5 -0
  501. package/dist/src/radio/index.d.ts +13 -0
  502. package/dist/src/radio/interface.d.ts +27 -0
  503. package/dist/src/radio/style/index.d.ts +6 -0
  504. package/dist/src/rate/style/index.d.ts +6 -0
  505. package/dist/src/rate/util.d.ts +1 -0
  506. package/dist/src/result/noFound.d.ts +2 -0
  507. package/dist/src/result/serverError.d.ts +2 -0
  508. package/dist/src/result/style/index.d.ts +8 -0
  509. package/dist/src/result/unauthorized.d.ts +2 -0
  510. package/dist/src/row/index.d.ts +213 -0
  511. package/dist/src/row/style/index.d.ts +2 -0
  512. package/dist/src/segmented/index.d.ts +143 -0
  513. package/dist/src/segmented/src/MotionThumb.d.ts +91 -0
  514. package/dist/src/segmented/src/index.d.ts +3 -0
  515. package/dist/src/segmented/src/segmented.d.ts +127 -0
  516. package/dist/src/segmented/style/index.d.ts +6 -0
  517. package/dist/src/select/style/dropdown.d.ts +4 -0
  518. package/dist/src/select/style/index.d.ts +11 -0
  519. package/dist/src/select/style/multiple.d.ts +3 -0
  520. package/dist/src/select/style/single.d.ts +3 -0
  521. package/dist/src/select/utils/iconUtil.d.ts +9 -0
  522. package/dist/src/skeleton/Avatar.d.ts +32 -0
  523. package/dist/src/skeleton/Button.d.ts +36 -0
  524. package/dist/src/skeleton/Element.d.ts +13 -0
  525. package/dist/src/skeleton/Image.d.ts +22 -0
  526. package/dist/src/skeleton/Input.d.ts +28 -0
  527. package/dist/src/skeleton/Paragraph.d.ts +24 -0
  528. package/dist/src/skeleton/Skeleton.d.ts +106 -0
  529. package/dist/src/skeleton/Title.d.ts +20 -0
  530. package/dist/src/skeleton/index.d.ts +22 -0
  531. package/dist/src/skeleton/style/index.d.ts +8 -0
  532. package/dist/src/slider/index.d.ts +518 -0
  533. package/dist/src/slider/style/index.d.ts +13 -0
  534. package/dist/src/space/Compact.d.ts +121 -0
  535. package/dist/src/space/index.d.ts +59 -0
  536. package/dist/src/space/style/compact.d.ts +8 -0
  537. package/dist/src/space/style/index.d.ts +7 -0
  538. package/dist/src/spin/index.d.ts +8 -0
  539. package/dist/src/spin/style/index.d.ts +7 -0
  540. package/dist/src/statistic/Countdown.d.ts +124 -0
  541. package/dist/src/statistic/Number.d.ts +7 -0
  542. package/dist/src/statistic/Statistic.d.ts +124 -0
  543. package/dist/src/statistic/index.d.ts +9 -0
  544. package/dist/src/statistic/style/index.d.ts +4 -0
  545. package/dist/src/statistic/utils.d.ts +19 -0
  546. package/dist/src/steps/index.d.ts +597 -0
  547. package/dist/src/steps/style/custom-icon.d.ts +5 -0
  548. package/dist/src/steps/style/index.d.ts +54 -0
  549. package/dist/src/steps/style/inline.d.ts +5 -0
  550. package/dist/src/steps/style/label-placement.d.ts +5 -0
  551. package/dist/src/steps/style/nav.d.ts +5 -0
  552. package/dist/src/steps/style/progress-dot.d.ts +5 -0
  553. package/dist/src/steps/style/progress.d.ts +5 -0
  554. package/dist/src/steps/style/rtl.d.ts +5 -0
  555. package/dist/src/steps/style/small.d.ts +5 -0
  556. package/dist/src/steps/style/vertical.d.ts +5 -0
  557. package/dist/src/style/compact-item-vertical.d.ts +4 -0
  558. package/dist/src/style/compact-item.d.ts +18 -0
  559. package/dist/src/style/index.d.ts +13 -0
  560. package/dist/src/style/motion/collapse.d.ts +4 -0
  561. package/dist/src/style/motion/fade.d.ts +6 -0
  562. package/dist/src/style/motion/index.d.ts +6 -0
  563. package/dist/src/style/motion/motion.d.ts +2 -0
  564. package/dist/src/style/motion/move.d.ts +14 -0
  565. package/dist/src/style/motion/slide.d.ts +14 -0
  566. package/dist/src/style/motion/zoom.d.ts +18 -0
  567. package/dist/src/style/operationUnit.d.ts +3 -0
  568. package/dist/src/style/placementArrow.d.ts +19 -0
  569. package/dist/src/style/presetColor.d.ts +16 -0
  570. package/dist/src/style/roundedArrow.d.ts +2 -0
  571. package/dist/src/switch/style/index.d.ts +4 -0
  572. package/dist/src/table/Column.d.ts +5 -0
  573. package/dist/src/table/ColumnGroup.d.ts +4 -0
  574. package/dist/src/table/ExpandIcon.d.ts +10 -0
  575. package/dist/src/table/context.d.ts +24 -0
  576. package/dist/src/table/hooks/useColumns.d.ts +4 -0
  577. package/dist/src/table/hooks/useFilter/FilterDropdown.d.ts +21 -0
  578. package/dist/src/table/hooks/useFilter/FilterSearch.d.ts +52 -0
  579. package/dist/src/table/hooks/useFilter/FilterWrapper.d.ts +4 -0
  580. package/dist/src/table/hooks/useFilter/index.d.ts +25 -0
  581. package/dist/src/table/hooks/useLazyKVMap.d.ts +3 -0
  582. package/dist/src/table/hooks/usePagination.d.ts +5 -0
  583. package/dist/src/table/hooks/useSelection.d.ts +20 -0
  584. package/dist/src/table/hooks/useSorter.d.ts +26 -0
  585. package/dist/src/table/hooks/useTitleColumns.d.ts +3 -0
  586. package/dist/src/table/interface.d.ts +166 -0
  587. package/dist/src/table/style/bordered.d.ts +5 -0
  588. package/dist/src/table/style/ellipsis.d.ts +5 -0
  589. package/dist/src/table/style/empty.d.ts +5 -0
  590. package/dist/src/table/style/expand.d.ts +5 -0
  591. package/dist/src/table/style/filter.d.ts +4 -0
  592. package/dist/src/table/style/fixed.d.ts +5 -0
  593. package/dist/src/table/style/index.d.ts +49 -0
  594. package/dist/src/table/style/pagination.d.ts +5 -0
  595. package/dist/src/table/style/radius.d.ts +5 -0
  596. package/dist/src/table/style/resize.d.ts +5 -0
  597. package/dist/src/table/style/rtl.d.ts +5 -0
  598. package/dist/src/table/style/selection.d.ts +5 -0
  599. package/dist/src/table/style/size.d.ts +5 -0
  600. package/dist/src/table/style/sorter.d.ts +5 -0
  601. package/dist/src/table/style/sticky.d.ts +5 -0
  602. package/dist/src/table/style/summary.d.ts +5 -0
  603. package/dist/src/table/util.d.ts +7 -0
  604. package/dist/src/tabs/index.d.ts +8 -0
  605. package/dist/src/tabs/src/TabContext.d.ts +33 -0
  606. package/dist/src/tabs/src/TabNavList/AddButton.d.ts +29 -0
  607. package/dist/src/tabs/src/TabNavList/TabNode.d.ts +99 -0
  608. package/dist/src/tabs/src/TabPanelList/index.d.ts +57 -0
  609. package/dist/src/tabs/src/hooks/useOffsets.d.ts +3 -0
  610. package/dist/src/tabs/src/hooks/useRaf.d.ts +5 -0
  611. package/dist/src/tabs/src/hooks/useSyncState.d.ts +4 -0
  612. package/dist/src/tabs/src/hooks/useTouchMove.d.ts +2 -0
  613. package/dist/src/tabs/src/index.d.ts +5 -0
  614. package/dist/src/tabs/src/interface.d.ts +49 -0
  615. package/dist/src/tabs/style/index.d.ts +21 -0
  616. package/dist/src/tabs/style/motion.d.ts +4 -0
  617. package/dist/src/tag/CheckableTag.d.ts +47 -0
  618. package/dist/src/tag/style/index.d.ts +6 -0
  619. package/dist/src/theme/convertLegacyToken.d.ts +2 -0
  620. package/dist/src/theme/index.d.ts +25 -0
  621. package/dist/src/theme/interface/alias.d.ts +115 -0
  622. package/dist/src/theme/interface/components.d.ts +118 -0
  623. package/dist/src/theme/interface/index.d.ts +13 -0
  624. package/dist/src/theme/interface/maps/colors.d.ts +350 -0
  625. package/dist/src/theme/interface/maps/font.d.ts +44 -0
  626. package/dist/src/theme/interface/maps/index.d.ts +17 -0
  627. package/dist/src/theme/interface/maps/size.d.ts +63 -0
  628. package/dist/src/theme/interface/maps/style.d.ts +37 -0
  629. package/dist/src/theme/interface/presetColors.d.ts +8 -0
  630. package/dist/src/theme/interface/seeds.d.ts +165 -0
  631. package/dist/src/theme/internal.d.ts +46 -0
  632. package/dist/src/theme/themes/ColorMap.d.ts +15 -0
  633. package/dist/src/theme/themes/compact/genCompactSizeMapToken.d.ts +2 -0
  634. package/dist/src/theme/themes/compact/index.d.ts +4 -0
  635. package/dist/src/theme/themes/dark/colorAlgorithm.d.ts +2 -0
  636. package/dist/src/theme/themes/dark/colors.d.ts +3 -0
  637. package/dist/src/theme/themes/dark/index.d.ts +4 -0
  638. package/dist/src/theme/themes/default/colorAlgorithm.d.ts +2 -0
  639. package/dist/src/theme/themes/default/colors.d.ts +3 -0
  640. package/dist/src/theme/themes/default/index.d.ts +2 -0
  641. package/dist/src/theme/themes/seed.d.ts +4 -0
  642. package/dist/src/theme/themes/shared/genColorMapToken.d.ts +8 -0
  643. package/dist/src/theme/themes/shared/genCommonMapToken.d.ts +2 -0
  644. package/dist/src/theme/themes/shared/genControlHeight.d.ts +3 -0
  645. package/dist/src/theme/themes/shared/genFontMapToken.d.ts +3 -0
  646. package/dist/src/theme/themes/shared/genFontSizes.d.ts +4 -0
  647. package/dist/src/theme/themes/shared/genRadius.d.ts +3 -0
  648. package/dist/src/theme/themes/shared/genSizeMapToken.d.ts +2 -0
  649. package/dist/src/theme/util/alias.d.ts +12 -0
  650. package/dist/src/theme/util/genComponentStyleHook.d.ts +26 -0
  651. package/dist/src/theme/util/getAlphaColor.d.ts +2 -0
  652. package/dist/src/theme/util/statistic.d.ts +16 -0
  653. package/dist/src/time-picker/date-fns.d.ts +31 -0
  654. package/dist/src/time-picker/dayjs.d.ts +32 -0
  655. package/dist/src/time-picker/index.d.ts +7 -0
  656. package/dist/src/time-picker/locale/ar_EG.d.ts +3 -0
  657. package/dist/src/time-picker/locale/az_AZ.d.ts +3 -0
  658. package/dist/src/time-picker/locale/bg_BG.d.ts +3 -0
  659. package/dist/src/time-picker/locale/bn_BD.d.ts +3 -0
  660. package/dist/src/time-picker/locale/by_BY.d.ts +3 -0
  661. package/dist/src/time-picker/locale/ca_ES.d.ts +3 -0
  662. package/dist/src/time-picker/locale/cs_CZ.d.ts +3 -0
  663. package/dist/src/time-picker/locale/da_DK.d.ts +3 -0
  664. package/dist/src/time-picker/locale/de_DE.d.ts +3 -0
  665. package/dist/src/time-picker/locale/el_GR.d.ts +3 -0
  666. package/dist/src/time-picker/locale/en_GB.d.ts +3 -0
  667. package/dist/src/time-picker/locale/en_US.d.ts +3 -0
  668. package/dist/src/time-picker/locale/es_ES.d.ts +3 -0
  669. package/dist/src/time-picker/locale/et_EE.d.ts +3 -0
  670. package/dist/src/time-picker/locale/fa_IR.d.ts +3 -0
  671. package/dist/src/time-picker/locale/fi_FI.d.ts +3 -0
  672. package/dist/src/time-picker/locale/fr_BE.d.ts +3 -0
  673. package/dist/src/time-picker/locale/fr_CA.d.ts +3 -0
  674. package/dist/src/time-picker/locale/fr_FR.d.ts +3 -0
  675. package/dist/src/time-picker/locale/ga_IE.d.ts +3 -0
  676. package/dist/src/time-picker/locale/gl_ES.d.ts +3 -0
  677. package/dist/src/time-picker/locale/he_IL.d.ts +3 -0
  678. package/dist/src/time-picker/locale/hi_IN.d.ts +3 -0
  679. package/dist/src/time-picker/locale/hr_HR.d.ts +3 -0
  680. package/dist/src/time-picker/locale/hu_HU.d.ts +3 -0
  681. package/dist/src/time-picker/locale/id_ID.d.ts +3 -0
  682. package/dist/src/time-picker/locale/is_IS.d.ts +3 -0
  683. package/dist/src/time-picker/locale/it_IT.d.ts +3 -0
  684. package/dist/src/time-picker/locale/ja_JP.d.ts +3 -0
  685. package/dist/src/time-picker/locale/ka_GE.d.ts +3 -0
  686. package/dist/src/time-picker/locale/kk_KZ.d.ts +3 -0
  687. package/dist/src/time-picker/locale/km_KH.d.ts +3 -0
  688. package/dist/src/time-picker/locale/kmr_IQ.d.ts +3 -0
  689. package/dist/src/time-picker/locale/kn_IN.d.ts +3 -0
  690. package/dist/src/time-picker/locale/ko_KR.d.ts +3 -0
  691. package/dist/src/time-picker/locale/lt_LT.d.ts +3 -0
  692. package/dist/src/time-picker/locale/lv_LV.d.ts +3 -0
  693. package/dist/src/time-picker/locale/mk_MK.d.ts +3 -0
  694. package/dist/src/time-picker/locale/ml_IN.d.ts +3 -0
  695. package/dist/src/time-picker/locale/mn_MN.d.ts +3 -0
  696. package/dist/src/time-picker/locale/ms_MY.d.ts +3 -0
  697. package/dist/src/time-picker/locale/nb_NO.d.ts +3 -0
  698. package/dist/src/time-picker/locale/nl_BE.d.ts +3 -0
  699. package/dist/src/time-picker/locale/nl_NL.d.ts +3 -0
  700. package/dist/src/time-picker/locale/pl_PL.d.ts +3 -0
  701. package/dist/src/time-picker/locale/pt_BR.d.ts +3 -0
  702. package/dist/src/time-picker/locale/pt_PT.d.ts +3 -0
  703. package/dist/src/time-picker/locale/ro_RO.d.ts +3 -0
  704. package/dist/src/time-picker/locale/ru_RU.d.ts +3 -0
  705. package/dist/src/time-picker/locale/sk_SK.d.ts +3 -0
  706. package/dist/src/time-picker/locale/sl_SI.d.ts +3 -0
  707. package/dist/src/time-picker/locale/sr_RS.d.ts +3 -0
  708. package/dist/src/time-picker/locale/sv_SE.d.ts +3 -0
  709. package/dist/src/time-picker/locale/ta_IN.d.ts +3 -0
  710. package/dist/src/time-picker/locale/th_TH.d.ts +3 -0
  711. package/dist/src/time-picker/locale/tr_TR.d.ts +3 -0
  712. package/dist/src/time-picker/locale/uk_UA.d.ts +3 -0
  713. package/dist/src/time-picker/locale/ur_PK.d.ts +3 -0
  714. package/dist/src/time-picker/locale/vi_VN.d.ts +3 -0
  715. package/dist/src/time-picker/locale/zh_CN.d.ts +3 -0
  716. package/dist/src/time-picker/locale/zh_TW.d.ts +3 -0
  717. package/dist/src/time-picker/moment.d.ts +32 -0
  718. package/dist/src/timeline/index.d.ts +10 -0
  719. package/dist/src/timeline/style/index.d.ts +6 -0
  720. package/dist/src/tooltip/abstractTooltipProps.d.ts +73 -0
  721. package/dist/src/tooltip/style/index.d.ts +8 -0
  722. package/dist/src/tooltip/util.d.ts +6 -0
  723. package/dist/src/tour/panelRender.d.ts +199 -0
  724. package/dist/src/tour/style/index.d.ts +6 -0
  725. package/dist/src/tour/useMergedType.d.ts +16 -0
  726. package/dist/src/transfer/interface.d.ts +6 -0
  727. package/dist/src/transfer/operation.d.ts +17 -0
  728. package/dist/src/transfer/search.d.ts +39 -0
  729. package/dist/src/transfer/style/index.d.ts +9 -0
  730. package/dist/src/tree/style/index.d.ts +14 -0
  731. package/dist/src/tree/utils/dictUtil.d.ts +10 -0
  732. package/dist/src/tree/utils/dropIndicator.d.ts +8 -0
  733. package/dist/src/tree/utils/iconUtil.d.ts +8 -0
  734. package/dist/src/tree-select/style/index.d.ts +3 -0
  735. package/dist/src/typography/Base.d.ts +200 -0
  736. package/dist/src/typography/Editable.d.ts +50 -0
  737. package/dist/src/typography/Link.d.ts +52 -0
  738. package/dist/src/typography/Paragraph.d.ts +52 -0
  739. package/dist/src/typography/Text.d.ts +51 -0
  740. package/dist/src/typography/Title.d.ts +49 -0
  741. package/dist/src/typography/Typography.d.ts +25 -0
  742. package/dist/src/typography/index.d.ts +17 -0
  743. package/dist/src/typography/style/index.d.ts +10 -0
  744. package/dist/src/typography/style/mixins.d.ts +9 -0
  745. package/dist/src/typography/util.d.ts +11 -0
  746. package/dist/src/upload/Dragger.d.ts +397 -0
  747. package/dist/src/upload/Upload.d.ts +398 -0
  748. package/dist/src/upload/UploadList/ListItem.d.ts +339 -0
  749. package/dist/src/upload/UploadList/index.d.ts +233 -0
  750. package/dist/src/upload/index.d.ts +1463 -0
  751. package/dist/src/upload/interface.d.ts +355 -0
  752. package/dist/src/upload/style/dragger.d.ts +4 -0
  753. package/dist/src/upload/style/index.d.ts +11 -0
  754. package/dist/src/upload/style/list.d.ts +4 -0
  755. package/dist/src/upload/style/motion.d.ts +4 -0
  756. package/dist/src/upload/style/picture.d.ts +5 -0
  757. package/dist/src/upload/style/rtl.d.ts +4 -0
  758. package/dist/src/upload/utils.d.ts +8 -0
  759. package/dist/src/vc-align/Align.d.ts +45 -0
  760. package/dist/src/vc-align/hooks/useBuffer.d.ts +3 -0
  761. package/dist/src/vc-align/index.d.ts +2 -0
  762. package/dist/src/vc-align/interface.d.ts +56 -0
  763. package/dist/src/vc-align/util.d.ts +4 -0
  764. package/dist/src/vc-cascader/OptionList/Checkbox.d.ts +15 -0
  765. package/dist/src/vc-cascader/OptionList/Column.d.ts +26 -0
  766. package/dist/src/vc-cascader/OptionList/index.d.ts +3 -0
  767. package/dist/src/vc-cascader/OptionList/useActive.d.ts +7 -0
  768. package/dist/src/vc-cascader/OptionList/useKeyboard.d.ts +5 -0
  769. package/dist/src/vc-cascader/context.d.ts +22 -0
  770. package/dist/src/vc-cascader/hooks/useDisplayValues.d.ts +9 -0
  771. package/dist/src/vc-cascader/hooks/useEntities.d.ts +10 -0
  772. package/dist/src/vc-cascader/hooks/useMissingValues.d.ts +4 -0
  773. package/dist/src/vc-cascader/hooks/useSearchConfig.d.ts +29 -0
  774. package/dist/src/vc-cascader/hooks/useSearchOptions.d.ts +5 -0
  775. package/dist/src/vc-cascader/index.d.ts +4 -0
  776. package/dist/src/vc-cascader/utils/commonUtil.d.ts +10 -0
  777. package/dist/src/vc-cascader/utils/treeUtil.d.ts +9 -0
  778. package/dist/src/vc-dialog/Mask.d.ts +15 -0
  779. package/dist/src/vc-dialog/index.d.ts +4 -0
  780. package/dist/src/vc-dialog/util.d.ts +6 -0
  781. package/dist/src/vc-drawer/index.d.ts +2 -0
  782. package/dist/src/vc-drawer/src/DrawerWrapper.d.ts +163 -0
  783. package/dist/src/vc-drawer/src/utils.d.ts +9 -0
  784. package/dist/src/vc-dropdown/index.d.ts +2 -0
  785. package/dist/src/vc-dropdown/placements.d.ts +57 -0
  786. package/dist/src/vc-image/index.d.ts +3 -0
  787. package/dist/src/vc-image/src/PreviewGroup.d.ts +79 -0
  788. package/dist/src/vc-image/src/getFixScaleEleTransPosition.d.ts +16 -0
  789. package/dist/src/vc-image/src/hooks/useFrameSetState.d.ts +3 -0
  790. package/dist/src/vc-input/utils/commonUtils.d.ts +8 -0
  791. package/dist/src/vc-input/utils/types.d.ts +2 -0
  792. package/dist/src/vc-mentions/index.d.ts +4 -0
  793. package/dist/src/vc-mentions/src/DropdownMenu.d.ts +18 -0
  794. package/dist/src/vc-mentions/src/KeywordTrigger.d.ts +46 -0
  795. package/dist/src/vc-mentions/src/MentionsContext.d.ts +12 -0
  796. package/dist/src/vc-mentions/src/Option.d.ts +68 -0
  797. package/dist/src/vc-mentions/src/util.d.ts +35 -0
  798. package/dist/src/vc-notification/HookNotification.d.ts +56 -0
  799. package/dist/src/vc-notification/Notice.d.ts +22 -0
  800. package/dist/src/vc-notification/Notification.d.ts +55 -0
  801. package/dist/src/vc-notification/index.d.ts +4 -0
  802. package/dist/src/vc-notification/useNotification.d.ts +32 -0
  803. package/dist/src/vc-overflow/context.d.ts +25 -0
  804. package/dist/src/vc-overflow/index.d.ts +3 -0
  805. package/dist/src/vc-pagination/KeyCode.d.ts +12 -0
  806. package/dist/src/vc-pagination/index.d.ts +1 -0
  807. package/dist/src/vc-pagination/locale/ar_EG.d.ts +13 -0
  808. package/dist/src/vc-pagination/locale/az_AZ.d.ts +13 -0
  809. package/dist/src/vc-pagination/locale/bg_BG.d.ts +13 -0
  810. package/dist/src/vc-pagination/locale/bn_BD.d.ts +13 -0
  811. package/dist/src/vc-pagination/locale/by_BY.d.ts +13 -0
  812. package/dist/src/vc-pagination/locale/ca_ES.d.ts +13 -0
  813. package/dist/src/vc-pagination/locale/cs_CZ.d.ts +13 -0
  814. package/dist/src/vc-pagination/locale/da_DK.d.ts +13 -0
  815. package/dist/src/vc-pagination/locale/de_DE.d.ts +13 -0
  816. package/dist/src/vc-pagination/locale/el_GR.d.ts +13 -0
  817. package/dist/src/vc-pagination/locale/en_GB.d.ts +13 -0
  818. package/dist/src/vc-pagination/locale/en_US.d.ts +13 -0
  819. package/dist/src/vc-pagination/locale/es_ES.d.ts +13 -0
  820. package/dist/src/vc-pagination/locale/et_EE.d.ts +13 -0
  821. package/dist/src/vc-pagination/locale/fa_IR.d.ts +13 -0
  822. package/dist/src/vc-pagination/locale/fi_FI.d.ts +13 -0
  823. package/dist/src/vc-pagination/locale/fr_BE.d.ts +13 -0
  824. package/dist/src/vc-pagination/locale/fr_CA.d.ts +13 -0
  825. package/dist/src/vc-pagination/locale/fr_FR.d.ts +13 -0
  826. package/dist/src/vc-pagination/locale/ga_IE.d.ts +13 -0
  827. package/dist/src/vc-pagination/locale/gl_ES.d.ts +13 -0
  828. package/dist/src/vc-pagination/locale/he_IL.d.ts +13 -0
  829. package/dist/src/vc-pagination/locale/hi_IN.d.ts +13 -0
  830. package/dist/src/vc-pagination/locale/hr_HR.d.ts +13 -0
  831. package/dist/src/vc-pagination/locale/hu_HU.d.ts +13 -0
  832. package/dist/src/vc-pagination/locale/id_ID.d.ts +13 -0
  833. package/dist/src/vc-pagination/locale/is_IS.d.ts +13 -0
  834. package/dist/src/vc-pagination/locale/it_IT.d.ts +13 -0
  835. package/dist/src/vc-pagination/locale/ja_JP.d.ts +13 -0
  836. package/dist/src/vc-pagination/locale/ka_GE.d.ts +13 -0
  837. package/dist/src/vc-pagination/locale/kk_KZ.d.ts +13 -0
  838. package/dist/src/vc-pagination/locale/km_KH.d.ts +13 -0
  839. package/dist/src/vc-pagination/locale/kmr_IQ.d.ts +13 -0
  840. package/dist/src/vc-pagination/locale/kn_IN.d.ts +13 -0
  841. package/dist/src/vc-pagination/locale/ko_KR.d.ts +13 -0
  842. package/dist/src/vc-pagination/locale/lt_LT.d.ts +13 -0
  843. package/dist/src/vc-pagination/locale/lv_LV.d.ts +13 -0
  844. package/dist/src/vc-pagination/locale/mk_MK.d.ts +13 -0
  845. package/dist/src/vc-pagination/locale/ml_IN.d.ts +13 -0
  846. package/dist/src/vc-pagination/locale/mm_MM.d.ts +13 -0
  847. package/dist/src/vc-pagination/locale/mn_MN.d.ts +13 -0
  848. package/dist/src/vc-pagination/locale/ms_MY.d.ts +13 -0
  849. package/dist/src/vc-pagination/locale/nb_NO.d.ts +12 -0
  850. package/dist/src/vc-pagination/locale/nl_BE.d.ts +13 -0
  851. package/dist/src/vc-pagination/locale/nl_NL.d.ts +13 -0
  852. package/dist/src/vc-pagination/locale/pa_IN.d.ts +13 -0
  853. package/dist/src/vc-pagination/locale/pb_IN.d.ts +13 -0
  854. package/dist/src/vc-pagination/locale/pl_PL.d.ts +13 -0
  855. package/dist/src/vc-pagination/locale/pt_BR.d.ts +13 -0
  856. package/dist/src/vc-pagination/locale/pt_PT.d.ts +13 -0
  857. package/dist/src/vc-pagination/locale/ro_RO.d.ts +13 -0
  858. package/dist/src/vc-pagination/locale/ru_RU.d.ts +13 -0
  859. package/dist/src/vc-pagination/locale/sk_SK.d.ts +13 -0
  860. package/dist/src/vc-pagination/locale/sl_SI.d.ts +13 -0
  861. package/dist/src/vc-pagination/locale/sr_RS.d.ts +12 -0
  862. package/dist/src/vc-pagination/locale/sv_SE.d.ts +13 -0
  863. package/dist/src/vc-pagination/locale/ta_IN.d.ts +13 -0
  864. package/dist/src/vc-pagination/locale/th_TH.d.ts +13 -0
  865. package/dist/src/vc-pagination/locale/tr_TR.d.ts +13 -0
  866. package/dist/src/vc-pagination/locale/ug_CN.d.ts +13 -0
  867. package/dist/src/vc-pagination/locale/uk_UA.d.ts +13 -0
  868. package/dist/src/vc-pagination/locale/ur_PK.d.ts +13 -0
  869. package/dist/src/vc-pagination/locale/vi_VN.d.ts +13 -0
  870. package/dist/src/vc-pagination/locale/zh_CN.d.ts +13 -0
  871. package/dist/src/vc-pagination/locale/zh_TW.d.ts +13 -0
  872. package/dist/src/vc-picker/PanelContext.d.ts +26 -0
  873. package/dist/src/vc-picker/Picker.d.ts +74 -0
  874. package/dist/src/vc-picker/PickerPanel.d.ts +56 -0
  875. package/dist/src/vc-picker/PickerTrigger.d.ts +19 -0
  876. package/dist/src/vc-picker/PresetPanel.d.ts +21 -0
  877. package/dist/src/vc-picker/RangeContext.d.ts +41 -0
  878. package/dist/src/vc-picker/RangePicker.d.ts +68 -0
  879. package/dist/src/vc-picker/generate/dateFns.d.ts +3 -0
  880. package/dist/src/vc-picker/generate/dayjs.d.ts +4 -0
  881. package/dist/src/vc-picker/generate/index.d.ts +37 -0
  882. package/dist/src/vc-picker/generate/moment.d.ts +4 -0
  883. package/dist/src/vc-picker/hooks/useCellClassName.d.ts +15 -0
  884. package/dist/src/vc-picker/hooks/useHoverValue.d.ts +3 -0
  885. package/dist/src/vc-picker/hooks/useMergeProps.d.ts +2 -0
  886. package/dist/src/vc-picker/hooks/usePickerInput.d.ts +18 -0
  887. package/dist/src/vc-picker/hooks/usePresets.d.ts +3 -0
  888. package/dist/src/vc-picker/hooks/useRangeDisabled.d.ts +13 -0
  889. package/dist/src/vc-picker/hooks/useRangeViewDates.d.ts +9 -0
  890. package/dist/src/vc-picker/hooks/useTextValueMapping.d.ts +6 -0
  891. package/dist/src/vc-picker/hooks/useValueTexts.d.ts +9 -0
  892. package/dist/src/vc-picker/index.d.ts +6 -0
  893. package/dist/src/vc-picker/interface.d.ts +87 -0
  894. package/dist/src/vc-picker/locale/ar_EG.d.ts +3 -0
  895. package/dist/src/vc-picker/locale/az_AZ.d.ts +3 -0
  896. package/dist/src/vc-picker/locale/bg_BG.d.ts +3 -0
  897. package/dist/src/vc-picker/locale/bn_BD.d.ts +3 -0
  898. package/dist/src/vc-picker/locale/by_BY.d.ts +3 -0
  899. package/dist/src/vc-picker/locale/ca_ES.d.ts +3 -0
  900. package/dist/src/vc-picker/locale/cs_CZ.d.ts +3 -0
  901. package/dist/src/vc-picker/locale/da_DK.d.ts +3 -0
  902. package/dist/src/vc-picker/locale/de_DE.d.ts +3 -0
  903. package/dist/src/vc-picker/locale/el_GR.d.ts +3 -0
  904. package/dist/src/vc-picker/locale/en_GB.d.ts +3 -0
  905. package/dist/src/vc-picker/locale/en_US.d.ts +3 -0
  906. package/dist/src/vc-picker/locale/es_ES.d.ts +3 -0
  907. package/dist/src/vc-picker/locale/es_MX.d.ts +3 -0
  908. package/dist/src/vc-picker/locale/et_EE.d.ts +3 -0
  909. package/dist/src/vc-picker/locale/fa_IR.d.ts +3 -0
  910. package/dist/src/vc-picker/locale/fi_FI.d.ts +3 -0
  911. package/dist/src/vc-picker/locale/fr_BE.d.ts +3 -0
  912. package/dist/src/vc-picker/locale/fr_CA.d.ts +3 -0
  913. package/dist/src/vc-picker/locale/fr_FR.d.ts +3 -0
  914. package/dist/src/vc-picker/locale/ga_IE.d.ts +3 -0
  915. package/dist/src/vc-picker/locale/gl_ES.d.ts +3 -0
  916. package/dist/src/vc-picker/locale/he_IL.d.ts +3 -0
  917. package/dist/src/vc-picker/locale/hi_IN.d.ts +3 -0
  918. package/dist/src/vc-picker/locale/hr_HR.d.ts +3 -0
  919. package/dist/src/vc-picker/locale/hu_HU.d.ts +3 -0
  920. package/dist/src/vc-picker/locale/id_ID.d.ts +3 -0
  921. package/dist/src/vc-picker/locale/is_IS.d.ts +3 -0
  922. package/dist/src/vc-picker/locale/it_IT.d.ts +3 -0
  923. package/dist/src/vc-picker/locale/ja_JP.d.ts +3 -0
  924. package/dist/src/vc-picker/locale/ka_GE.d.ts +3 -0
  925. package/dist/src/vc-picker/locale/kk_KZ.d.ts +3 -0
  926. package/dist/src/vc-picker/locale/km_KH.d.ts +3 -0
  927. package/dist/src/vc-picker/locale/kmr_IQ.d.ts +3 -0
  928. package/dist/src/vc-picker/locale/kn_IN.d.ts +3 -0
  929. package/dist/src/vc-picker/locale/ko_KR.d.ts +3 -0
  930. package/dist/src/vc-picker/locale/lt_LT.d.ts +3 -0
  931. package/dist/src/vc-picker/locale/lv_LV.d.ts +3 -0
  932. package/dist/src/vc-picker/locale/mk_MK.d.ts +3 -0
  933. package/dist/src/vc-picker/locale/ml_IN.d.ts +3 -0
  934. package/dist/src/vc-picker/locale/mm_MM.d.ts +3 -0
  935. package/dist/src/vc-picker/locale/mn_MN.d.ts +3 -0
  936. package/dist/src/vc-picker/locale/ms_MY.d.ts +3 -0
  937. package/dist/src/vc-picker/locale/nb_NO.d.ts +3 -0
  938. package/dist/src/vc-picker/locale/nl_BE.d.ts +3 -0
  939. package/dist/src/vc-picker/locale/nl_NL.d.ts +3 -0
  940. package/dist/src/vc-picker/locale/pl_PL.d.ts +3 -0
  941. package/dist/src/vc-picker/locale/pt_BR.d.ts +3 -0
  942. package/dist/src/vc-picker/locale/pt_PT.d.ts +3 -0
  943. package/dist/src/vc-picker/locale/ro_RO.d.ts +3 -0
  944. package/dist/src/vc-picker/locale/ru_RU.d.ts +3 -0
  945. package/dist/src/vc-picker/locale/sk_SK.d.ts +3 -0
  946. package/dist/src/vc-picker/locale/sl_SI.d.ts +3 -0
  947. package/dist/src/vc-picker/locale/sr_RS.d.ts +3 -0
  948. package/dist/src/vc-picker/locale/sv_SE.d.ts +3 -0
  949. package/dist/src/vc-picker/locale/ta_IN.d.ts +3 -0
  950. package/dist/src/vc-picker/locale/th_TH.d.ts +3 -0
  951. package/dist/src/vc-picker/locale/tr_TR.d.ts +3 -0
  952. package/dist/src/vc-picker/locale/ug_CN.d.ts +3 -0
  953. package/dist/src/vc-picker/locale/uk_UA.d.ts +3 -0
  954. package/dist/src/vc-picker/locale/ur_PK.d.ts +3 -0
  955. package/dist/src/vc-picker/locale/vi_VN.d.ts +3 -0
  956. package/dist/src/vc-picker/locale/zh_CN.d.ts +3 -0
  957. package/dist/src/vc-picker/locale/zh_TW.d.ts +3 -0
  958. package/dist/src/vc-picker/panels/DatePanel/DateBody.d.ts +29 -0
  959. package/dist/src/vc-picker/panels/DatePanel/DateHeader.d.ts +21 -0
  960. package/dist/src/vc-picker/panels/DatePanel/index.d.ts +15 -0
  961. package/dist/src/vc-picker/panels/DatetimePanel/index.d.ts +14 -0
  962. package/dist/src/vc-picker/panels/DecadePanel/DecadeBody.d.ts +15 -0
  963. package/dist/src/vc-picker/panels/DecadePanel/DecadeHeader.d.ts +14 -0
  964. package/dist/src/vc-picker/panels/DecadePanel/index.d.ts +10 -0
  965. package/dist/src/vc-picker/panels/Header.d.ts +25 -0
  966. package/dist/src/vc-picker/panels/MonthPanel/MonthBody.d.ts +24 -0
  967. package/dist/src/vc-picker/panels/MonthPanel/MonthHeader.d.ts +17 -0
  968. package/dist/src/vc-picker/panels/MonthPanel/index.d.ts +11 -0
  969. package/dist/src/vc-picker/panels/PanelBody.d.ts +27 -0
  970. package/dist/src/vc-picker/panels/QuarterPanel/QuarterBody.d.ts +18 -0
  971. package/dist/src/vc-picker/panels/QuarterPanel/QuarterHeader.d.ts +17 -0
  972. package/dist/src/vc-picker/panels/QuarterPanel/index.d.ts +8 -0
  973. package/dist/src/vc-picker/panels/TimePanel/TimeBody.d.ts +56 -0
  974. package/dist/src/vc-picker/panels/TimePanel/TimeHeader.d.ts +15 -0
  975. package/dist/src/vc-picker/panels/TimePanel/TimeUnitColumn.d.ts +30 -0
  976. package/dist/src/vc-picker/panels/TimePanel/index.d.ts +31 -0
  977. package/dist/src/vc-picker/panels/WeekPanel/index.d.ts +8 -0
  978. package/dist/src/vc-picker/panels/YearPanel/YearBody.d.ts +18 -0
  979. package/dist/src/vc-picker/panels/YearPanel/YearHeader.d.ts +16 -0
  980. package/dist/src/vc-picker/panels/YearPanel/index.d.ts +11 -0
  981. package/dist/src/vc-picker/utils/dateUtil.d.ts +33 -0
  982. package/dist/src/vc-picker/utils/getExtraFooter.d.ts +2 -0
  983. package/dist/src/vc-picker/utils/getRanges.d.ts +12 -0
  984. package/dist/src/vc-picker/utils/miscUtil.d.ts +8 -0
  985. package/dist/src/vc-picker/utils/timeUtil.d.ts +6 -0
  986. package/dist/src/vc-picker/utils/uiUtil.d.ts +21 -0
  987. package/dist/src/vc-picker/utils/warnUtil.d.ts +5 -0
  988. package/dist/src/vc-progress/index.d.ts +4 -0
  989. package/dist/src/vc-progress/src/Circle.d.ts +42 -0
  990. package/dist/src/vc-progress/src/Line.d.ts +42 -0
  991. package/dist/src/vc-progress/src/common.d.ts +5 -0
  992. package/dist/src/vc-progress/src/index.d.ts +87 -0
  993. package/dist/src/vc-progress/src/types.d.ts +25 -0
  994. package/dist/src/vc-resize-observer/index.d.ts +25 -0
  995. package/dist/src/vc-select/OptGroup.d.ts +9 -0
  996. package/dist/src/vc-select/Option.d.ts +12 -0
  997. package/dist/src/vc-select/OptionList.d.ts +14 -0
  998. package/dist/src/vc-select/SelectContext.d.ts +19 -0
  999. package/dist/src/vc-select/SelectTrigger.d.ts +34 -0
  1000. package/dist/src/vc-select/Selector/MultipleSelector.d.ts +18 -0
  1001. package/dist/src/vc-select/Selector/SingleSelector.d.ts +11 -0
  1002. package/dist/src/vc-select/Selector/index.d.ts +48 -0
  1003. package/dist/src/vc-select/Selector/interface.d.ts +26 -0
  1004. package/dist/src/vc-select/TransBtn.d.ts +14 -0
  1005. package/dist/src/vc-select/hooks/useBaseProps.d.ts +8 -0
  1006. package/dist/src/vc-select/hooks/useCache.d.ts +8 -0
  1007. package/dist/src/vc-select/hooks/useDelayReset.d.ts +6 -0
  1008. package/dist/src/vc-select/hooks/useFilterOptions.d.ts +4 -0
  1009. package/dist/src/vc-select/hooks/useId.d.ts +6 -0
  1010. package/dist/src/vc-select/hooks/useLock.d.ts +7 -0
  1011. package/dist/src/vc-select/hooks/useOptions.d.ts +11 -0
  1012. package/dist/src/vc-select/hooks/useSelectTriggerControl.d.ts +2 -0
  1013. package/dist/src/vc-select/index.d.ts +8 -0
  1014. package/dist/src/vc-select/interface.d.ts +10 -0
  1015. package/dist/src/vc-select/utils/commonUtil.d.ts +4 -0
  1016. package/dist/src/vc-select/utils/keyUtil.d.ts +2 -0
  1017. package/dist/src/vc-select/utils/legacyUtil.d.ts +3 -0
  1018. package/dist/src/vc-select/utils/platformUtil.d.ts +1 -0
  1019. package/dist/src/vc-select/utils/valueUtil.d.ts +21 -0
  1020. package/dist/src/vc-select/utils/warningPropsUtil.d.ts +3 -0
  1021. package/dist/src/vc-slider/index.d.ts +2 -0
  1022. package/dist/src/vc-slider/src/Handle.d.ts +70 -0
  1023. package/dist/src/vc-slider/src/common/Marks.d.ts +5 -0
  1024. package/dist/src/vc-slider/src/common/Steps.d.ts +7 -0
  1025. package/dist/src/vc-slider/src/common/Track.d.ts +7 -0
  1026. package/dist/src/vc-slider/src/index.d.ts +5 -0
  1027. package/dist/src/vc-slider/src/utils.d.ts +26 -0
  1028. package/dist/src/vc-steps/index.d.ts +4 -0
  1029. package/dist/src/vc-steps/interface.d.ts +15 -0
  1030. package/dist/src/vc-table/Body/BodyRow.d.ts +19 -0
  1031. package/dist/src/vc-table/Body/ExpandedRow.d.ts +12 -0
  1032. package/dist/src/vc-table/Body/MeasureCell.d.ts +8 -0
  1033. package/dist/src/vc-table/Body/index.d.ts +13 -0
  1034. package/dist/src/vc-table/Cell/index.d.ts +82 -0
  1035. package/dist/src/vc-table/ColGroup.d.ts +8 -0
  1036. package/dist/src/vc-table/FixedHolder/index.d.ts +19 -0
  1037. package/dist/src/vc-table/Footer/Cell.d.ts +20 -0
  1038. package/dist/src/vc-table/Footer/Row.d.ts +3 -0
  1039. package/dist/src/vc-table/Footer/Summary.d.ts +6 -0
  1040. package/dist/src/vc-table/Footer/index.d.ts +14 -0
  1041. package/dist/src/vc-table/Header/DragHandle.d.ts +44 -0
  1042. package/dist/src/vc-table/Header/Header.d.ts +10 -0
  1043. package/dist/src/vc-table/Header/HeaderRow.d.ts +13 -0
  1044. package/dist/src/vc-table/Panel/index.d.ts +7 -0
  1045. package/dist/src/vc-table/Table.d.ts +148 -0
  1046. package/dist/src/vc-table/constant.d.ts +1 -0
  1047. package/dist/src/vc-table/context/BodyContext.d.ts +19 -0
  1048. package/dist/src/vc-table/context/ExpandedRowContext.d.ts +10 -0
  1049. package/dist/src/vc-table/context/HoverContext.d.ts +9 -0
  1050. package/dist/src/vc-table/context/ResizeContext.d.ts +9 -0
  1051. package/dist/src/vc-table/context/StickyContext.d.ts +3 -0
  1052. package/dist/src/vc-table/context/SummaryContext.d.ts +14 -0
  1053. package/dist/src/vc-table/context/TableContext.d.ts +16 -0
  1054. package/dist/src/vc-table/hooks/useColumns.d.ts +21 -0
  1055. package/dist/src/vc-table/hooks/useFlattenRecords.d.ts +22 -0
  1056. package/dist/src/vc-table/hooks/useFrame.d.ts +5 -0
  1057. package/dist/src/vc-table/hooks/useSticky.d.ts +11 -0
  1058. package/dist/src/vc-table/hooks/useStickyOffsets.d.ts +7 -0
  1059. package/dist/src/vc-table/index.d.ts +8 -0
  1060. package/dist/src/vc-table/interface.d.ts +177 -0
  1061. package/dist/src/vc-table/stickyScrollBar.d.ts +15 -0
  1062. package/dist/src/vc-table/sugar/Column.d.ts +11 -0
  1063. package/dist/src/vc-table/sugar/ColumnGroup.d.ts +11 -0
  1064. package/dist/src/vc-table/utils/expandUtil.d.ts +3 -0
  1065. package/dist/src/vc-table/utils/fixUtil.d.ts +13 -0
  1066. package/dist/src/vc-table/utils/legacyUtil.d.ts +10 -0
  1067. package/dist/src/vc-table/utils/valueUtil.d.ts +10 -0
  1068. package/dist/src/vc-tooltip/index.d.ts +2 -0
  1069. package/dist/src/vc-tooltip/src/placements.d.ts +111 -0
  1070. package/dist/src/vc-tour/Mask.d.ts +93 -0
  1071. package/dist/src/vc-tour/TourStep/DefaultPanel.d.ts +174 -0
  1072. package/dist/src/vc-tour/TourStep/index.d.ts +174 -0
  1073. package/dist/src/vc-tour/hooks/useTarget.d.ts +14 -0
  1074. package/dist/src/vc-tour/index.d.ts +6 -0
  1075. package/dist/src/vc-tour/interface.d.ts +128 -0
  1076. package/dist/src/vc-tour/placements.d.ts +4 -0
  1077. package/dist/src/vc-tour/util.d.ts +1 -0
  1078. package/dist/src/vc-tree/DropIndicator.d.ts +5 -0
  1079. package/dist/src/vc-tree/Indent.d.ts +8 -0
  1080. package/dist/src/vc-tree/NodeList.d.ts +137 -0
  1081. package/dist/src/vc-tree/contextTypes.d.ts +109 -0
  1082. package/dist/src/vc-tree/index.d.ts +7 -0
  1083. package/dist/src/vc-tree/interface.d.ts +83 -0
  1084. package/dist/src/vc-tree/useMaxLevel.d.ts +6 -0
  1085. package/dist/src/vc-tree/util.d.ts +51 -0
  1086. package/dist/src/vc-tree/utils/conductUtil.d.ts +17 -0
  1087. package/dist/src/vc-tree/utils/diffUtil.d.ts +6 -0
  1088. package/dist/src/vc-tree/utils/treeUtil.d.ts +89 -0
  1089. package/dist/src/vc-tree-select/LegacyContext.d.ts +30 -0
  1090. package/dist/src/vc-tree-select/OptionList.d.ts +3 -0
  1091. package/dist/src/vc-tree-select/TreeNode.d.ts +10 -0
  1092. package/dist/src/vc-tree-select/TreeSelectContext.d.ts +14 -0
  1093. package/dist/src/vc-tree-select/hooks/useCache.d.ts +8 -0
  1094. package/dist/src/vc-tree-select/hooks/useCheckedKeys.d.ts +6 -0
  1095. package/dist/src/vc-tree-select/hooks/useDataEntities.d.ts +9 -0
  1096. package/dist/src/vc-tree-select/hooks/useFilterTreeData.d.ts +8 -0
  1097. package/dist/src/vc-tree-select/hooks/useTreeData.d.ts +9 -0
  1098. package/dist/src/vc-tree-select/index.d.ts +6 -0
  1099. package/dist/src/vc-tree-select/interface.d.ts +82 -0
  1100. package/dist/src/vc-tree-select/utils/legacyUtil.d.ts +6 -0
  1101. package/dist/src/vc-tree-select/utils/strategyUtil.d.ts +8 -0
  1102. package/dist/src/vc-tree-select/utils/valueUtil.d.ts +13 -0
  1103. package/dist/src/vc-tree-select/utils/warningPropsUtil.d.ts +5 -0
  1104. package/dist/src/vc-trigger/Popup/Mask.d.ts +14 -0
  1105. package/dist/src/vc-trigger/Popup/MobilePopupInner.d.ts +105 -0
  1106. package/dist/src/vc-trigger/Popup/PopupInner.d.ts +99 -0
  1107. package/dist/src/vc-trigger/Popup/index.d.ts +106 -0
  1108. package/dist/src/vc-trigger/Popup/interface.d.ts +151 -0
  1109. package/dist/src/vc-trigger/Popup/useStretchStyle.d.ts +4 -0
  1110. package/dist/src/vc-trigger/Popup/useVisibleStatus.d.ts +15 -0
  1111. package/dist/src/vc-trigger/context.d.ts +11 -0
  1112. package/dist/src/vc-trigger/index.d.ts +5 -0
  1113. package/dist/src/vc-trigger/utils/alignUtil.d.ts +3 -0
  1114. package/dist/src/vc-trigger/utils/motionUtil.d.ts +12 -0
  1115. package/dist/src/vc-upload/AjaxUploader.d.ts +109 -0
  1116. package/dist/src/vc-upload/Upload.d.ts +109 -0
  1117. package/dist/src/vc-upload/attr-accept.d.ts +3 -0
  1118. package/dist/src/vc-upload/index.d.ts +4 -0
  1119. package/dist/src/vc-upload/interface.d.ts +79 -0
  1120. package/dist/src/vc-upload/request.d.ts +4 -0
  1121. package/dist/src/vc-upload/traverseFileTree.d.ts +14 -0
  1122. package/dist/src/vc-upload/uid.d.ts +1 -0
  1123. package/dist/src/vc-util/Children/toArray.d.ts +4 -0
  1124. package/dist/src/vc-util/Dom/contains.d.ts +1 -0
  1125. package/dist/src/vc-util/Dom/css.d.ts +22 -0
  1126. package/dist/src/vc-util/Dom/dynamicCSS.d.ts +20 -0
  1127. package/dist/src/vc-util/Dom/isVisible.d.ts +2 -0
  1128. package/dist/src/vc-util/Dom/scrollLocker.d.ts +12 -0
  1129. package/dist/src/vc-util/devWarning.d.ts +4 -0
  1130. package/dist/src/vc-util/get.d.ts +1 -0
  1131. package/dist/src/vc-util/isEqual.d.ts +9 -0
  1132. package/dist/src/vc-util/isMobile.d.ts +2 -0
  1133. package/dist/src/vc-util/set.d.ts +1 -0
  1134. package/dist/src/vc-util/warning.d.ts +7 -0
  1135. package/dist/src/vc-virtual-list/Filler.d.ts +11 -0
  1136. package/dist/src/vc-virtual-list/Item.d.ts +6 -0
  1137. package/dist/src/vc-virtual-list/ScrollBar.d.ts +58 -0
  1138. package/dist/src/vc-virtual-list/hooks/useFrameWheel.d.ts +7 -0
  1139. package/dist/src/vc-virtual-list/hooks/useHeights.d.ts +4 -0
  1140. package/dist/src/vc-virtual-list/hooks/useMobileTouchMove.d.ts +2 -0
  1141. package/dist/src/vc-virtual-list/hooks/useOriginScroll.d.ts +3 -0
  1142. package/dist/src/vc-virtual-list/hooks/useScrollTo.d.ts +4 -0
  1143. package/dist/src/vc-virtual-list/index.d.ts +2 -0
  1144. package/dist/src/vc-virtual-list/interface.d.ts +9 -0
  1145. package/dist/src/vc-virtual-list/utils/isFirefox.d.ts +2 -0
  1146. package/dist/src/watermark/index.d.ts +131 -0
  1147. package/dist/src/watermark/utils.d.ts +10 -0
  1148. package/package.json +70 -0
@@ -0,0 +1,109 @@
1
+ import { RcFile, Action, UploadRequestMethod, UploadRequestHeader, BeforeUploadFileType, UploadProgressEvent, UploadRequestOption } from './interface';
2
+ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ capture: PropType<boolean | "user" | "environment">;
5
+ multipart: {
6
+ type: BooleanConstructor;
7
+ default: undefined;
8
+ };
9
+ name: StringConstructor;
10
+ disabled: {
11
+ type: BooleanConstructor;
12
+ default: undefined;
13
+ };
14
+ componentTag: PropType<any>;
15
+ action: PropType<Action>;
16
+ method: PropType<UploadRequestMethod>;
17
+ directory: {
18
+ type: BooleanConstructor;
19
+ default: undefined;
20
+ };
21
+ data: PropType<Record<string, unknown> | ((file: RcFile | string | Blob) => Record<string, unknown>)>;
22
+ headers: PropType<UploadRequestHeader>;
23
+ accept: StringConstructor;
24
+ multiple: {
25
+ type: BooleanConstructor;
26
+ default: undefined;
27
+ };
28
+ onBatchStart: PropType<(fileList: {
29
+ file: RcFile;
30
+ parsedFile: Exclude< BeforeUploadFileType, boolean>;
31
+ }[]) => void>;
32
+ onReject: PropType<(fileList: RcFile[]) => void>;
33
+ onStart: PropType<(file: RcFile) => void>;
34
+ onError: PropType<(error: Error, ret: Record<string, unknown>, file: RcFile) => void>;
35
+ onSuccess: PropType<(response: Record<string, unknown>, file: RcFile, xhr: XMLHttpRequest) => void>;
36
+ onProgress: PropType<(event: UploadProgressEvent, file: RcFile) => void>;
37
+ beforeUpload: PropType<(file: RcFile, FileList: RcFile[]) => BeforeUploadFileType | Promise<void | BeforeUploadFileType>>;
38
+ customRequest: PropType<(option: UploadRequestOption) => void>;
39
+ withCredentials: {
40
+ type: BooleanConstructor;
41
+ default: undefined;
42
+ };
43
+ openFileDialogOnClick: {
44
+ type: BooleanConstructor;
45
+ default: undefined;
46
+ };
47
+ prefixCls: StringConstructor;
48
+ id: StringConstructor;
49
+ onMouseenter: PropType<(e: MouseEvent) => void>;
50
+ onMouseleave: PropType<(e: MouseEvent) => void>;
51
+ onClick: PropType<(e: MouseEvent | KeyboardEvent) => void>;
52
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
53
+ capture: PropType<boolean | "user" | "environment">;
54
+ multipart: {
55
+ type: BooleanConstructor;
56
+ default: undefined;
57
+ };
58
+ name: StringConstructor;
59
+ disabled: {
60
+ type: BooleanConstructor;
61
+ default: undefined;
62
+ };
63
+ componentTag: PropType<any>;
64
+ action: PropType<Action>;
65
+ method: PropType<UploadRequestMethod>;
66
+ directory: {
67
+ type: BooleanConstructor;
68
+ default: undefined;
69
+ };
70
+ data: PropType<Record<string, unknown> | ((file: RcFile | string | Blob) => Record<string, unknown>)>;
71
+ headers: PropType<UploadRequestHeader>;
72
+ accept: StringConstructor;
73
+ multiple: {
74
+ type: BooleanConstructor;
75
+ default: undefined;
76
+ };
77
+ onBatchStart: PropType<(fileList: {
78
+ file: RcFile;
79
+ parsedFile: Exclude< BeforeUploadFileType, boolean>;
80
+ }[]) => void>;
81
+ onReject: PropType<(fileList: RcFile[]) => void>;
82
+ onStart: PropType<(file: RcFile) => void>;
83
+ onError: PropType<(error: Error, ret: Record<string, unknown>, file: RcFile) => void>;
84
+ onSuccess: PropType<(response: Record<string, unknown>, file: RcFile, xhr: XMLHttpRequest) => void>;
85
+ onProgress: PropType<(event: UploadProgressEvent, file: RcFile) => void>;
86
+ beforeUpload: PropType<(file: RcFile, FileList: RcFile[]) => BeforeUploadFileType | Promise<void | BeforeUploadFileType>>;
87
+ customRequest: PropType<(option: UploadRequestOption) => void>;
88
+ withCredentials: {
89
+ type: BooleanConstructor;
90
+ default: undefined;
91
+ };
92
+ openFileDialogOnClick: {
93
+ type: BooleanConstructor;
94
+ default: undefined;
95
+ };
96
+ prefixCls: StringConstructor;
97
+ id: StringConstructor;
98
+ onMouseenter: PropType<(e: MouseEvent) => void>;
99
+ onMouseleave: PropType<(e: MouseEvent) => void>;
100
+ onClick: PropType<(e: MouseEvent | KeyboardEvent) => void>;
101
+ }>> & Readonly<{}>, {
102
+ multiple: boolean;
103
+ disabled: boolean;
104
+ multipart: boolean;
105
+ directory: boolean;
106
+ withCredentials: boolean;
107
+ openFileDialogOnClick: boolean;
108
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
109
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { RcFile } from './interface';
2
+ declare const _default: (file: RcFile, acceptedFiles: string | string[]) => boolean;
3
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as Upload } from './Upload';
2
+ import { UploadProps } from './interface';
3
+ export type { UploadProps };
4
+ export default Upload;
@@ -0,0 +1,79 @@
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ export type BeforeUploadFileType = File | Blob | boolean | string;
3
+ export type Action = string | ((file: RcFile) => string | PromiseLike<string>);
4
+ export declare const uploadProps: () => {
5
+ capture: PropType<boolean | "user" | "environment">;
6
+ multipart: {
7
+ type: BooleanConstructor;
8
+ default: undefined;
9
+ };
10
+ name: StringConstructor;
11
+ disabled: {
12
+ type: BooleanConstructor;
13
+ default: undefined;
14
+ };
15
+ componentTag: PropType<any>;
16
+ action: PropType<Action>;
17
+ method: PropType<UploadRequestMethod>;
18
+ directory: {
19
+ type: BooleanConstructor;
20
+ default: undefined;
21
+ };
22
+ data: PropType<Record<string, unknown> | ((file: RcFile | string | Blob) => Record<string, unknown>)>;
23
+ headers: PropType<UploadRequestHeader>;
24
+ accept: StringConstructor;
25
+ multiple: {
26
+ type: BooleanConstructor;
27
+ default: undefined;
28
+ };
29
+ onBatchStart: PropType<(fileList: {
30
+ file: RcFile;
31
+ parsedFile: Exclude<BeforeUploadFileType, boolean>;
32
+ }[]) => void>;
33
+ onReject: PropType<(fileList: RcFile[]) => void>;
34
+ onStart: PropType<(file: RcFile) => void>;
35
+ onError: PropType<(error: Error, ret: Record<string, unknown>, file: RcFile) => void>;
36
+ onSuccess: PropType<(response: Record<string, unknown>, file: RcFile, xhr: XMLHttpRequest) => void>;
37
+ onProgress: PropType<(event: UploadProgressEvent, file: RcFile) => void>;
38
+ beforeUpload: PropType<(file: RcFile, FileList: RcFile[]) => BeforeUploadFileType | Promise<void | BeforeUploadFileType>>;
39
+ customRequest: PropType<(option: UploadRequestOption) => void>;
40
+ withCredentials: {
41
+ type: BooleanConstructor;
42
+ default: undefined;
43
+ };
44
+ openFileDialogOnClick: {
45
+ type: BooleanConstructor;
46
+ default: undefined;
47
+ };
48
+ prefixCls: StringConstructor;
49
+ id: StringConstructor;
50
+ onMouseenter: PropType<(e: MouseEvent) => void>;
51
+ onMouseleave: PropType<(e: MouseEvent) => void>;
52
+ onClick: PropType<(e: MouseEvent | KeyboardEvent) => void>;
53
+ };
54
+ export type UploadProps = Partial<ExtractPropTypes<ReturnType<typeof uploadProps>>>;
55
+ export interface UploadProgressEvent extends Partial<ProgressEvent> {
56
+ percent?: number;
57
+ }
58
+ export type UploadRequestMethod = 'POST' | 'PUT' | 'PATCH' | 'post' | 'put' | 'patch';
59
+ export type UploadRequestHeader = Record<string, string>;
60
+ export interface UploadRequestError extends Error {
61
+ status?: number;
62
+ method?: UploadRequestMethod;
63
+ url?: string;
64
+ }
65
+ export interface UploadRequestOption<T = any> {
66
+ onProgress?: (event: UploadProgressEvent) => void;
67
+ onError?: (event: UploadRequestError | ProgressEvent, body?: T) => void;
68
+ onSuccess?: (body: T, xhr?: XMLHttpRequest) => void;
69
+ data?: Record<string, unknown>;
70
+ filename?: string;
71
+ file: Exclude<BeforeUploadFileType, File | boolean> | RcFile;
72
+ withCredentials?: boolean;
73
+ action: string;
74
+ headers?: UploadRequestHeader;
75
+ method: UploadRequestMethod;
76
+ }
77
+ export interface RcFile extends File {
78
+ uid: string;
79
+ }
@@ -0,0 +1,4 @@
1
+ import { UploadRequestOption } from './interface';
2
+ export default function upload(option: UploadRequestOption): {
3
+ abort(): void;
4
+ };
@@ -0,0 +1,14 @@
1
+ import { RcFile } from './interface';
2
+ interface InternalDataTransferItem extends DataTransferItem {
3
+ isFile: boolean;
4
+ file: (cd: (file: RcFile & {
5
+ webkitRelativePath?: string;
6
+ }) => void) => void;
7
+ createReader: () => any;
8
+ fullPath: string;
9
+ isDirectory: boolean;
10
+ name: string;
11
+ path: string;
12
+ }
13
+ declare const traverseFileTree: (files: InternalDataTransferItem[], callback: any, isAccepted: any) => void;
14
+ export default traverseFileTree;
@@ -0,0 +1 @@
1
+ export default function uid(): string;
@@ -0,0 +1,4 @@
1
+ export interface Option {
2
+ keepEmpty?: boolean;
3
+ }
4
+ export default function toArray(children: any[], option?: Option): any[];
@@ -0,0 +1 @@
1
+ export default function contains(root: Node | null | undefined, n?: Node): boolean;
@@ -0,0 +1,22 @@
1
+ export declare function get(node: HTMLElement, name: any): {};
2
+ export declare function set(node: HTMLElement, name: any, value: string | number): {};
3
+ export declare function getOuterWidth(el: HTMLElement): number;
4
+ export declare function getOuterHeight(el: HTMLElement): number;
5
+ export declare function getDocSize(): {
6
+ width: number;
7
+ height: number;
8
+ };
9
+ export declare function getClientSize(): {
10
+ width: number;
11
+ height: number;
12
+ };
13
+ export declare function getScroll(): {
14
+ scrollLeft: number;
15
+ scrollTop: number;
16
+ };
17
+ export declare function getOffset(node: any): {
18
+ left: number;
19
+ top: number;
20
+ };
21
+ export declare function styleToString(style: CSSStyleDeclaration): string;
22
+ export declare function styleObjectToString(style: Record<string, string>): string;
@@ -0,0 +1,20 @@
1
+ export type ContainerType = Element | ShadowRoot;
2
+ export type Prepend = boolean | 'queue';
3
+ export type AppendType = 'prependQueue' | 'append' | 'prepend';
4
+ interface Options {
5
+ attachTo?: ContainerType;
6
+ csp?: {
7
+ nonce?: string;
8
+ };
9
+ prepend?: Prepend;
10
+ mark?: string;
11
+ priority?: number;
12
+ }
13
+ export declare function injectCSS(css: string, option?: Options): HTMLStyleElement | null;
14
+ export declare function removeCSS(key: string, option?: Options): void;
15
+ /**
16
+ * manually clear container cache to avoid global cache in unit testes
17
+ */
18
+ export declare function clearContainerCache(): void;
19
+ export declare function updateCSS(css: string, key: string, option?: Options): HTMLStyleElement | null;
20
+ export {};
@@ -0,0 +1,2 @@
1
+ declare const _default: (element: HTMLElement | SVGGraphicsElement) => boolean;
2
+ export default _default;
@@ -0,0 +1,12 @@
1
+ export interface scrollLockOptions {
2
+ container: HTMLElement;
3
+ }
4
+ export default class ScrollLocker {
5
+ private lockTarget;
6
+ private options;
7
+ constructor(options?: scrollLockOptions);
8
+ getContainer: () => HTMLElement | undefined;
9
+ reLock: (options?: scrollLockOptions) => void;
10
+ lock: () => void;
11
+ unLock: () => void;
12
+ }
@@ -0,0 +1,4 @@
1
+ import { resetWarned } from './warning';
2
+ export { resetWarned };
3
+ declare const _default: (valid: boolean, component: string, message: string) => void;
4
+ export default _default;
@@ -0,0 +1 @@
1
+ export default function get(entity: any, path: (string | number)[]): any;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Deeply compares two object literals.
3
+ * @param obj1 object 1
4
+ * @param obj2 object 2
5
+ * @param shallow shallow compare
6
+ * @returns
7
+ */
8
+ declare function isEqual(obj1: any, obj2: any, shallow?: boolean): boolean;
9
+ export default isEqual;
@@ -0,0 +1,2 @@
1
+ declare const _default: () => boolean;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export default function set<Entity = any, Output = Entity, Value = any>(entity: Entity, paths: (string | number)[], value: Value, removeIfUndefined?: boolean): Output;
@@ -0,0 +1,7 @@
1
+ export declare function warning(valid: boolean, message: string): void;
2
+ export declare function note(valid: boolean, message: string): void;
3
+ export declare function resetWarned(): void;
4
+ export declare function call(method: (valid: boolean, message: string) => void, valid: boolean, message: string): void;
5
+ export declare function warningOnce(valid: boolean, message: string): void;
6
+ export declare function noteOnce(valid: boolean, message: string): void;
7
+ export default warningOnce;
@@ -0,0 +1,11 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ interface FillerProps {
3
+ prefixCls?: string;
4
+ /** Virtual filler height. Should be `count * itemMinHeight` */
5
+ height: number;
6
+ /** Set offset of visible items. Should be the top of start item position */
7
+ offset?: number;
8
+ onInnerResize?: () => void;
9
+ }
10
+ declare const Filter: FunctionalComponent<FillerProps>;
11
+ export default Filter;
@@ -0,0 +1,6 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ export interface ItemProps {
3
+ setRef: (element: HTMLElement) => void;
4
+ }
5
+ declare const Item: FunctionalComponent<ItemProps>;
6
+ export default Item;
@@ -0,0 +1,58 @@
1
+ import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ prefixCls: StringConstructor;
4
+ scrollTop: NumberConstructor;
5
+ scrollHeight: NumberConstructor;
6
+ height: NumberConstructor;
7
+ count: NumberConstructor;
8
+ onScroll: {
9
+ type: PropType<(scrollTop: number) => void>;
10
+ };
11
+ onStartMove: {
12
+ type: PropType<() => void>;
13
+ };
14
+ onStopMove: {
15
+ type: PropType<() => void>;
16
+ };
17
+ }>, {
18
+ moveRaf: null;
19
+ scrollbarRef: any;
20
+ thumbRef: any;
21
+ visibleTimeout: null;
22
+ state: {
23
+ dragging: boolean;
24
+ pageY: number | null;
25
+ startTop: number | null;
26
+ visible: boolean;
27
+ };
28
+ }, {}, {}, {
29
+ delayHidden(): void;
30
+ onScrollbarTouchStart(e: TouchEvent): void;
31
+ onContainerMouseDown(e: MouseEvent): void;
32
+ patchEvents(): void;
33
+ removeEvents(): void;
34
+ onMouseDown(e: MouseEvent | TouchEvent): void;
35
+ onMouseMove(e: MouseEvent | TouchEvent): void;
36
+ onMouseUp(): void;
37
+ getSpinHeight(): number;
38
+ getEnableScrollRange(): number;
39
+ getEnableHeightRange(): number;
40
+ getTop(): number;
41
+ showScroll(): boolean;
42
+ }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
43
+ prefixCls: StringConstructor;
44
+ scrollTop: NumberConstructor;
45
+ scrollHeight: NumberConstructor;
46
+ height: NumberConstructor;
47
+ count: NumberConstructor;
48
+ onScroll: {
49
+ type: PropType<(scrollTop: number) => void>;
50
+ };
51
+ onStartMove: {
52
+ type: PropType<() => void>;
53
+ };
54
+ onStopMove: {
55
+ type: PropType<() => void>;
56
+ };
57
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
58
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { Ref } from 'vue';
2
+ interface FireFoxDOMMouseScrollEvent {
3
+ detail: number;
4
+ preventDefault: Function;
5
+ }
6
+ export default function useFrameWheel(inVirtual: Ref<boolean>, isScrollAtTop: Ref<boolean>, isScrollAtBottom: Ref<boolean>, onWheelDelta: (offset: number) => void): [(e: WheelEvent) => void, (e: FireFoxDOMMouseScrollEvent) => void];
7
+ export {};
@@ -0,0 +1,4 @@
1
+ import { Ref, ShallowRef } from 'vue';
2
+ import { GetKey } from '../interface';
3
+ export type CacheMap = Map<any, number>;
4
+ export default function useHeights<T>(mergedData: ShallowRef<any[]>, getKey: GetKey<T>, onItemAdd?: ((item: T) => void) | null, onItemRemove?: ((item: T) => void) | null): [(item: T, instance: HTMLElement) => void, () => void, CacheMap, Ref<symbol>];
@@ -0,0 +1,2 @@
1
+ import { Ref } from 'vue';
2
+ export default function useMobileTouchMove(inVirtual: Ref<boolean>, listRef: Ref<HTMLDivElement | undefined>, callback: (offsetY: number, smoothOffset?: boolean) => boolean): void;
@@ -0,0 +1,3 @@
1
+ import { Ref } from 'vue';
2
+ declare const _default: (isScrollAtTop: Ref<boolean>, isScrollAtBottom: Ref<boolean>) => (deltaY: number, smoothOffset?: boolean) => boolean;
3
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { Ref, ShallowRef } from 'vue';
2
+ import { GetKey } from '../interface';
3
+ import { CacheMap } from './useHeights';
4
+ export default function useScrollTo(containerRef: Ref<Element | undefined>, mergedData: ShallowRef<any[]>, heights: CacheMap, props: any, getKey: GetKey, collectHeight: () => void, syncScrollTop: (newTop: number) => void, triggerFlash: () => void): (arg?: any) => void;
@@ -0,0 +1,2 @@
1
+ import { default as List } from './List';
2
+ export default List;
@@ -0,0 +1,9 @@
1
+ import { CSSProperties, VNodeTypes } from 'vue';
2
+ import { Key } from '../_util/type';
3
+ export type RenderFunc<T> = (item: T, index: number, props: {
4
+ style?: CSSProperties;
5
+ }) => VNodeTypes;
6
+ export interface SharedConfig<T> {
7
+ getKey: (item: T) => Key;
8
+ }
9
+ export type GetKey<T = object> = (item: T) => Key;
@@ -0,0 +1,2 @@
1
+ declare const isFF: boolean;
2
+ export default isFF;
@@ -0,0 +1,131 @@
1
+ import { ExtractPropTypes, PropType, CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ export interface WatermarkFontType {
3
+ color?: string;
4
+ fontSize?: number | string;
5
+ fontWeight?: 'normal' | 'light' | 'weight' | number;
6
+ fontStyle?: 'none' | 'normal' | 'italic' | 'oblique';
7
+ fontFamily?: string;
8
+ }
9
+ export declare const watermarkProps: () => {
10
+ zIndex: NumberConstructor;
11
+ rotate: NumberConstructor;
12
+ width: NumberConstructor;
13
+ height: NumberConstructor;
14
+ image: StringConstructor;
15
+ content: {
16
+ type: PropType<string | string[]>;
17
+ default: string | string[];
18
+ };
19
+ font: {
20
+ type: PropType<WatermarkFontType>;
21
+ default: WatermarkFontType;
22
+ };
23
+ rootClassName: StringConstructor;
24
+ gap: {
25
+ type: PropType<[number, number]>;
26
+ default: [number, number];
27
+ };
28
+ offset: {
29
+ type: PropType<[number, number]>;
30
+ default: [number, number];
31
+ };
32
+ };
33
+ export type WatermarkProps = Partial<ExtractPropTypes<ReturnType<typeof watermarkProps>>>;
34
+ declare const _default: {
35
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<{
36
+ zIndex: NumberConstructor;
37
+ rotate: NumberConstructor;
38
+ width: NumberConstructor;
39
+ height: NumberConstructor;
40
+ image: StringConstructor;
41
+ content: {
42
+ type: PropType<string | string[]>;
43
+ default: string | string[];
44
+ };
45
+ font: {
46
+ type: PropType<WatermarkFontType>;
47
+ default: WatermarkFontType;
48
+ };
49
+ rootClassName: StringConstructor;
50
+ gap: {
51
+ type: PropType<[number, number]>;
52
+ default: [number, number];
53
+ };
54
+ offset: {
55
+ type: PropType<[number, number]>;
56
+ default: [number, number];
57
+ };
58
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
59
+ font: WatermarkFontType;
60
+ content: string | string[];
61
+ gap: [number, number];
62
+ offset: [number, number];
63
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
64
+ P: {};
65
+ B: {};
66
+ D: {};
67
+ C: {};
68
+ M: {};
69
+ Defaults: {};
70
+ }, Readonly<ExtractPropTypes<{
71
+ zIndex: NumberConstructor;
72
+ rotate: NumberConstructor;
73
+ width: NumberConstructor;
74
+ height: NumberConstructor;
75
+ image: StringConstructor;
76
+ content: {
77
+ type: PropType<string | string[]>;
78
+ default: string | string[];
79
+ };
80
+ font: {
81
+ type: PropType<WatermarkFontType>;
82
+ default: WatermarkFontType;
83
+ };
84
+ rootClassName: StringConstructor;
85
+ gap: {
86
+ type: PropType<[number, number]>;
87
+ default: [number, number];
88
+ };
89
+ offset: {
90
+ type: PropType<[number, number]>;
91
+ default: [number, number];
92
+ };
93
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
94
+ font: WatermarkFontType;
95
+ content: string | string[];
96
+ gap: [number, number];
97
+ offset: [number, number];
98
+ }>;
99
+ __isFragment?: never;
100
+ __isTeleport?: never;
101
+ __isSuspense?: never;
102
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes<{
103
+ zIndex: NumberConstructor;
104
+ rotate: NumberConstructor;
105
+ width: NumberConstructor;
106
+ height: NumberConstructor;
107
+ image: StringConstructor;
108
+ content: {
109
+ type: PropType<string | string[]>;
110
+ default: string | string[];
111
+ };
112
+ font: {
113
+ type: PropType<WatermarkFontType>;
114
+ default: WatermarkFontType;
115
+ };
116
+ rootClassName: StringConstructor;
117
+ gap: {
118
+ type: PropType<[number, number]>;
119
+ default: [number, number];
120
+ };
121
+ offset: {
122
+ type: PropType<[number, number]>;
123
+ default: [number, number];
124
+ };
125
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
126
+ font: WatermarkFontType;
127
+ content: string | string[];
128
+ gap: [number, number];
129
+ offset: [number, number];
130
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin;
131
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { CSSProperties } from 'vue';
2
+ /** converting camel-cased strings to be lowercase and link it with Separato */
3
+ export declare function toLowercaseSeparator(key: string): string;
4
+ export declare function getStyleStr(style: CSSProperties): string;
5
+ /** Returns the ratio of the device's physical pixel resolution to the css pixel resolution */
6
+ export declare function getPixelRatio(): number;
7
+ /** Rotate with the watermark as the center point */
8
+ export declare function rotateWatermark(ctx: CanvasRenderingContext2D, rotateX: number, rotateY: number, rotate: number): void;
9
+ /** Whether to re-render the watermark */
10
+ export declare const reRendering: (mutation: MutationRecord, watermarkElement?: HTMLElement) => boolean;