@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,5 @@
1
+ import { Ref, ComputedRef } from 'vue';
2
+ import { DefaultOptionType, InternalFieldNames, ShowSearchType } from '../Cascader';
3
+ export declare const SEARCH_MARK = "__rc_cascader_search_mark__";
4
+ declare const _default: (search: Ref<string>, options: Ref<DefaultOptionType[]>, fieldNames: Ref<InternalFieldNames>, prefixCls: Ref<string>, config: Ref<ShowSearchType>, changeOnSelect: Ref<boolean>) => ComputedRef<DefaultOptionType[]>;
5
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as Cascader, SHOW_CHILD, SHOW_PARENT, internalCascaderProps as cascaderProps } from './Cascader';
2
+ export type { BaseOptionType, CascaderProps, DefaultOptionType, FieldNames, ShowSearchType, } from './Cascader';
3
+ export { cascaderProps, SHOW_CHILD, SHOW_PARENT };
4
+ export default Cascader;
@@ -0,0 +1,10 @@
1
+ import { DefaultOptionType, FieldNames, InternalFieldNames, SingleValueType } from '../Cascader';
2
+ export declare const VALUE_SPLIT = "__RC_CASCADER_SPLIT__";
3
+ export declare const SHOW_PARENT = "SHOW_PARENT";
4
+ export declare const SHOW_CHILD = "SHOW_CHILD";
5
+ export declare function toPathKey(value: SingleValueType): string;
6
+ export declare function toPathKeys(value: SingleValueType[]): string[];
7
+ export declare function toPathValueStr(pathKey: string): string[];
8
+ export declare function fillFieldNames(fieldNames?: FieldNames): InternalFieldNames;
9
+ export declare function isLeaf(option: DefaultOptionType, fieldNames: FieldNames): any;
10
+ export declare function scrollIntoParentView(element: HTMLElement): void;
@@ -0,0 +1,9 @@
1
+ import { Key } from '../../_util/type';
2
+ import { DefaultOptionType, InternalFieldNames, ShowCheckedStrategy, SingleValueType } from '../Cascader';
3
+ import { OptionsInfo } from '../hooks/useEntities';
4
+ export declare function formatStrategyValues(pathKeys: Key[], keyPathEntities: OptionsInfo['pathKeyEntities'], showCheckedStrategy: ShowCheckedStrategy): Key[];
5
+ export declare function toPathOptions(valueCells: SingleValueType, options: DefaultOptionType[], fieldNames: InternalFieldNames, stringMode?: boolean): {
6
+ value: SingleValueType[number];
7
+ index: number;
8
+ option: DefaultOptionType;
9
+ }[];
@@ -0,0 +1,15 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ prefixCls: StringConstructor;
4
+ visible: BooleanConstructor;
5
+ motionName: StringConstructor;
6
+ maskProps: ObjectConstructor;
7
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
8
+ prefixCls: StringConstructor;
9
+ visible: BooleanConstructor;
10
+ motionName: StringConstructor;
11
+ maskProps: ObjectConstructor;
12
+ }>> & Readonly<{}>, {
13
+ visible: boolean;
14
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
15
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as DialogWrap } from './DialogWrap';
2
+ import { default as dialogProps } from './IDialogPropTypes';
3
+ export { dialogProps };
4
+ export default DialogWrap;
@@ -0,0 +1,6 @@
1
+ export declare function getMotionName(prefixCls: string, transitionName?: string, animationName?: string): string | undefined;
2
+ export declare function getUUID(): number;
3
+ export declare function offset(el: Element): {
4
+ left: number;
5
+ top: number;
6
+ };
@@ -0,0 +1,2 @@
1
+ import { default as Drawer } from './src/DrawerWrapper';
2
+ export default Drawer;
@@ -0,0 +1,163 @@
1
+ import { DefineComponent, ExtractPropTypes, PropType, CSSProperties, TransitionProps, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { VueTypeDef } from 'vue-types';
3
+ import { IPlacement } from './IDrawerPropTypes';
4
+ declare const DrawerWrapper: DefineComponent<ExtractPropTypes<{
5
+ forceRender: {
6
+ type: BooleanConstructor;
7
+ default: undefined;
8
+ };
9
+ getContainer: VueTypeDef<any>;
10
+ prefixCls: StringConstructor;
11
+ width: VueTypeDef<string | number>;
12
+ height: VueTypeDef<string | number>;
13
+ style: {
14
+ type: PropType<CSSProperties>;
15
+ default: CSSProperties;
16
+ };
17
+ class: StringConstructor;
18
+ rootClassName: StringConstructor;
19
+ rootStyle: {
20
+ type: PropType<CSSProperties>;
21
+ default: CSSProperties;
22
+ };
23
+ placement: {
24
+ type: PropType<IPlacement>;
25
+ };
26
+ wrapperClassName: StringConstructor;
27
+ level: {
28
+ type: PropType<string | string[]>;
29
+ };
30
+ levelMove: {
31
+ type: PropType<(number | [number, number]) | ((e: {
32
+ target: HTMLElement;
33
+ open: boolean;
34
+ }) => number | [number, number])>;
35
+ };
36
+ duration: StringConstructor;
37
+ ease: StringConstructor;
38
+ showMask: {
39
+ type: BooleanConstructor;
40
+ default: undefined;
41
+ };
42
+ maskClosable: {
43
+ type: BooleanConstructor;
44
+ default: undefined;
45
+ };
46
+ maskStyle: {
47
+ type: PropType<CSSProperties>;
48
+ default: CSSProperties;
49
+ };
50
+ afterVisibleChange: FunctionConstructor;
51
+ keyboard: {
52
+ type: BooleanConstructor;
53
+ default: undefined;
54
+ };
55
+ contentWrapperStyle: {
56
+ type: PropType< CSSProperties[]>;
57
+ default: CSSProperties[];
58
+ };
59
+ autofocus: {
60
+ type: BooleanConstructor;
61
+ default: undefined;
62
+ };
63
+ open: {
64
+ type: BooleanConstructor;
65
+ default: undefined;
66
+ };
67
+ motion: {
68
+ type: PropType<(placement: IPlacement) => TransitionProps>;
69
+ default: (placement: IPlacement) => TransitionProps;
70
+ };
71
+ maskMotion: {
72
+ type: PropType<TransitionProps>;
73
+ default: TransitionProps;
74
+ };
75
+ }>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "handleClick")[], "close" | "handleClick", PublicProps, Readonly< ExtractPropTypes<{
76
+ forceRender: {
77
+ type: BooleanConstructor;
78
+ default: undefined;
79
+ };
80
+ getContainer: VueTypeDef<any>;
81
+ prefixCls: StringConstructor;
82
+ width: VueTypeDef<string | number>;
83
+ height: VueTypeDef<string | number>;
84
+ style: {
85
+ type: PropType<CSSProperties>;
86
+ default: CSSProperties;
87
+ };
88
+ class: StringConstructor;
89
+ rootClassName: StringConstructor;
90
+ rootStyle: {
91
+ type: PropType<CSSProperties>;
92
+ default: CSSProperties;
93
+ };
94
+ placement: {
95
+ type: PropType<IPlacement>;
96
+ };
97
+ wrapperClassName: StringConstructor;
98
+ level: {
99
+ type: PropType<string | string[]>;
100
+ };
101
+ levelMove: {
102
+ type: PropType<(number | [number, number]) | ((e: {
103
+ target: HTMLElement;
104
+ open: boolean;
105
+ }) => number | [number, number])>;
106
+ };
107
+ duration: StringConstructor;
108
+ ease: StringConstructor;
109
+ showMask: {
110
+ type: BooleanConstructor;
111
+ default: undefined;
112
+ };
113
+ maskClosable: {
114
+ type: BooleanConstructor;
115
+ default: undefined;
116
+ };
117
+ maskStyle: {
118
+ type: PropType<CSSProperties>;
119
+ default: CSSProperties;
120
+ };
121
+ afterVisibleChange: FunctionConstructor;
122
+ keyboard: {
123
+ type: BooleanConstructor;
124
+ default: undefined;
125
+ };
126
+ contentWrapperStyle: {
127
+ type: PropType< CSSProperties[]>;
128
+ default: CSSProperties[];
129
+ };
130
+ autofocus: {
131
+ type: BooleanConstructor;
132
+ default: undefined;
133
+ };
134
+ open: {
135
+ type: BooleanConstructor;
136
+ default: undefined;
137
+ };
138
+ motion: {
139
+ type: PropType<(placement: IPlacement) => TransitionProps>;
140
+ default: (placement: IPlacement) => TransitionProps;
141
+ };
142
+ maskMotion: {
143
+ type: PropType<TransitionProps>;
144
+ default: TransitionProps;
145
+ };
146
+ }>> & Readonly<{
147
+ onClose?: ((...args: any[]) => any) | undefined;
148
+ onHandleClick?: ((...args: any[]) => any) | undefined;
149
+ }>, {
150
+ style: CSSProperties;
151
+ open: boolean;
152
+ motion: (placement: IPlacement) => TransitionProps;
153
+ autofocus: boolean;
154
+ forceRender: boolean;
155
+ maskClosable: boolean;
156
+ rootStyle: CSSProperties;
157
+ keyboard: boolean;
158
+ showMask: boolean;
159
+ maskStyle: CSSProperties;
160
+ contentWrapperStyle: CSSProperties[];
161
+ maskMotion: TransitionProps;
162
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
163
+ export default DrawerWrapper;
@@ -0,0 +1,9 @@
1
+ export declare function dataToArray(vars: any): any[];
2
+ export declare const transitionStr: string;
3
+ export declare const transitionEndFun: string;
4
+ export declare function addEventListener(target: HTMLElement, eventType: string, callback: (e: TouchEvent | Event) => void, options?: any): void;
5
+ export declare function removeEventListener(target: HTMLElement, eventType: string, callback: (e: TouchEvent | Event) => void, options?: any): void;
6
+ export declare function transformArguments(arg: any, cb: any): any[];
7
+ export declare const isNumeric: (value: string | number | undefined) => boolean;
8
+ export declare const windowIsUndefined: boolean;
9
+ export declare const getTouchParentScroll: (root: HTMLElement, currentTarget: HTMLElement | Document | null, differX: number, differY: number) => boolean;
@@ -0,0 +1,2 @@
1
+ import { default as Dropdown } from './Dropdown';
2
+ export default Dropdown;
@@ -0,0 +1,57 @@
1
+ declare const placements: {
2
+ topLeft: {
3
+ points: string[];
4
+ overflow: {
5
+ adjustX: number;
6
+ adjustY: number;
7
+ };
8
+ offset: number[];
9
+ targetOffset: number[];
10
+ };
11
+ topCenter: {
12
+ points: string[];
13
+ overflow: {
14
+ adjustX: number;
15
+ adjustY: number;
16
+ };
17
+ offset: number[];
18
+ targetOffset: number[];
19
+ };
20
+ topRight: {
21
+ points: string[];
22
+ overflow: {
23
+ adjustX: number;
24
+ adjustY: number;
25
+ };
26
+ offset: number[];
27
+ targetOffset: number[];
28
+ };
29
+ bottomLeft: {
30
+ points: string[];
31
+ overflow: {
32
+ adjustX: number;
33
+ adjustY: number;
34
+ };
35
+ offset: number[];
36
+ targetOffset: number[];
37
+ };
38
+ bottomCenter: {
39
+ points: string[];
40
+ overflow: {
41
+ adjustX: number;
42
+ adjustY: number;
43
+ };
44
+ offset: number[];
45
+ targetOffset: number[];
46
+ };
47
+ bottomRight: {
48
+ points: string[];
49
+ overflow: {
50
+ adjustX: number;
51
+ adjustY: number;
52
+ };
53
+ offset: number[];
54
+ targetOffset: number[];
55
+ };
56
+ };
57
+ export default placements;
@@ -0,0 +1,3 @@
1
+ import { default as Image } from './src/Image';
2
+ export * from './src/Image';
3
+ export default Image;
@@ -0,0 +1,79 @@
1
+ import { ComputedRef, PropType, Ref, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, VNode, ComponentProvideOptions } from 'vue';
2
+ import { ImagePreviewType } from './Image';
3
+ import { PreviewProps } from './Preview';
4
+ export interface PreviewGroupPreview extends Omit<ImagePreviewType, 'icons' | 'mask' | 'maskClassName'> {
5
+ /**
6
+ * If Preview the show img index
7
+ * @default 0
8
+ */
9
+ current?: number;
10
+ }
11
+ export interface GroupConsumerProps {
12
+ previewPrefixCls?: string;
13
+ icons?: PreviewProps['icons'];
14
+ preview?: boolean | PreviewGroupPreview;
15
+ }
16
+ export interface GroupConsumerValue extends GroupConsumerProps {
17
+ isPreviewGroup?: Ref<boolean | undefined>;
18
+ previewUrls: ComputedRef<Map<number, string>>;
19
+ setPreviewUrls: (id: number, url: string, canPreview?: boolean) => void;
20
+ current: Ref<number>;
21
+ setCurrent: (current: number) => void;
22
+ setShowPreview: (isShowPreview: boolean) => void;
23
+ setMousePosition: (mousePosition: null | {
24
+ x: number;
25
+ y: number;
26
+ }) => void;
27
+ registerImage: (id: number, url: string, canPreview?: boolean) => () => void;
28
+ rootClassName?: string;
29
+ }
30
+ export declare const context: {
31
+ provide: (val: GroupConsumerValue) => void;
32
+ inject: () => GroupConsumerValue;
33
+ };
34
+ export declare const imageGroupProps: () => {
35
+ previewPrefixCls: StringConstructor;
36
+ preview: {
37
+ type: PropType<boolean | ImagePreviewType>;
38
+ default: boolean | ImagePreviewType;
39
+ };
40
+ icons: {
41
+ type: PropType<PreviewProps["icons"]>;
42
+ default: () => {};
43
+ };
44
+ };
45
+ declare const Group: DefineComponent<ExtractPropTypes<{
46
+ previewPrefixCls: StringConstructor;
47
+ preview: {
48
+ type: PropType<boolean | ImagePreviewType>;
49
+ default: boolean | ImagePreviewType;
50
+ };
51
+ icons: {
52
+ type: PropType<PreviewProps["icons"]>;
53
+ default: () => {};
54
+ };
55
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
56
+ previewPrefixCls: StringConstructor;
57
+ preview: {
58
+ type: PropType<boolean | ImagePreviewType>;
59
+ default: boolean | ImagePreviewType;
60
+ };
61
+ icons: {
62
+ type: PropType<PreviewProps["icons"]>;
63
+ default: () => {};
64
+ };
65
+ }>> & Readonly<{}>, {
66
+ preview: boolean | ImagePreviewType;
67
+ icons: {
68
+ rotateLeft?: VNode;
69
+ rotateRight?: VNode;
70
+ zoomIn?: VNode;
71
+ zoomOut?: VNode;
72
+ close?: VNode;
73
+ left?: VNode;
74
+ right?: VNode;
75
+ flipX?: VNode;
76
+ flipY?: VNode;
77
+ } | undefined;
78
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
79
+ export default Group;
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Fix positon x,y point when
3
+ *
4
+ * Ele width && height < client
5
+ * - Back origin
6
+ *
7
+ * - Ele width | height > clientWidth | clientHeight
8
+ * - left | top > 0 -> Back 0
9
+ * - left | top + width | height < clientWidth | clientHeight -> Back left | top + width | height === clientWidth | clientHeight
10
+ *
11
+ * Regardless of other
12
+ */
13
+ export default function getFixScaleEleTransPosition(width: number, height: number, left: number, top: number): null | {
14
+ x: number;
15
+ y: number;
16
+ };
@@ -0,0 +1,3 @@
1
+ type SetActionType<T> = Partial<T> | ((state: T) => Partial<T>);
2
+ export default function useFrameSetState<T extends object>(initial: T): [Record<string, any>, (newState: SetActionType<T>) => void];
3
+ export {};
@@ -0,0 +1,8 @@
1
+ export declare function hasPrefixSuffix(propsAndSlots: any): number | boolean;
2
+ export declare function hasAddon(propsAndSlots: any): number | boolean;
3
+ export declare function fixControlledValue(value: string | number): string;
4
+ export declare function resolveOnChange(target: HTMLInputElement, e: Event, onChange: Function, targetValue?: string): void;
5
+ export interface InputFocusOptions extends FocusOptions {
6
+ cursor?: 'start' | 'end' | 'all';
7
+ }
8
+ export declare function triggerFocus(element?: HTMLInputElement | HTMLTextAreaElement, option?: InputFocusOptions): void;
@@ -0,0 +1,2 @@
1
+ /** https://github.com/Microsoft/TypeScript/issues/29729 */
2
+ export type LiteralUnion<T extends U, U> = T | (U & {});
@@ -0,0 +1,4 @@
1
+ import { default as Mentions } from './src/Mentions';
2
+ import { default as Option } from './src/Option';
3
+ export { Option };
4
+ export default Mentions;
@@ -0,0 +1,18 @@
1
+ import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { OptionProps } from './Option';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ prefixCls: StringConstructor;
5
+ options: {
6
+ type: PropType<OptionProps[]>;
7
+ default: () => never[];
8
+ };
9
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
10
+ prefixCls: StringConstructor;
11
+ options: {
12
+ type: PropType<OptionProps[]>;
13
+ default: () => never[];
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ options: OptionProps[];
17
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
18
+ export default _default;
@@ -0,0 +1,46 @@
1
+ import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { OptionProps } from './Option';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ loading: {
5
+ type: BooleanConstructor;
6
+ default: undefined;
7
+ };
8
+ options: {
9
+ type: PropType<OptionProps[]>;
10
+ default: () => never[];
11
+ };
12
+ prefixCls: StringConstructor;
13
+ placement: StringConstructor;
14
+ visible: {
15
+ type: BooleanConstructor;
16
+ default: undefined;
17
+ };
18
+ transitionName: StringConstructor;
19
+ getPopupContainer: FunctionConstructor;
20
+ direction: StringConstructor;
21
+ dropdownClassName: StringConstructor;
22
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
23
+ loading: {
24
+ type: BooleanConstructor;
25
+ default: undefined;
26
+ };
27
+ options: {
28
+ type: PropType<OptionProps[]>;
29
+ default: () => never[];
30
+ };
31
+ prefixCls: StringConstructor;
32
+ placement: StringConstructor;
33
+ visible: {
34
+ type: BooleanConstructor;
35
+ default: undefined;
36
+ };
37
+ transitionName: StringConstructor;
38
+ getPopupContainer: FunctionConstructor;
39
+ direction: StringConstructor;
40
+ dropdownClassName: StringConstructor;
41
+ }>> & Readonly<{}>, {
42
+ visible: boolean;
43
+ loading: boolean;
44
+ options: OptionProps[];
45
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
46
+ export default _default;
@@ -0,0 +1,12 @@
1
+ import { InjectionKey, Ref } from 'vue';
2
+ import { OptionProps } from './Option';
3
+ export interface MentionsContext {
4
+ activeIndex: Ref<number>;
5
+ setActiveIndex?: (index: number) => void;
6
+ selectOption?: (option: OptionProps) => void;
7
+ onFocus?: EventListener;
8
+ onBlur?: EventListener;
9
+ loading?: Ref<boolean>;
10
+ }
11
+ declare const MentionsContextKey: InjectionKey<MentionsContext>;
12
+ export default MentionsContextKey;
@@ -0,0 +1,68 @@
1
+ import { ExtractPropTypes, HTMLAttributes, PropType, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { VueNode } from '../../_util/type';
3
+ export declare const baseOptionsProps: {
4
+ value: StringConstructor;
5
+ disabled: BooleanConstructor;
6
+ payload: {
7
+ type: PropType<Record<string, any>>;
8
+ default: Record<string, any>;
9
+ };
10
+ };
11
+ export declare const optionProps: {
12
+ label: {
13
+ default: VueNode | ((o: BaseOptionsProps) => VueNode);
14
+ type: PropType<VueNode | ((o: BaseOptionsProps) => VueNode)>;
15
+ };
16
+ value: StringConstructor;
17
+ disabled: BooleanConstructor;
18
+ payload: {
19
+ type: PropType<Record<string, any>>;
20
+ default: Record<string, any>;
21
+ };
22
+ };
23
+ export type BaseOptionsProps = Partial<ExtractPropTypes<typeof baseOptionsProps>> & Partial<HTMLAttributes>;
24
+ export type OptionProps = Partial<ExtractPropTypes<typeof optionProps>> & Partial<HTMLAttributes>;
25
+ export declare const optionOptions: {
26
+ name: string;
27
+ props: {
28
+ label: {
29
+ default: VueNode | ((o: BaseOptionsProps) => VueNode);
30
+ type: PropType<VueNode | ((o: BaseOptionsProps) => VueNode)>;
31
+ };
32
+ value: StringConstructor;
33
+ disabled: BooleanConstructor;
34
+ payload: {
35
+ type: PropType<Record<string, any>>;
36
+ default: Record<string, any>;
37
+ };
38
+ };
39
+ render(_props: any, { slots }: any): any;
40
+ };
41
+ declare const _default: DefineComponent<ExtractPropTypes<{
42
+ label: {
43
+ default: VueNode | ((o: BaseOptionsProps) => VueNode);
44
+ type: PropType<VueNode | ((o: BaseOptionsProps) => VueNode)>;
45
+ };
46
+ value: StringConstructor;
47
+ disabled: BooleanConstructor;
48
+ payload: {
49
+ type: PropType<Record<string, any>>;
50
+ default: Record<string, any>;
51
+ };
52
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
53
+ label: {
54
+ default: VueNode | ((o: BaseOptionsProps) => VueNode);
55
+ type: PropType<VueNode | ((o: BaseOptionsProps) => VueNode)>;
56
+ };
57
+ value: StringConstructor;
58
+ disabled: BooleanConstructor;
59
+ payload: {
60
+ type: PropType<Record<string, any>>;
61
+ default: Record<string, any>;
62
+ };
63
+ }>> & Readonly<{}>, {
64
+ label: VueNode | ((o: BaseOptionsProps) => VueNode);
65
+ disabled: boolean;
66
+ payload: Record<string, any>;
67
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
68
+ export default _default;
@@ -0,0 +1,35 @@
1
+ import { MentionsProps } from './Mentions';
2
+ import { OptionProps } from './Option';
3
+ /**
4
+ * Cut input selection into 2 part and return text before selection start
5
+ */
6
+ export declare function getBeforeSelectionText(input: HTMLTextAreaElement): string;
7
+ interface MeasureIndex {
8
+ location: number;
9
+ prefix: string;
10
+ }
11
+ /**
12
+ * Find the last match prefix index
13
+ */
14
+ export declare function getLastMeasureIndex(text: string, prefix?: string | string[]): MeasureIndex;
15
+ interface MeasureConfig {
16
+ measureLocation: number;
17
+ prefix: string;
18
+ targetText: string;
19
+ selectionStart: number;
20
+ split: string;
21
+ }
22
+ /**
23
+ * Paint targetText into current text:
24
+ * text: little@litest
25
+ * targetText: light
26
+ * => little @light test
27
+ */
28
+ export declare function replaceWithMeasure(text: string, measureConfig: MeasureConfig): {
29
+ text: string;
30
+ selectionLocation: number;
31
+ };
32
+ export declare function setInputSelection(input: HTMLTextAreaElement, location: number): void;
33
+ export declare function validateSearch(text: string, props: MentionsProps): boolean;
34
+ export declare function filterOption(input: string, { value }: OptionProps): boolean;
35
+ export {};
@@ -0,0 +1,56 @@
1
+ import { CSSProperties, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { CSSMotionProps } from '../_util/transition';
3
+ import { Key, VueNode } from '../_util/type';
4
+ import { NoticeProps } from './Notice';
5
+ export declare function getUuid(): string;
6
+ export type Placement = 'top' | 'topLeft' | 'topRight' | 'bottom' | 'bottomLeft' | 'bottomRight';
7
+ export interface OpenConfig extends NoticeProps {
8
+ key: Key;
9
+ placement?: Placement;
10
+ content?: VueNode;
11
+ duration?: number | null;
12
+ }
13
+ export type Placements = Partial<Record<Placement, OpenConfig[]>>;
14
+ export interface NoticeContent extends Omit<NoticeProps, 'prefixCls' | 'noticeKey' | 'onClose'> {
15
+ prefixCls?: string;
16
+ key?: Key;
17
+ updateMark?: string;
18
+ content?: any;
19
+ onClose?: () => void;
20
+ style?: CSSProperties;
21
+ class?: string;
22
+ placement?: Placement;
23
+ }
24
+ export type NoticeFunc = (noticeProps: NoticeContent) => void;
25
+ export type HolderReadyCallback = (div: HTMLDivElement, noticeProps: NoticeProps & {
26
+ key: Key;
27
+ }) => void;
28
+ export interface NotificationInstance {
29
+ notice: NoticeFunc;
30
+ removeNotice: (key: Key) => void;
31
+ destroy: () => void;
32
+ add: (noticeProps: NoticeContent) => void;
33
+ component: Notification;
34
+ }
35
+ export interface HookNotificationProps {
36
+ prefixCls?: string;
37
+ transitionName?: string;
38
+ animation?: string | CSSMotionProps | ((placement?: Placement) => CSSMotionProps);
39
+ maxCount?: number;
40
+ closeIcon?: any;
41
+ hashId?: string;
42
+ remove: (key: Key) => void;
43
+ notices: NotificationState;
44
+ getStyles?: (placement?: Placement) => CSSProperties;
45
+ getClassName?: (placement?: Placement) => string;
46
+ onAllRemoved?: VoidFunction;
47
+ getContainer?: () => HTMLElement;
48
+ }
49
+ type NotificationState = {
50
+ notice: NoticeContent & {
51
+ userPassKey?: Key;
52
+ };
53
+ holderCallback?: HolderReadyCallback;
54
+ }[];
55
+ declare const Notification: DefineComponent<HookNotificationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<HookNotificationProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
56
+ export default Notification;