@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,70 @@
1
+ import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { VueTypeDef } from 'vue-types';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ prefixCls: StringConstructor;
5
+ vertical: {
6
+ type: BooleanConstructor;
7
+ default: undefined;
8
+ };
9
+ offset: NumberConstructor;
10
+ disabled: {
11
+ type: BooleanConstructor;
12
+ default: undefined;
13
+ };
14
+ min: NumberConstructor;
15
+ max: NumberConstructor;
16
+ value: NumberConstructor;
17
+ tabindex: VueTypeDef<string | number>;
18
+ reverse: {
19
+ type: BooleanConstructor;
20
+ default: undefined;
21
+ };
22
+ ariaLabel: StringConstructor;
23
+ ariaLabelledBy: StringConstructor;
24
+ ariaValueTextFormatter: FunctionConstructor;
25
+ onMouseenter: {
26
+ type: PropType<(payload: MouseEvent) => void>;
27
+ };
28
+ onMouseleave: {
29
+ type: PropType<(payload: MouseEvent) => void>;
30
+ };
31
+ onMousedown: {
32
+ type: PropType<(payload: MouseEvent) => void>;
33
+ };
34
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
35
+ prefixCls: StringConstructor;
36
+ vertical: {
37
+ type: BooleanConstructor;
38
+ default: undefined;
39
+ };
40
+ offset: NumberConstructor;
41
+ disabled: {
42
+ type: BooleanConstructor;
43
+ default: undefined;
44
+ };
45
+ min: NumberConstructor;
46
+ max: NumberConstructor;
47
+ value: NumberConstructor;
48
+ tabindex: VueTypeDef<string | number>;
49
+ reverse: {
50
+ type: BooleanConstructor;
51
+ default: undefined;
52
+ };
53
+ ariaLabel: StringConstructor;
54
+ ariaLabelledBy: StringConstructor;
55
+ ariaValueTextFormatter: FunctionConstructor;
56
+ onMouseenter: {
57
+ type: PropType<(payload: MouseEvent) => void>;
58
+ };
59
+ onMouseleave: {
60
+ type: PropType<(payload: MouseEvent) => void>;
61
+ };
62
+ onMousedown: {
63
+ type: PropType<(payload: MouseEvent) => void>;
64
+ };
65
+ }>> & Readonly<{}>, {
66
+ reverse: boolean;
67
+ vertical: boolean;
68
+ disabled: boolean;
69
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
70
+ export default _default;
@@ -0,0 +1,5 @@
1
+ declare const Marks: {
2
+ (_: any, { attrs, slots }: any): import("vue/jsx-runtime").JSX.Element;
3
+ inheritAttrs: boolean;
4
+ };
5
+ export default Marks;
@@ -0,0 +1,7 @@
1
+ declare const Steps: {
2
+ (_: any, { attrs }: {
3
+ attrs: any;
4
+ }): import("vue/jsx-runtime").JSX.Element;
5
+ inheritAttrs: boolean;
6
+ };
7
+ export default Steps;
@@ -0,0 +1,7 @@
1
+ declare const Track: {
2
+ (_: any, { attrs }: {
3
+ attrs: any;
4
+ }): import("vue/jsx-runtime").JSX.Element | null;
5
+ inheritAttrs: boolean;
6
+ };
7
+ export default Track;
@@ -0,0 +1,5 @@
1
+ import { default as Handle } from './Handle';
2
+ import { default as Range } from './Range';
3
+ import { default as Slider } from './Slider';
4
+ export default Slider;
5
+ export { Handle, Range };
@@ -0,0 +1,26 @@
1
+ export declare function isEventFromHandle(e: {
2
+ target: HTMLElement;
3
+ }, handles: any): boolean;
4
+ export declare function isValueOutOfRange(value: number, { min, max }: {
5
+ min?: number;
6
+ max?: number;
7
+ }): boolean;
8
+ export declare function isNotTouchEvent(e: TouchEvent): boolean;
9
+ export declare function getClosestPoint(val: number, { marks, step, min, max }: {
10
+ marks: any;
11
+ step: any;
12
+ min: any;
13
+ max: any;
14
+ }): number;
15
+ export declare function getPrecision(step: number): number;
16
+ export declare function getMousePosition(vertical: boolean, e: MouseEvent): number;
17
+ export declare function getTouchPosition(vertical: boolean, e: TouchEvent): number;
18
+ export declare function getHandleCenterPosition(vertical: boolean, handle: HTMLElement): number;
19
+ export declare function ensureValueInRange(val: number, { max, min }: {
20
+ max?: number;
21
+ min?: number;
22
+ }): number | undefined;
23
+ export declare function ensureValuePrecision(val: number, props: any): number;
24
+ export declare function pauseEvent(e: Event): void;
25
+ export declare function calculateNextValue(func: any, value: any, props: any): any;
26
+ export declare function getKeyboardValueMutator(e: KeyboardEvent, vertical: boolean, reverse: boolean): ((_value: any, props: any) => any) | undefined;
@@ -0,0 +1,4 @@
1
+ import { default as Step } from './Step';
2
+ import { default as Steps } from './Steps';
3
+ export { Step };
4
+ export default Steps;
@@ -0,0 +1,15 @@
1
+ export type Status = 'error' | 'process' | 'finish' | 'wait';
2
+ export type StepIconRender = (info: {
3
+ index: number;
4
+ status: Status;
5
+ title: any;
6
+ description: any;
7
+ node: any;
8
+ }) => any;
9
+ export type ProgressDotRender = (info: {
10
+ iconDot: any;
11
+ index: number;
12
+ status: Status;
13
+ title: any;
14
+ description: any;
15
+ }) => any;
@@ -0,0 +1,19 @@
1
+ import { CustomizeComponent, GetComponentProps, GetRowKey, Key } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface BodyRowProps<RecordType> {
4
+ record: RecordType;
5
+ index: number;
6
+ renderIndex: number;
7
+ recordKey: Key;
8
+ expandedKeys: Set<Key>;
9
+ rowComponent: CustomizeComponent;
10
+ cellComponent: CustomizeComponent;
11
+ customRow: GetComponentProps<RecordType>;
12
+ rowExpandable: (record: RecordType) => boolean;
13
+ indent?: number;
14
+ rowKey: Key;
15
+ getRowKey: GetRowKey<RecordType>;
16
+ childrenColumnName: string;
17
+ }
18
+ declare const _default: DefineComponent<BodyRowProps<unknown>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BodyRowProps<unknown>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
@@ -0,0 +1,12 @@
1
+ import { CustomizeComponent } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface ExpandedRowProps {
4
+ prefixCls: string;
5
+ component: CustomizeComponent;
6
+ cellComponent: CustomizeComponent;
7
+ expanded: boolean;
8
+ colSpan: number;
9
+ isEmpty: boolean;
10
+ }
11
+ declare const _default: DefineComponent<ExpandedRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExpandedRowProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Key } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface MeasureCellProps {
4
+ columnKey: Key;
5
+ onColumnResize: (key: Key, width: number) => void;
6
+ }
7
+ declare const _default: DefineComponent<MeasureCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MeasureCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
8
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import { GetComponentProps, GetRowKey, Key } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface BodyProps<RecordType> {
4
+ data: RecordType[];
5
+ getRowKey: GetRowKey<RecordType>;
6
+ measureColumnWidth: boolean;
7
+ expandedKeys: Set<Key>;
8
+ customRow: GetComponentProps<RecordType>;
9
+ rowExpandable: (record: RecordType) => boolean;
10
+ childrenColumnName: string;
11
+ }
12
+ declare const _default: DefineComponent<BodyProps<any>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BodyProps<any>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
13
+ export default _default;
@@ -0,0 +1,82 @@
1
+ import { AdditionalProps, AlignType, CellEllipsisType, ColumnType, CustomizeComponent, DataIndex, DefaultRecordType, TransformCellText } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface CellProps<RecordType = DefaultRecordType> {
4
+ prefixCls?: string;
5
+ record?: RecordType;
6
+ /** `column` index is the real show rowIndex */
7
+ index?: number;
8
+ /** the index of the record. For the render(value, record, renderIndex) */
9
+ renderIndex?: number;
10
+ dataIndex?: DataIndex;
11
+ customRender?: ColumnType<RecordType>['customRender'];
12
+ component?: CustomizeComponent;
13
+ colSpan?: number;
14
+ rowSpan?: number;
15
+ ellipsis?: CellEllipsisType;
16
+ align?: AlignType;
17
+ fixLeft?: number | false;
18
+ fixRight?: number | false;
19
+ firstFixLeft?: boolean;
20
+ lastFixLeft?: boolean;
21
+ firstFixRight?: boolean;
22
+ lastFixRight?: boolean;
23
+ appendNode?: any;
24
+ additionalProps?: AdditionalProps;
25
+ rowType?: 'header' | 'body' | 'footer';
26
+ isSticky?: boolean;
27
+ column?: ColumnType<RecordType>;
28
+ cellType?: 'header' | 'body';
29
+ transformCellText?: TransformCellText<RecordType>;
30
+ }
31
+ declare const _default: DefineComponent<{
32
+ column?: any;
33
+ ellipsis?: any;
34
+ prefixCls?: any;
35
+ align?: any;
36
+ component?: any;
37
+ index?: any;
38
+ colSpan?: any;
39
+ dataIndex?: any;
40
+ customRender?: any;
41
+ rowSpan?: any;
42
+ fixLeft?: any;
43
+ fixRight?: any;
44
+ lastFixLeft?: any;
45
+ firstFixRight?: any;
46
+ lastFixRight?: any;
47
+ firstFixLeft?: any;
48
+ isSticky?: any;
49
+ record?: any;
50
+ renderIndex?: any;
51
+ appendNode?: any;
52
+ additionalProps?: any;
53
+ rowType?: any;
54
+ cellType?: any;
55
+ transformCellText?: any;
56
+ }, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
57
+ column?: any;
58
+ ellipsis?: any;
59
+ prefixCls?: any;
60
+ align?: any;
61
+ component?: any;
62
+ index?: any;
63
+ colSpan?: any;
64
+ dataIndex?: any;
65
+ customRender?: any;
66
+ rowSpan?: any;
67
+ fixLeft?: any;
68
+ fixRight?: any;
69
+ lastFixLeft?: any;
70
+ firstFixRight?: any;
71
+ lastFixRight?: any;
72
+ firstFixLeft?: any;
73
+ isSticky?: any;
74
+ record?: any;
75
+ renderIndex?: any;
76
+ appendNode?: any;
77
+ additionalProps?: any;
78
+ rowType?: any;
79
+ cellType?: any;
80
+ transformCellText?: any;
81
+ }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
82
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { ColumnType } from './interface';
2
+ export interface ColGroupProps<RecordType> {
3
+ colWidths: readonly (number | string)[];
4
+ columns?: readonly ColumnType<RecordType>[];
5
+ columCount?: number;
6
+ }
7
+ declare function ColGroup<RecordType>({ colWidths, columns, columCount }: ColGroupProps<RecordType>): import("vue/jsx-runtime").JSX.Element;
8
+ export default ColGroup;
@@ -0,0 +1,19 @@
1
+ import { HeaderProps } from '../Header/Header';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface FixedHeaderProps<RecordType> extends HeaderProps<RecordType> {
4
+ noData: boolean;
5
+ maxContentScroll: boolean;
6
+ colWidths: readonly number[];
7
+ columCount: number;
8
+ direction: 'ltr' | 'rtl';
9
+ fixHeader: boolean;
10
+ stickyTopOffset?: number;
11
+ stickyBottomOffset?: number;
12
+ stickyClassName?: string;
13
+ onScroll: (info: {
14
+ currentTarget: HTMLDivElement;
15
+ scrollLeft?: number;
16
+ }) => void;
17
+ }
18
+ declare const _default: DefineComponent<FixedHeaderProps<any>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FixedHeaderProps<any>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
@@ -0,0 +1,20 @@
1
+ import { AlignType } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface SummaryCellProps {
4
+ index?: number;
5
+ colSpan?: number;
6
+ rowSpan?: number;
7
+ align?: AlignType;
8
+ }
9
+ declare const _default: DefineComponent<{
10
+ align?: any;
11
+ index?: any;
12
+ colSpan?: any;
13
+ rowSpan?: any;
14
+ }, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
15
+ align?: any;
16
+ index?: any;
17
+ colSpan?: any;
18
+ rowSpan?: any;
19
+ }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
20
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ export interface SummaryProps {
3
+ fixed?: boolean | 'top' | 'bottom';
4
+ }
5
+ declare const Summary: DefineComponent<SummaryProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SummaryProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
6
+ export default Summary;
@@ -0,0 +1,14 @@
1
+ import { FlattenColumns } from '../context/SummaryContext';
2
+ import { DefaultRecordType, StickyOffsets } from '../interface';
3
+ import { default as SummaryCell } from './Cell';
4
+ import { default as SummaryRow } from './Row';
5
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
6
+ import { SummaryProps } from './Summary';
7
+ export interface FooterProps<RecordType = DefaultRecordType> {
8
+ stickyOffsets: StickyOffsets;
9
+ flattenColumns: FlattenColumns<RecordType>;
10
+ }
11
+ declare const _default: DefineComponent<FooterProps<any>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FooterProps<any>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
13
+ export { SummaryCell, SummaryRow };
14
+ export declare const FooterComponents: DefineComponent<SummaryProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< SummaryProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -0,0 +1,44 @@
1
+ import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { ColumnType } from '../interface';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ prefixCls: StringConstructor;
5
+ width: {
6
+ type: NumberConstructor;
7
+ required: true;
8
+ };
9
+ minWidth: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ maxWidth: {
14
+ type: NumberConstructor;
15
+ default: number;
16
+ };
17
+ column: {
18
+ type: PropType<ColumnType<any>>;
19
+ default: ColumnType<any>;
20
+ };
21
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
22
+ prefixCls: StringConstructor;
23
+ width: {
24
+ type: NumberConstructor;
25
+ required: true;
26
+ };
27
+ minWidth: {
28
+ type: NumberConstructor;
29
+ default: number;
30
+ };
31
+ maxWidth: {
32
+ type: NumberConstructor;
33
+ default: number;
34
+ };
35
+ column: {
36
+ type: PropType<ColumnType<any>>;
37
+ default: ColumnType<any>;
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ maxWidth: number;
41
+ minWidth: number;
42
+ column: ColumnType<any>;
43
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
44
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { ColumnType, ColumnsType, DefaultRecordType, GetComponentProps, StickyOffsets } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface HeaderProps<RecordType = DefaultRecordType> {
4
+ columns: ColumnsType<RecordType>;
5
+ flattenColumns: readonly ColumnType<RecordType>[];
6
+ stickyOffsets: StickyOffsets;
7
+ customHeaderRow: GetComponentProps<readonly ColumnType<RecordType>[]>;
8
+ }
9
+ declare const _default: DefineComponent<HeaderProps<any>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<HeaderProps<any>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import { CellType, ColumnType, CustomizeComponent, DefaultRecordType, GetComponentProps, StickyOffsets } from '../interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface RowProps<RecordType = DefaultRecordType> {
4
+ cells: readonly CellType<RecordType>[];
5
+ stickyOffsets: StickyOffsets;
6
+ flattenColumns: readonly ColumnType<RecordType>[];
7
+ rowComponent: CustomizeComponent;
8
+ cellComponent: CustomizeComponent;
9
+ customHeaderRow: GetComponentProps<readonly ColumnType<RecordType>[]>;
10
+ index: number;
11
+ }
12
+ declare const _default: DefineComponent<RowProps<any>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<RowProps<any>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
13
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare function Panel(_: any, { slots }: {
2
+ slots: any;
3
+ }): import("vue/jsx-runtime").JSX.Element;
4
+ declare namespace Panel {
5
+ var displayName: string;
6
+ }
7
+ export default Panel;
@@ -0,0 +1,148 @@
1
+ import { ColumnType, ColumnsType, DefaultRecordType, ExpandedRowRender, GetComponentProps, GetRowKey, Key, PanelRender, RenderExpandIcon, RowClassName, TableComponents, TableLayout, TableSticky, TransformCellText } from './interface';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export declare const INTERNAL_HOOKS = "rc-table-internal-hook";
4
+ export interface TableProps<RecordType = DefaultRecordType> {
5
+ prefixCls?: string;
6
+ data?: RecordType[];
7
+ columns?: ColumnsType<RecordType>;
8
+ rowKey?: string | GetRowKey<RecordType>;
9
+ tableLayout?: TableLayout;
10
+ scroll?: {
11
+ x?: number | true | string;
12
+ y?: number | string;
13
+ };
14
+ rowClassName?: string | RowClassName<RecordType>;
15
+ title?: PanelRender<RecordType>;
16
+ footer?: PanelRender<RecordType>;
17
+ id?: string;
18
+ showHeader?: boolean;
19
+ components?: TableComponents<RecordType>;
20
+ customRow?: GetComponentProps<RecordType>;
21
+ customHeaderRow?: GetComponentProps<ColumnType<RecordType>[]>;
22
+ direction?: 'ltr' | 'rtl';
23
+ expandFixed?: 'left' | 'right' | boolean;
24
+ expandColumnWidth?: number;
25
+ expandedRowKeys?: Key[];
26
+ defaultExpandedRowKeys?: Key[];
27
+ expandedRowRender?: ExpandedRowRender<RecordType>;
28
+ expandRowByClick?: boolean;
29
+ expandIcon?: RenderExpandIcon<RecordType>;
30
+ onExpand?: (expanded: boolean, record: RecordType) => void;
31
+ onExpandedRowsChange?: (expandedKeys: Key[]) => void;
32
+ defaultExpandAllRows?: boolean;
33
+ indentSize?: number;
34
+ expandIconColumnIndex?: number;
35
+ showExpandColumn?: boolean;
36
+ expandedRowClassName?: RowClassName<RecordType>;
37
+ childrenColumnName?: string;
38
+ rowExpandable?: (record: RecordType) => boolean;
39
+ /**
40
+ * @private
41
+ *
42
+ * !!! DO NOT USE IN PRODUCTION ENVIRONMENT !!!
43
+ */
44
+ internalHooks?: string;
45
+ /**
46
+ * @private
47
+ *
48
+ * !!! DO NOT USE IN PRODUCTION ENVIRONMENT !!!
49
+ */
50
+ transformColumns?: (columns: ColumnsType<RecordType>) => ColumnsType<RecordType>;
51
+ /**
52
+ * @private
53
+ *
54
+ * !!! DO NOT USE IN PRODUCTION ENVIRONMENT !!!
55
+ */
56
+ internalRefs?: {
57
+ body: HTMLDivElement;
58
+ };
59
+ sticky?: boolean | TableSticky;
60
+ canExpandable?: boolean;
61
+ onUpdateInternalRefs?: (refs: Record<string, any>) => void;
62
+ transformCellText?: TransformCellText<RecordType>;
63
+ }
64
+ declare const _default: DefineComponent<{
65
+ data?: any;
66
+ footer?: any;
67
+ title?: any;
68
+ components?: any;
69
+ direction?: any;
70
+ tableLayout?: any;
71
+ columns?: any;
72
+ scroll?: any;
73
+ sticky?: any;
74
+ prefixCls?: any;
75
+ rowClassName?: any;
76
+ id?: any;
77
+ onExpand?: any;
78
+ expandIcon?: any;
79
+ expandedRowKeys?: any;
80
+ defaultExpandedRowKeys?: any;
81
+ expandedRowRender?: any;
82
+ expandRowByClick?: any;
83
+ onExpandedRowsChange?: any;
84
+ defaultExpandAllRows?: any;
85
+ indentSize?: any;
86
+ expandIconColumnIndex?: any;
87
+ expandedRowClassName?: any;
88
+ childrenColumnName?: any;
89
+ rowExpandable?: any;
90
+ transformCellText?: any;
91
+ customRow?: any;
92
+ rowKey?: any;
93
+ customHeaderRow?: any;
94
+ expandColumnWidth?: any;
95
+ expandFixed?: any;
96
+ showHeader?: any;
97
+ "onUpdate:expandedRowKeys"?: any;
98
+ transformColumns?: any;
99
+ internalHooks?: any;
100
+ internalRefs?: any;
101
+ canExpandable?: any;
102
+ onUpdateInternalRefs?: any;
103
+ }, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("expand" | "expandedRowsChange" | "updateInternalRefs" | "update:expandedRowKeys")[], "expand" | "expandedRowsChange" | "updateInternalRefs" | "update:expandedRowKeys", PublicProps, Readonly<{
104
+ data?: any;
105
+ footer?: any;
106
+ title?: any;
107
+ components?: any;
108
+ direction?: any;
109
+ tableLayout?: any;
110
+ columns?: any;
111
+ scroll?: any;
112
+ sticky?: any;
113
+ prefixCls?: any;
114
+ rowClassName?: any;
115
+ id?: any;
116
+ onExpand?: any;
117
+ expandIcon?: any;
118
+ expandedRowKeys?: any;
119
+ defaultExpandedRowKeys?: any;
120
+ expandedRowRender?: any;
121
+ expandRowByClick?: any;
122
+ onExpandedRowsChange?: any;
123
+ defaultExpandAllRows?: any;
124
+ indentSize?: any;
125
+ expandIconColumnIndex?: any;
126
+ expandedRowClassName?: any;
127
+ childrenColumnName?: any;
128
+ rowExpandable?: any;
129
+ transformCellText?: any;
130
+ customRow?: any;
131
+ rowKey?: any;
132
+ customHeaderRow?: any;
133
+ expandColumnWidth?: any;
134
+ expandFixed?: any;
135
+ showHeader?: any;
136
+ "onUpdate:expandedRowKeys"?: any;
137
+ transformColumns?: any;
138
+ internalHooks?: any;
139
+ internalRefs?: any;
140
+ canExpandable?: any;
141
+ onUpdateInternalRefs?: any;
142
+ }> & Readonly<{
143
+ onExpand?: ((...args: any[]) => any) | undefined;
144
+ onExpandedRowsChange?: ((...args: any[]) => any) | undefined;
145
+ "onUpdate:expandedRowKeys"?: ((...args: any[]) => any) | undefined;
146
+ onUpdateInternalRefs?: ((...args: any[]) => any) | undefined;
147
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
148
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const EXPAND_COLUMN: {};
@@ -0,0 +1,19 @@
1
+ import { InjectionKey } from 'vue';
2
+ import { ColumnType, ColumnsType, DefaultRecordType, ExpandableType, ExpandedRowRender, RenderExpandIcon, RowClassName, TableLayout, TriggerEventHandler } from '../interface';
3
+ export interface BodyContextProps<RecordType = DefaultRecordType> {
4
+ rowClassName: string | RowClassName<RecordType>;
5
+ expandedRowClassName: RowClassName<RecordType>;
6
+ columns: ColumnsType<RecordType>;
7
+ flattenColumns: readonly ColumnType<RecordType>[];
8
+ tableLayout: TableLayout;
9
+ indentSize: number;
10
+ expandableType: ExpandableType;
11
+ expandRowByClick: boolean;
12
+ expandedRowRender: ExpandedRowRender<RecordType>;
13
+ expandIcon: RenderExpandIcon<RecordType>;
14
+ onTriggerExpand: TriggerEventHandler<RecordType>;
15
+ expandIconColumnIndex: number;
16
+ }
17
+ export declare const BodyContextKey: InjectionKey<BodyContextProps>;
18
+ export declare const useProvideBody: (props: BodyContextProps) => void;
19
+ export declare const useInjectBody: () => BodyContextProps<any>;
@@ -0,0 +1,10 @@
1
+ import { InjectionKey, Ref } from 'vue';
2
+ export interface ExpandedRowProps {
3
+ componentWidth: Ref<number>;
4
+ fixHeader: Ref<boolean>;
5
+ fixColumn: Ref<boolean>;
6
+ horizonScroll: Ref<boolean>;
7
+ }
8
+ export declare const ExpandedRowContextKey: InjectionKey<ExpandedRowProps>;
9
+ export declare const useProvideExpandedRow: (props: ExpandedRowProps) => void;
10
+ export declare const useInjectExpandedRow: () => ExpandedRowProps;
@@ -0,0 +1,9 @@
1
+ import { InjectionKey, Ref } from 'vue';
2
+ export interface HoverContextProps {
3
+ startRow: Ref<number>;
4
+ endRow: Ref<number>;
5
+ onHover: (start: number, end: number) => void;
6
+ }
7
+ export declare const HoverContextKey: InjectionKey<HoverContextProps>;
8
+ export declare const useProvideHover: (props: HoverContextProps) => void;
9
+ export declare const useInjectHover: () => HoverContextProps;
@@ -0,0 +1,9 @@
1
+ import { InjectionKey } from 'vue';
2
+ import { Key } from '../interface';
3
+ interface ResizeContextProps {
4
+ onColumnResize: (columnKey: Key, width: number) => void;
5
+ }
6
+ export declare const ResizeContextKey: InjectionKey<ResizeContextProps>;
7
+ export declare const useProvideResize: (props: ResizeContextProps) => void;
8
+ export declare const useInjectResize: () => ResizeContextProps;
9
+ export {};
@@ -0,0 +1,3 @@
1
+ import { ShallowRef } from 'vue';
2
+ export declare const useProvideSticky: () => void;
3
+ export declare const useInjectSticky: () => ShallowRef<boolean, boolean>;