@swiftcrab/crab 0.0.2

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 (1779) hide show
  1. package/README.md +143 -0
  2. package/es/_util/ActionButton.d.ts +19 -0
  3. package/es/_util/ActionButton.js +48 -0
  4. package/es/_util/ContextIsolator.d.ts +3 -0
  5. package/es/_util/ContextIsolator.js +40 -0
  6. package/es/_util/PurePanel.d.ts +9 -0
  7. package/es/_util/PurePanel.js +40 -0
  8. package/es/_util/aria-data-attrs.d.ts +4 -0
  9. package/es/_util/aria-data-attrs.js +0 -0
  10. package/es/_util/capitalize.d.ts +1 -0
  11. package/es/_util/capitalize.js +1 -0
  12. package/es/_util/colors.d.ts +13 -0
  13. package/es/_util/colors.js +1 -0
  14. package/es/_util/easings.d.ts +1 -0
  15. package/es/_util/easings.js +1 -0
  16. package/es/_util/extendsObject.d.ts +3 -0
  17. package/es/_util/extendsObject.js +1 -0
  18. package/es/_util/gapSize.d.ts +3 -0
  19. package/es/_util/gapSize.js +1 -0
  20. package/es/_util/getAllowClear.d.ts +4 -0
  21. package/es/_util/getAllowClear.js +1 -0
  22. package/es/_util/getRenderPropValue.d.ts +3 -0
  23. package/es/_util/getRenderPropValue.js +1 -0
  24. package/es/_util/getScroll.d.ts +3 -0
  25. package/es/_util/getScroll.js +1 -0
  26. package/es/_util/hooks/useClosable.d.ts +31 -0
  27. package/es/_util/hooks/useClosable.js +1 -0
  28. package/es/_util/hooks/useForceUpdate.d.ts +2 -0
  29. package/es/_util/hooks/useForceUpdate.js +1 -0
  30. package/es/_util/hooks/useMultipleSelect.d.ts +6 -0
  31. package/es/_util/hooks/useMultipleSelect.js +1 -0
  32. package/es/_util/hooks/usePatchElement.d.ts +5 -0
  33. package/es/_util/hooks/usePatchElement.js +1 -0
  34. package/es/_util/hooks/useProxyImperativeHandle.d.ts +4 -0
  35. package/es/_util/hooks/useProxyImperativeHandle.js +1 -0
  36. package/es/_util/hooks/useSyncState.d.ts +3 -0
  37. package/es/_util/hooks/useSyncState.js +1 -0
  38. package/es/_util/hooks/useUniqueMemo.d.ts +6 -0
  39. package/es/_util/hooks/useUniqueMemo.js +1 -0
  40. package/es/_util/hooks/useZIndex.d.ts +8 -0
  41. package/es/_util/hooks/useZIndex.js +35 -0
  42. package/es/_util/isNumeric.d.ts +2 -0
  43. package/es/_util/isNumeric.js +1 -0
  44. package/es/_util/isPrimitive.d.ts +2 -0
  45. package/es/_util/isPrimitive.js +1 -0
  46. package/es/_util/motion.d.ts +7 -0
  47. package/es/_util/motion.js +40 -0
  48. package/es/_util/placements.d.ts +21 -0
  49. package/es/_util/placements.js +1 -0
  50. package/es/_util/reactNode.d.ts +7 -0
  51. package/es/_util/reactNode.js +1 -0
  52. package/es/_util/responsiveObserver.d.ts +22 -0
  53. package/es/_util/responsiveObserver.js +35 -0
  54. package/es/_util/scrollTo.d.ts +10 -0
  55. package/es/_util/scrollTo.js +1 -0
  56. package/es/_util/statusUtils.d.ts +6 -0
  57. package/es/_util/statusUtils.js +1 -0
  58. package/es/_util/styleChecker.d.ts +3 -0
  59. package/es/_util/styleChecker.js +1 -0
  60. package/es/_util/throttleByAnimationFrame.d.ts +5 -0
  61. package/es/_util/throttleByAnimationFrame.js +1 -0
  62. package/es/_util/toList.d.ts +1 -0
  63. package/es/_util/toList.js +1 -0
  64. package/es/_util/transKeys.d.ts +3 -0
  65. package/es/_util/transKeys.js +1 -0
  66. package/es/_util/type.d.ts +54 -0
  67. package/es/_util/type.js +0 -0
  68. package/es/_util/warning.d.ts +31 -0
  69. package/es/_util/warning.js +1 -0
  70. package/es/_util/wave/WaveEffect.d.ts +10 -0
  71. package/es/_util/wave/WaveEffect.js +40 -0
  72. package/es/_util/wave/index.d.ts +9 -0
  73. package/es/_util/wave/index.js +41 -0
  74. package/es/_util/wave/interface.d.ts +11 -0
  75. package/es/_util/wave/interface.js +40 -0
  76. package/es/_util/wave/style.d.ts +7 -0
  77. package/es/_util/wave/style.js +35 -0
  78. package/es/_util/wave/useWave.d.ts +4 -0
  79. package/es/_util/wave/useWave.js +41 -0
  80. package/es/_util/wave/util.d.ts +2 -0
  81. package/es/_util/wave/util.js +1 -0
  82. package/es/_util/zindexContext.d.ts +3 -0
  83. package/es/_util/zindexContext.js +1 -0
  84. package/es/affix/index.d.ts +22 -0
  85. package/es/affix/index.js +40 -0
  86. package/es/affix/style/index.d.ts +11 -0
  87. package/es/affix/style/index.js +35 -0
  88. package/es/affix/utils.d.ts +4 -0
  89. package/es/affix/utils.js +1 -0
  90. package/es/alert/Alert.d.ts +42 -0
  91. package/es/alert/Alert.js +42 -0
  92. package/es/alert/ErrorBoundary.d.ts +24 -0
  93. package/es/alert/ErrorBoundary.js +42 -0
  94. package/es/alert/index.d.ts +8 -0
  95. package/es/alert/index.js +42 -0
  96. package/es/alert/style/index.d.ts +26 -0
  97. package/es/alert/style/index.js +37 -0
  98. package/es/anchor/Anchor.d.ts +59 -0
  99. package/es/anchor/Anchor.js +40 -0
  100. package/es/anchor/AnchorLink.d.ts +14 -0
  101. package/es/anchor/AnchorLink.js +40 -0
  102. package/es/anchor/context.d.ts +4 -0
  103. package/es/anchor/context.js +1 -0
  104. package/es/anchor/index.d.ts +10 -0
  105. package/es/anchor/index.js +40 -0
  106. package/es/anchor/style/index.d.ts +16 -0
  107. package/es/anchor/style/index.js +35 -0
  108. package/es/app/context.d.ts +16 -0
  109. package/es/app/context.js +1 -0
  110. package/es/app/index.d.ts +16 -0
  111. package/es/app/index.js +77 -0
  112. package/es/app/style/index.d.ts +6 -0
  113. package/es/app/style/index.js +35 -0
  114. package/es/auto-complete/index.d.ts +28 -0
  115. package/es/auto-complete/index.js +78 -0
  116. package/es/avatar/AvatarContext.d.ts +9 -0
  117. package/es/avatar/AvatarContext.js +1 -0
  118. package/es/avatar/avatar.d.ts +26 -0
  119. package/es/avatar/avatar.js +41 -0
  120. package/es/avatar/group.d.ts +27 -0
  121. package/es/avatar/group.js +50 -0
  122. package/es/avatar/index.d.ts +10 -0
  123. package/es/avatar/index.js +49 -0
  124. package/es/avatar/style/index.d.ts +51 -0
  125. package/es/avatar/style/index.js +35 -0
  126. package/es/badge/Ribbon.d.ts +16 -0
  127. package/es/badge/Ribbon.js +40 -0
  128. package/es/badge/ScrollNumber.d.ts +18 -0
  129. package/es/badge/ScrollNumber.js +40 -0
  130. package/es/badge/SingleNumber.d.ts +14 -0
  131. package/es/badge/SingleNumber.js +1 -0
  132. package/es/badge/index.d.ts +41 -0
  133. package/es/badge/index.js +40 -0
  134. package/es/badge/style/index.d.ts +104 -0
  135. package/es/badge/style/index.js +35 -0
  136. package/es/badge/style/ribbon.d.ts +2 -0
  137. package/es/badge/style/ribbon.js +35 -0
  138. package/es/breadcrumb/Breadcrumb.d.ts +58 -0
  139. package/es/breadcrumb/Breadcrumb.js +87 -0
  140. package/es/breadcrumb/BreadcrumbItem.d.ts +31 -0
  141. package/es/breadcrumb/BreadcrumbItem.js +83 -0
  142. package/es/breadcrumb/BreadcrumbSeparator.d.ts +4 -0
  143. package/es/breadcrumb/BreadcrumbSeparator.js +40 -0
  144. package/es/breadcrumb/index.d.ts +4 -0
  145. package/es/breadcrumb/index.js +87 -0
  146. package/es/breadcrumb/style/index.d.ts +41 -0
  147. package/es/breadcrumb/style/index.js +38 -0
  148. package/es/breadcrumb/useItemRender.d.ts +8 -0
  149. package/es/breadcrumb/useItemRender.js +1 -0
  150. package/es/breadcrumb/useItems.d.ts +6 -0
  151. package/es/breadcrumb/useItems.js +1 -0
  152. package/es/button/IconWrapper.d.ts +9 -0
  153. package/es/button/IconWrapper.js +1 -0
  154. package/es/button/LoadingIcon.d.ts +11 -0
  155. package/es/button/LoadingIcon.js +1 -0
  156. package/es/button/button-group.d.ts +12 -0
  157. package/es/button/button-group.js +40 -0
  158. package/es/button/button.d.ts +44 -0
  159. package/es/button/button.js +48 -0
  160. package/es/button/buttonHelpers.d.ts +18 -0
  161. package/es/button/buttonHelpers.js +1 -0
  162. package/es/button/index.d.ts +6 -0
  163. package/es/button/index.js +48 -0
  164. package/es/button/style/compact.d.ts +2 -0
  165. package/es/button/style/compact.js +47 -0
  166. package/es/button/style/group.d.ts +4 -0
  167. package/es/button/style/group.js +1 -0
  168. package/es/button/style/index.d.ts +4 -0
  169. package/es/button/style/index.js +47 -0
  170. package/es/button/style/token.d.ts +233 -0
  171. package/es/button/style/token.js +47 -0
  172. package/es/calendar/Header.d.ts +17 -0
  173. package/es/calendar/Header.js +79 -0
  174. package/es/calendar/generateCalendar.d.ts +44 -0
  175. package/es/calendar/generateCalendar.js +118 -0
  176. package/es/calendar/index.d.ts +10 -0
  177. package/es/calendar/index.js +118 -0
  178. package/es/calendar/locale/ar_EG.d.ts +2 -0
  179. package/es/calendar/locale/ar_EG.js +1 -0
  180. package/es/calendar/locale/az_AZ.d.ts +2 -0
  181. package/es/calendar/locale/az_AZ.js +1 -0
  182. package/es/calendar/locale/bg_BG.d.ts +2 -0
  183. package/es/calendar/locale/bg_BG.js +1 -0
  184. package/es/calendar/locale/bn_BD.d.ts +2 -0
  185. package/es/calendar/locale/bn_BD.js +1 -0
  186. package/es/calendar/locale/by_BY.d.ts +2 -0
  187. package/es/calendar/locale/by_BY.js +1 -0
  188. package/es/calendar/locale/ca_ES.d.ts +2 -0
  189. package/es/calendar/locale/ca_ES.js +1 -0
  190. package/es/calendar/locale/cs_CZ.d.ts +2 -0
  191. package/es/calendar/locale/cs_CZ.js +1 -0
  192. package/es/calendar/locale/da_DK.d.ts +2 -0
  193. package/es/calendar/locale/da_DK.js +1 -0
  194. package/es/calendar/locale/de_DE.d.ts +2 -0
  195. package/es/calendar/locale/de_DE.js +1 -0
  196. package/es/calendar/locale/el_GR.d.ts +2 -0
  197. package/es/calendar/locale/el_GR.js +1 -0
  198. package/es/calendar/locale/en_GB.d.ts +2 -0
  199. package/es/calendar/locale/en_GB.js +1 -0
  200. package/es/calendar/locale/en_US.d.ts +2 -0
  201. package/es/calendar/locale/en_US.js +1 -0
  202. package/es/calendar/locale/es_ES.d.ts +2 -0
  203. package/es/calendar/locale/es_ES.js +1 -0
  204. package/es/calendar/locale/et_EE.d.ts +2 -0
  205. package/es/calendar/locale/et_EE.js +1 -0
  206. package/es/calendar/locale/eu_ES.d.ts +2 -0
  207. package/es/calendar/locale/eu_ES.js +1 -0
  208. package/es/calendar/locale/fa_IR.d.ts +2 -0
  209. package/es/calendar/locale/fa_IR.js +1 -0
  210. package/es/calendar/locale/fi_FI.d.ts +2 -0
  211. package/es/calendar/locale/fi_FI.js +1 -0
  212. package/es/calendar/locale/fr_BE.d.ts +2 -0
  213. package/es/calendar/locale/fr_BE.js +1 -0
  214. package/es/calendar/locale/fr_CA.d.ts +2 -0
  215. package/es/calendar/locale/fr_CA.js +1 -0
  216. package/es/calendar/locale/fr_FR.d.ts +2 -0
  217. package/es/calendar/locale/fr_FR.js +1 -0
  218. package/es/calendar/locale/ga_IE.d.ts +2 -0
  219. package/es/calendar/locale/ga_IE.js +1 -0
  220. package/es/calendar/locale/gl_ES.d.ts +2 -0
  221. package/es/calendar/locale/gl_ES.js +1 -0
  222. package/es/calendar/locale/he_IL.d.ts +2 -0
  223. package/es/calendar/locale/he_IL.js +1 -0
  224. package/es/calendar/locale/hi_IN.d.ts +2 -0
  225. package/es/calendar/locale/hi_IN.js +1 -0
  226. package/es/calendar/locale/hr_HR.d.ts +2 -0
  227. package/es/calendar/locale/hr_HR.js +1 -0
  228. package/es/calendar/locale/hu_HU.d.ts +2 -0
  229. package/es/calendar/locale/hu_HU.js +1 -0
  230. package/es/calendar/locale/id_ID.d.ts +2 -0
  231. package/es/calendar/locale/id_ID.js +1 -0
  232. package/es/calendar/locale/is_IS.d.ts +2 -0
  233. package/es/calendar/locale/is_IS.js +1 -0
  234. package/es/calendar/locale/it_IT.d.ts +2 -0
  235. package/es/calendar/locale/it_IT.js +1 -0
  236. package/es/calendar/locale/ja_JP.d.ts +2 -0
  237. package/es/calendar/locale/ja_JP.js +1 -0
  238. package/es/calendar/locale/ka_GE.d.ts +2 -0
  239. package/es/calendar/locale/ka_GE.js +1 -0
  240. package/es/calendar/locale/kk_KZ.d.ts +2 -0
  241. package/es/calendar/locale/kk_KZ.js +1 -0
  242. package/es/calendar/locale/km_KH.d.ts +2 -0
  243. package/es/calendar/locale/km_KH.js +1 -0
  244. package/es/calendar/locale/kmr_IQ.d.ts +2 -0
  245. package/es/calendar/locale/kmr_IQ.js +1 -0
  246. package/es/calendar/locale/kn_IN.d.ts +2 -0
  247. package/es/calendar/locale/kn_IN.js +1 -0
  248. package/es/calendar/locale/ko_KR.d.ts +2 -0
  249. package/es/calendar/locale/ko_KR.js +1 -0
  250. package/es/calendar/locale/lt_LT.d.ts +2 -0
  251. package/es/calendar/locale/lt_LT.js +1 -0
  252. package/es/calendar/locale/lv_LV.d.ts +2 -0
  253. package/es/calendar/locale/lv_LV.js +1 -0
  254. package/es/calendar/locale/mk_MK.d.ts +2 -0
  255. package/es/calendar/locale/mk_MK.js +1 -0
  256. package/es/calendar/locale/ml_IN.d.ts +2 -0
  257. package/es/calendar/locale/ml_IN.js +1 -0
  258. package/es/calendar/locale/mn_MN.d.ts +2 -0
  259. package/es/calendar/locale/mn_MN.js +1 -0
  260. package/es/calendar/locale/ms_MY.d.ts +2 -0
  261. package/es/calendar/locale/ms_MY.js +1 -0
  262. package/es/calendar/locale/my_MM.d.ts +2 -0
  263. package/es/calendar/locale/my_MM.js +1 -0
  264. package/es/calendar/locale/nb_NO.d.ts +2 -0
  265. package/es/calendar/locale/nb_NO.js +1 -0
  266. package/es/calendar/locale/nl_BE.d.ts +2 -0
  267. package/es/calendar/locale/nl_BE.js +1 -0
  268. package/es/calendar/locale/nl_NL.d.ts +2 -0
  269. package/es/calendar/locale/nl_NL.js +1 -0
  270. package/es/calendar/locale/pl_PL.d.ts +2 -0
  271. package/es/calendar/locale/pl_PL.js +1 -0
  272. package/es/calendar/locale/pt_BR.d.ts +2 -0
  273. package/es/calendar/locale/pt_BR.js +1 -0
  274. package/es/calendar/locale/pt_PT.d.ts +2 -0
  275. package/es/calendar/locale/pt_PT.js +1 -0
  276. package/es/calendar/locale/ro_RO.d.ts +2 -0
  277. package/es/calendar/locale/ro_RO.js +1 -0
  278. package/es/calendar/locale/ru_RU.d.ts +2 -0
  279. package/es/calendar/locale/ru_RU.js +1 -0
  280. package/es/calendar/locale/si_LK.d.ts +2 -0
  281. package/es/calendar/locale/si_LK.js +1 -0
  282. package/es/calendar/locale/sk_SK.d.ts +2 -0
  283. package/es/calendar/locale/sk_SK.js +1 -0
  284. package/es/calendar/locale/sl_SI.d.ts +2 -0
  285. package/es/calendar/locale/sl_SI.js +1 -0
  286. package/es/calendar/locale/sr_RS.d.ts +2 -0
  287. package/es/calendar/locale/sr_RS.js +1 -0
  288. package/es/calendar/locale/sv_SE.d.ts +2 -0
  289. package/es/calendar/locale/sv_SE.js +1 -0
  290. package/es/calendar/locale/ta_IN.d.ts +2 -0
  291. package/es/calendar/locale/ta_IN.js +1 -0
  292. package/es/calendar/locale/th_TH.d.ts +2 -0
  293. package/es/calendar/locale/th_TH.js +1 -0
  294. package/es/calendar/locale/tk_TK.d.ts +2 -0
  295. package/es/calendar/locale/tk_TK.js +1 -0
  296. package/es/calendar/locale/tr_TR.d.ts +2 -0
  297. package/es/calendar/locale/tr_TR.js +1 -0
  298. package/es/calendar/locale/uk_UA.d.ts +2 -0
  299. package/es/calendar/locale/uk_UA.js +1 -0
  300. package/es/calendar/locale/ur_PK.d.ts +2 -0
  301. package/es/calendar/locale/ur_PK.js +1 -0
  302. package/es/calendar/locale/uz_UZ.d.ts +2 -0
  303. package/es/calendar/locale/uz_UZ.js +1 -0
  304. package/es/calendar/locale/vi_VN.d.ts +2 -0
  305. package/es/calendar/locale/vi_VN.js +1 -0
  306. package/es/calendar/locale/zh_CN.d.ts +2 -0
  307. package/es/calendar/locale/zh_CN.js +1 -0
  308. package/es/calendar/locale/zh_TW.d.ts +2 -0
  309. package/es/calendar/locale/zh_TW.js +1 -0
  310. package/es/calendar/style/index.d.ts +61 -0
  311. package/es/calendar/style/index.js +86 -0
  312. package/es/card/Card.d.ts +56 -0
  313. package/es/card/Card.js +67 -0
  314. package/es/card/Grid.d.ts +9 -0
  315. package/es/card/Grid.js +40 -0
  316. package/es/card/Meta.d.ts +11 -0
  317. package/es/card/Meta.js +40 -0
  318. package/es/card/index.d.ts +13 -0
  319. package/es/card/index.js +67 -0
  320. package/es/card/style/index.d.ts +51 -0
  321. package/es/card/style/index.js +44 -0
  322. package/es/carousel/index.d.ts +27 -0
  323. package/es/carousel/index.js +40 -0
  324. package/es/carousel/style/index.d.ts +43 -0
  325. package/es/carousel/style/index.js +35 -0
  326. package/es/cascader/Panel.d.ts +12 -0
  327. package/es/cascader/Panel.js +49 -0
  328. package/es/cascader/hooks/useBase.d.ts +8 -0
  329. package/es/cascader/hooks/useBase.js +40 -0
  330. package/es/cascader/hooks/useCheckable.d.ts +2 -0
  331. package/es/cascader/hooks/useCheckable.js +1 -0
  332. package/es/cascader/hooks/useColumnIcons.d.ts +3 -0
  333. package/es/cascader/hooks/useColumnIcons.js +1 -0
  334. package/es/cascader/index.d.ts +55 -0
  335. package/es/cascader/index.js +87 -0
  336. package/es/cascader/style/columns.d.ts +4 -0
  337. package/es/cascader/style/columns.js +44 -0
  338. package/es/cascader/style/index.d.ts +51 -0
  339. package/es/cascader/style/index.js +44 -0
  340. package/es/cascader/style/panel.d.ts +2 -0
  341. package/es/cascader/style/panel.js +44 -0
  342. package/es/checkbox/Checkbox.d.ts +43 -0
  343. package/es/checkbox/Checkbox.js +46 -0
  344. package/es/checkbox/Group.d.ts +32 -0
  345. package/es/checkbox/Group.js +46 -0
  346. package/es/checkbox/GroupContext.d.ts +12 -0
  347. package/es/checkbox/GroupContext.js +1 -0
  348. package/es/checkbox/index.d.ts +11 -0
  349. package/es/checkbox/index.js +46 -0
  350. package/es/checkbox/style/index.d.ts +23 -0
  351. package/es/checkbox/style/index.js +41 -0
  352. package/es/checkbox/useBubbleLock.d.ts +7 -0
  353. package/es/checkbox/useBubbleLock.js +1 -0
  354. package/es/col/index.d.ts +4 -0
  355. package/es/col/index.js +40 -0
  356. package/es/col/style/index.d.ts +2 -0
  357. package/es/col/style/index.js +1 -0
  358. package/es/collapse/Collapse.d.ts +45 -0
  359. package/es/collapse/Collapse.js +47 -0
  360. package/es/collapse/CollapsePanel.d.ts +19 -0
  361. package/es/collapse/CollapsePanel.js +40 -0
  362. package/es/collapse/index.d.ts +4 -0
  363. package/es/collapse/index.js +47 -0
  364. package/es/collapse/style/index.d.ts +46 -0
  365. package/es/collapse/style/index.js +42 -0
  366. package/es/color-picker/ColorPicker.d.ts +8 -0
  367. package/es/color-picker/ColorPicker.js +130 -0
  368. package/es/color-picker/ColorPickerPanel.d.ts +9 -0
  369. package/es/color-picker/ColorPickerPanel.js +130 -0
  370. package/es/color-picker/color.d.ts +34 -0
  371. package/es/color-picker/color.js +1 -0
  372. package/es/color-picker/components/ColorAlphaInput.d.ts +9 -0
  373. package/es/color-picker/components/ColorAlphaInput.js +70 -0
  374. package/es/color-picker/components/ColorClear.d.ts +9 -0
  375. package/es/color-picker/components/ColorClear.js +1 -0
  376. package/es/color-picker/components/ColorHexInput.d.ts +9 -0
  377. package/es/color-picker/components/ColorHexInput.js +66 -0
  378. package/es/color-picker/components/ColorHsbInput.d.ts +9 -0
  379. package/es/color-picker/components/ColorHsbInput.js +70 -0
  380. package/es/color-picker/components/ColorInput.d.ts +14 -0
  381. package/es/color-picker/components/ColorInput.js +116 -0
  382. package/es/color-picker/components/ColorPresets.d.ts +12 -0
  383. package/es/color-picker/components/ColorPresets.js +47 -0
  384. package/es/color-picker/components/ColorRgbInput.d.ts +9 -0
  385. package/es/color-picker/components/ColorRgbInput.js +70 -0
  386. package/es/color-picker/components/ColorSlider.d.ts +20 -0
  387. package/es/color-picker/components/ColorSlider.js +61 -0
  388. package/es/color-picker/components/ColorSteppers.d.ts +15 -0
  389. package/es/color-picker/components/ColorSteppers.js +70 -0
  390. package/es/color-picker/components/ColorTrigger.d.ts +20 -0
  391. package/es/color-picker/components/ColorTrigger.js +1 -0
  392. package/es/color-picker/components/PanelPicker/GradientColorBar.d.ts +8 -0
  393. package/es/color-picker/components/PanelPicker/GradientColorBar.js +61 -0
  394. package/es/color-picker/components/PanelPicker/index.d.ts +3 -0
  395. package/es/color-picker/components/PanelPicker/index.js +130 -0
  396. package/es/color-picker/components/PanelPresets.d.ts +3 -0
  397. package/es/color-picker/components/PanelPresets.js +47 -0
  398. package/es/color-picker/context.d.ts +38 -0
  399. package/es/color-picker/context.js +1 -0
  400. package/es/color-picker/hooks/useModeColor.d.ts +17 -0
  401. package/es/color-picker/hooks/useModeColor.js +1 -0
  402. package/es/color-picker/index.d.ts +4 -0
  403. package/es/color-picker/index.js +130 -0
  404. package/es/color-picker/interface.d.ts +73 -0
  405. package/es/color-picker/interface.js +1 -0
  406. package/es/color-picker/style/color-block.d.ts +8 -0
  407. package/es/color-picker/style/color-block.js +1 -0
  408. package/es/color-picker/style/index.d.ts +62 -0
  409. package/es/color-picker/style/index.js +35 -0
  410. package/es/color-picker/style/input.d.ts +5 -0
  411. package/es/color-picker/style/input.js +1 -0
  412. package/es/color-picker/style/picker.d.ts +5 -0
  413. package/es/color-picker/style/picker.js +1 -0
  414. package/es/color-picker/style/presets.d.ts +5 -0
  415. package/es/color-picker/style/presets.js +1 -0
  416. package/es/color-picker/style/slider.d.ts +5 -0
  417. package/es/color-picker/style/slider.js +1 -0
  418. package/es/color-picker/util.d.ts +15 -0
  419. package/es/color-picker/util.js +1 -0
  420. package/es/config-provider/DisabledContext.d.ts +8 -0
  421. package/es/config-provider/DisabledContext.js +1 -0
  422. package/es/config-provider/MotionWrapper.d.ts +5 -0
  423. package/es/config-provider/MotionWrapper.js +35 -0
  424. package/es/config-provider/PropWarning.d.ts +6 -0
  425. package/es/config-provider/PropWarning.js +1 -0
  426. package/es/config-provider/SizeContext.d.ts +9 -0
  427. package/es/config-provider/SizeContext.js +1 -0
  428. package/es/config-provider/UnstableContext.d.ts +10 -0
  429. package/es/config-provider/UnstableContext.js +2 -0
  430. package/es/config-provider/context.d.ts +248 -0
  431. package/es/config-provider/context.js +1 -0
  432. package/es/config-provider/cssVariables.d.ts +3 -0
  433. package/es/config-provider/cssVariables.js +6 -0
  434. package/es/config-provider/defaultRenderEmpty.d.ts +8 -0
  435. package/es/config-provider/defaultRenderEmpty.js +41 -0
  436. package/es/config-provider/hooks/useCSSVarCls.d.ts +7 -0
  437. package/es/config-provider/hooks/useCSSVarCls.js +35 -0
  438. package/es/config-provider/hooks/useConfig.d.ts +5 -0
  439. package/es/config-provider/hooks/useConfig.js +1 -0
  440. package/es/config-provider/hooks/useSize.d.ts +3 -0
  441. package/es/config-provider/hooks/useSize.js +1 -0
  442. package/es/config-provider/hooks/useTheme.d.ts +4 -0
  443. package/es/config-provider/hooks/useTheme.js +35 -0
  444. package/es/config-provider/hooks/useThemeKey.d.ts +3 -0
  445. package/es/config-provider/hooks/useThemeKey.js +1 -0
  446. package/es/config-provider/index.d.ts +139 -0
  447. package/es/config-provider/index.js +40 -0
  448. package/es/config-provider/style/index.d.ts +1 -0
  449. package/es/config-provider/style/index.js +35 -0
  450. package/es/copy/index.d.ts +13 -0
  451. package/es/copy/index.js +1 -0
  452. package/es/date-picker/PickerButton.d.ts +4 -0
  453. package/es/date-picker/PickerButton.js +48 -0
  454. package/es/date-picker/generatePicker/constant.d.ts +5 -0
  455. package/es/date-picker/generatePicker/constant.js +1 -0
  456. package/es/date-picker/generatePicker/generateRangePicker.d.ts +17 -0
  457. package/es/date-picker/generatePicker/generateRangePicker.js +99 -0
  458. package/es/date-picker/generatePicker/generateSinglePicker.d.ts +25 -0
  459. package/es/date-picker/generatePicker/generateSinglePicker.js +99 -0
  460. package/es/date-picker/generatePicker/index.d.ts +36 -0
  461. package/es/date-picker/generatePicker/index.js +99 -0
  462. package/es/date-picker/generatePicker/interface.d.ts +72 -0
  463. package/es/date-picker/generatePicker/interface.js +0 -0
  464. package/es/date-picker/generatePicker/useComponents.d.ts +13 -0
  465. package/es/date-picker/generatePicker/useComponents.js +48 -0
  466. package/es/date-picker/index.d.ts +48 -0
  467. package/es/date-picker/index.js +99 -0
  468. package/es/date-picker/locale/ar_EG.d.ts +3 -0
  469. package/es/date-picker/locale/ar_EG.js +1 -0
  470. package/es/date-picker/locale/az_AZ.d.ts +3 -0
  471. package/es/date-picker/locale/az_AZ.js +1 -0
  472. package/es/date-picker/locale/bg_BG.d.ts +3 -0
  473. package/es/date-picker/locale/bg_BG.js +1 -0
  474. package/es/date-picker/locale/bn_BD.d.ts +3 -0
  475. package/es/date-picker/locale/bn_BD.js +1 -0
  476. package/es/date-picker/locale/by_BY.d.ts +3 -0
  477. package/es/date-picker/locale/by_BY.js +1 -0
  478. package/es/date-picker/locale/ca_ES.d.ts +3 -0
  479. package/es/date-picker/locale/ca_ES.js +1 -0
  480. package/es/date-picker/locale/cs_CZ.d.ts +3 -0
  481. package/es/date-picker/locale/cs_CZ.js +1 -0
  482. package/es/date-picker/locale/da_DK.d.ts +3 -0
  483. package/es/date-picker/locale/da_DK.js +1 -0
  484. package/es/date-picker/locale/de_DE.d.ts +3 -0
  485. package/es/date-picker/locale/de_DE.js +1 -0
  486. package/es/date-picker/locale/el_GR.d.ts +3 -0
  487. package/es/date-picker/locale/el_GR.js +1 -0
  488. package/es/date-picker/locale/en_GB.d.ts +3 -0
  489. package/es/date-picker/locale/en_GB.js +1 -0
  490. package/es/date-picker/locale/en_US.d.ts +3 -0
  491. package/es/date-picker/locale/en_US.js +1 -0
  492. package/es/date-picker/locale/es_ES.d.ts +3 -0
  493. package/es/date-picker/locale/es_ES.js +1 -0
  494. package/es/date-picker/locale/et_EE.d.ts +3 -0
  495. package/es/date-picker/locale/et_EE.js +1 -0
  496. package/es/date-picker/locale/eu_ES.d.ts +3 -0
  497. package/es/date-picker/locale/eu_ES.js +1 -0
  498. package/es/date-picker/locale/fa_IR.d.ts +3 -0
  499. package/es/date-picker/locale/fa_IR.js +1 -0
  500. package/es/date-picker/locale/fi_FI.d.ts +3 -0
  501. package/es/date-picker/locale/fi_FI.js +1 -0
  502. package/es/date-picker/locale/fr_BE.d.ts +3 -0
  503. package/es/date-picker/locale/fr_BE.js +1 -0
  504. package/es/date-picker/locale/fr_CA.d.ts +3 -0
  505. package/es/date-picker/locale/fr_CA.js +1 -0
  506. package/es/date-picker/locale/fr_FR.d.ts +3 -0
  507. package/es/date-picker/locale/fr_FR.js +1 -0
  508. package/es/date-picker/locale/ga_IE.d.ts +3 -0
  509. package/es/date-picker/locale/ga_IE.js +1 -0
  510. package/es/date-picker/locale/gl_ES.d.ts +3 -0
  511. package/es/date-picker/locale/gl_ES.js +1 -0
  512. package/es/date-picker/locale/he_IL.d.ts +3 -0
  513. package/es/date-picker/locale/he_IL.js +1 -0
  514. package/es/date-picker/locale/hi_IN.d.ts +3 -0
  515. package/es/date-picker/locale/hi_IN.js +1 -0
  516. package/es/date-picker/locale/hr_HR.d.ts +3 -0
  517. package/es/date-picker/locale/hr_HR.js +1 -0
  518. package/es/date-picker/locale/hu_HU.d.ts +3 -0
  519. package/es/date-picker/locale/hu_HU.js +1 -0
  520. package/es/date-picker/locale/id_ID.d.ts +3 -0
  521. package/es/date-picker/locale/id_ID.js +1 -0
  522. package/es/date-picker/locale/is_IS.d.ts +3 -0
  523. package/es/date-picker/locale/is_IS.js +1 -0
  524. package/es/date-picker/locale/it_IT.d.ts +3 -0
  525. package/es/date-picker/locale/it_IT.js +1 -0
  526. package/es/date-picker/locale/ja_JP.d.ts +3 -0
  527. package/es/date-picker/locale/ja_JP.js +1 -0
  528. package/es/date-picker/locale/ka_GE.d.ts +3 -0
  529. package/es/date-picker/locale/ka_GE.js +1 -0
  530. package/es/date-picker/locale/kk_KZ.d.ts +3 -0
  531. package/es/date-picker/locale/kk_KZ.js +1 -0
  532. package/es/date-picker/locale/km_KH.d.ts +3 -0
  533. package/es/date-picker/locale/km_KH.js +1 -0
  534. package/es/date-picker/locale/kmr_IQ.d.ts +3 -0
  535. package/es/date-picker/locale/kmr_IQ.js +1 -0
  536. package/es/date-picker/locale/kn_IN.d.ts +3 -0
  537. package/es/date-picker/locale/kn_IN.js +1 -0
  538. package/es/date-picker/locale/ko_KR.d.ts +3 -0
  539. package/es/date-picker/locale/ko_KR.js +1 -0
  540. package/es/date-picker/locale/lt_LT.d.ts +3 -0
  541. package/es/date-picker/locale/lt_LT.js +1 -0
  542. package/es/date-picker/locale/lv_LV.d.ts +3 -0
  543. package/es/date-picker/locale/lv_LV.js +1 -0
  544. package/es/date-picker/locale/mk_MK.d.ts +3 -0
  545. package/es/date-picker/locale/mk_MK.js +1 -0
  546. package/es/date-picker/locale/ml_IN.d.ts +3 -0
  547. package/es/date-picker/locale/ml_IN.js +1 -0
  548. package/es/date-picker/locale/mn_MN.d.ts +3 -0
  549. package/es/date-picker/locale/mn_MN.js +1 -0
  550. package/es/date-picker/locale/ms_MY.d.ts +3 -0
  551. package/es/date-picker/locale/ms_MY.js +1 -0
  552. package/es/date-picker/locale/my_MM.d.ts +3 -0
  553. package/es/date-picker/locale/my_MM.js +1 -0
  554. package/es/date-picker/locale/nb_NO.d.ts +3 -0
  555. package/es/date-picker/locale/nb_NO.js +1 -0
  556. package/es/date-picker/locale/nl_BE.d.ts +3 -0
  557. package/es/date-picker/locale/nl_BE.js +1 -0
  558. package/es/date-picker/locale/nl_NL.d.ts +3 -0
  559. package/es/date-picker/locale/nl_NL.js +1 -0
  560. package/es/date-picker/locale/pl_PL.d.ts +3 -0
  561. package/es/date-picker/locale/pl_PL.js +1 -0
  562. package/es/date-picker/locale/pt_BR.d.ts +3 -0
  563. package/es/date-picker/locale/pt_BR.js +1 -0
  564. package/es/date-picker/locale/pt_PT.d.ts +3 -0
  565. package/es/date-picker/locale/pt_PT.js +1 -0
  566. package/es/date-picker/locale/ro_RO.d.ts +3 -0
  567. package/es/date-picker/locale/ro_RO.js +1 -0
  568. package/es/date-picker/locale/ru_RU.d.ts +4 -0
  569. package/es/date-picker/locale/ru_RU.js +1 -0
  570. package/es/date-picker/locale/si_LK.d.ts +3 -0
  571. package/es/date-picker/locale/si_LK.js +1 -0
  572. package/es/date-picker/locale/sk_SK.d.ts +3 -0
  573. package/es/date-picker/locale/sk_SK.js +1 -0
  574. package/es/date-picker/locale/sl_SI.d.ts +3 -0
  575. package/es/date-picker/locale/sl_SI.js +1 -0
  576. package/es/date-picker/locale/sr_RS.d.ts +3 -0
  577. package/es/date-picker/locale/sr_RS.js +1 -0
  578. package/es/date-picker/locale/sv_SE.d.ts +3 -0
  579. package/es/date-picker/locale/sv_SE.js +1 -0
  580. package/es/date-picker/locale/ta_IN.d.ts +3 -0
  581. package/es/date-picker/locale/ta_IN.js +1 -0
  582. package/es/date-picker/locale/th_TH.d.ts +3 -0
  583. package/es/date-picker/locale/th_TH.js +1 -0
  584. package/es/date-picker/locale/tk_TK.d.ts +3 -0
  585. package/es/date-picker/locale/tk_TK.js +1 -0
  586. package/es/date-picker/locale/tr_TR.d.ts +3 -0
  587. package/es/date-picker/locale/tr_TR.js +1 -0
  588. package/es/date-picker/locale/uk_UA.d.ts +3 -0
  589. package/es/date-picker/locale/uk_UA.js +1 -0
  590. package/es/date-picker/locale/ur_PK.d.ts +3 -0
  591. package/es/date-picker/locale/ur_PK.js +1 -0
  592. package/es/date-picker/locale/uz_UZ.d.ts +3 -0
  593. package/es/date-picker/locale/uz_UZ.js +1 -0
  594. package/es/date-picker/locale/vi_VN.d.ts +3 -0
  595. package/es/date-picker/locale/vi_VN.js +1 -0
  596. package/es/date-picker/locale/zh_CN.d.ts +3 -0
  597. package/es/date-picker/locale/zh_CN.js +1 -0
  598. package/es/date-picker/locale/zh_TW.d.ts +3 -0
  599. package/es/date-picker/locale/zh_TW.js +1 -0
  600. package/es/date-picker/style/index.d.ts +7 -0
  601. package/es/date-picker/style/index.js +86 -0
  602. package/es/date-picker/style/multiple.d.ts +4 -0
  603. package/es/date-picker/style/multiple.js +35 -0
  604. package/es/date-picker/style/panel.d.ts +6 -0
  605. package/es/date-picker/style/panel.js +12 -0
  606. package/es/date-picker/style/token.d.ts +103 -0
  607. package/es/date-picker/style/token.js +35 -0
  608. package/es/date-picker/style/variants.d.ts +4 -0
  609. package/es/date-picker/style/variants.js +35 -0
  610. package/es/date-picker/util.d.ts +8 -0
  611. package/es/date-picker/util.js +1 -0
  612. package/es/descriptions/Cell.d.ts +17 -0
  613. package/es/descriptions/Cell.js +1 -0
  614. package/es/descriptions/DescriptionsContext.d.ts +7 -0
  615. package/es/descriptions/DescriptionsContext.js +1 -0
  616. package/es/descriptions/Item.d.ts +13 -0
  617. package/es/descriptions/Item.js +1 -0
  618. package/es/descriptions/Row.d.ts +13 -0
  619. package/es/descriptions/Row.js +1 -0
  620. package/es/descriptions/constant.d.ts +3 -0
  621. package/es/descriptions/constant.js +1 -0
  622. package/es/descriptions/hooks/useItems.d.ts +4 -0
  623. package/es/descriptions/hooks/useItems.js +35 -0
  624. package/es/descriptions/hooks/useRow.d.ts +3 -0
  625. package/es/descriptions/hooks/useRow.js +1 -0
  626. package/es/descriptions/index.d.ts +42 -0
  627. package/es/descriptions/index.js +40 -0
  628. package/es/descriptions/style/index.d.ts +52 -0
  629. package/es/descriptions/style/index.js +35 -0
  630. package/es/divider/index.d.ts +20 -0
  631. package/es/divider/index.js +40 -0
  632. package/es/divider/style/index.d.ts +23 -0
  633. package/es/divider/style/index.js +35 -0
  634. package/es/drag/SortableBoard.d.ts +4 -0
  635. package/es/drag/SortableBoard.js +1 -0
  636. package/es/drag/SortableBoardProvider.d.ts +14 -0
  637. package/es/drag/SortableBoardProvider.js +1 -0
  638. package/es/drag/SortableList.d.ts +8 -0
  639. package/es/drag/SortableList.js +1 -0
  640. package/es/drag/SortableZone.d.ts +7 -0
  641. package/es/drag/SortableZone.js +1 -0
  642. package/es/drag/SortableZoneShared.d.ts +36 -0
  643. package/es/drag/SortableZoneShared.js +1 -0
  644. package/es/drag/index.d.ts +12 -0
  645. package/es/drag/index.js +1 -0
  646. package/es/drag/type.d.ts +362 -0
  647. package/es/drag/type.js +0 -0
  648. package/es/drawer/DrawerPanel.d.ts +49 -0
  649. package/es/drawer/DrawerPanel.js +55 -0
  650. package/es/drawer/index.d.ts +34 -0
  651. package/es/drawer/index.js +55 -0
  652. package/es/drawer/style/index.d.ts +23 -0
  653. package/es/drawer/style/index.js +35 -0
  654. package/es/drawer/style/motion.d.ts +4 -0
  655. package/es/drawer/style/motion.js +1 -0
  656. package/es/dropdown/dropdown-button.d.ts +21 -0
  657. package/es/dropdown/dropdown-button.js +88 -0
  658. package/es/dropdown/dropdown.d.ts +50 -0
  659. package/es/dropdown/dropdown.js +83 -0
  660. package/es/dropdown/index.d.ts +8 -0
  661. package/es/dropdown/index.js +89 -0
  662. package/es/dropdown/style/index.d.ts +40 -0
  663. package/es/dropdown/style/index.js +64 -0
  664. package/es/dropdown/style/status.d.ts +4 -0
  665. package/es/dropdown/style/status.js +1 -0
  666. package/es/empty/empty.d.ts +3 -0
  667. package/es/empty/empty.js +36 -0
  668. package/es/empty/index.d.ts +21 -0
  669. package/es/empty/index.js +41 -0
  670. package/es/empty/simple.d.ts +3 -0
  671. package/es/empty/simple.js +36 -0
  672. package/es/empty/style/index.d.ts +5 -0
  673. package/es/empty/style/index.js +35 -0
  674. package/es/flex/index.d.ts +4 -0
  675. package/es/flex/index.js +40 -0
  676. package/es/flex/interface.d.ts +15 -0
  677. package/es/flex/interface.js +0 -0
  678. package/es/flex/style/index.d.ts +30 -0
  679. package/es/flex/style/index.js +35 -0
  680. package/es/flex/utils.d.ts +6 -0
  681. package/es/flex/utils.js +1 -0
  682. package/es/form/ErrorList.d.ts +13 -0
  683. package/es/form/ErrorList.js +50 -0
  684. package/es/form/Form.d.ts +43 -0
  685. package/es/form/Form.js +50 -0
  686. package/es/form/FormItem/ItemHolder.d.ts +18 -0
  687. package/es/form/FormItem/ItemHolder.js +59 -0
  688. package/es/form/FormItem/StatusProvider.d.ts +16 -0
  689. package/es/form/FormItem/StatusProvider.js +1 -0
  690. package/es/form/FormItem/index.d.ts +46 -0
  691. package/es/form/FormItem/index.js +60 -0
  692. package/es/form/FormItemInput.d.ts +22 -0
  693. package/es/form/FormItemInput.js +50 -0
  694. package/es/form/FormItemLabel.d.ts +22 -0
  695. package/es/form/FormItemLabel.js +49 -0
  696. package/es/form/FormList.d.ts +25 -0
  697. package/es/form/FormList.js +40 -0
  698. package/es/form/context.d.ts +52 -0
  699. package/es/form/context.js +1 -0
  700. package/es/form/hooks/useChildren.d.ts +2 -0
  701. package/es/form/hooks/useChildren.js +1 -0
  702. package/es/form/hooks/useDebounce.d.ts +1 -0
  703. package/es/form/hooks/useDebounce.js +1 -0
  704. package/es/form/hooks/useForm.d.ts +8 -0
  705. package/es/form/hooks/useForm.js +1 -0
  706. package/es/form/hooks/useFormInstance.d.ts +2 -0
  707. package/es/form/hooks/useFormInstance.js +1 -0
  708. package/es/form/hooks/useFormItemStatus.d.ts +9 -0
  709. package/es/form/hooks/useFormItemStatus.js +2 -0
  710. package/es/form/hooks/useFormWarning.d.ts +2 -0
  711. package/es/form/hooks/useFormWarning.js +1 -0
  712. package/es/form/hooks/useFrameState.d.ts +3 -0
  713. package/es/form/hooks/useFrameState.js +1 -0
  714. package/es/form/hooks/useItemRef.d.ts +3 -0
  715. package/es/form/hooks/useItemRef.js +1 -0
  716. package/es/form/hooks/useVariants.d.ts +7 -0
  717. package/es/form/hooks/useVariants.js +40 -0
  718. package/es/form/index.d.ts +26 -0
  719. package/es/form/index.js +60 -0
  720. package/es/form/interface.d.ts +3 -0
  721. package/es/form/interface.js +0 -0
  722. package/es/form/style/explain.d.ts +4 -0
  723. package/es/form/style/explain.js +3 -0
  724. package/es/form/style/fallbackCmp.d.ts +6 -0
  725. package/es/form/style/fallbackCmp.js +45 -0
  726. package/es/form/style/index.d.ts +74 -0
  727. package/es/form/style/index.js +45 -0
  728. package/es/form/util.d.ts +9 -0
  729. package/es/form/util.js +1 -0
  730. package/es/form/validateMessagesContext.d.ts +3 -0
  731. package/es/form/validateMessagesContext.js +1 -0
  732. package/es/form-area/ValidateTooltip.d.ts +12 -0
  733. package/es/form-area/ValidateTooltip.js +353 -0
  734. package/es/form-area/index.d.ts +4 -0
  735. package/es/form-area/index.js +353 -0
  736. package/es/form-area/renderItemMap.d.ts +45 -0
  737. package/es/form-area/renderItemMap.js +353 -0
  738. package/es/form-area/type.d.ts +158 -0
  739. package/es/form-area/type.js +0 -0
  740. package/es/grid/RowContext.d.ts +6 -0
  741. package/es/grid/RowContext.js +1 -0
  742. package/es/grid/col.d.ts +29 -0
  743. package/es/grid/col.js +40 -0
  744. package/es/grid/hooks/useBreakpoint.d.ts +3 -0
  745. package/es/grid/hooks/useBreakpoint.js +35 -0
  746. package/es/grid/index.d.ts +10 -0
  747. package/es/grid/index.js +40 -0
  748. package/es/grid/row.d.ts +20 -0
  749. package/es/grid/row.js +40 -0
  750. package/es/grid/style/index.d.ts +7 -0
  751. package/es/grid/style/index.js +35 -0
  752. package/es/hooks/index.d.ts +5 -0
  753. package/es/hooks/index.js +353 -0
  754. package/es/hooks/useDrawer.d.ts +10 -0
  755. package/es/hooks/useDrawer.js +1 -0
  756. package/es/hooks/useForm.d.ts +33 -0
  757. package/es/hooks/useForm.js +353 -0
  758. package/es/hooks/useModal.d.ts +10 -0
  759. package/es/hooks/useModal.js +1 -0
  760. package/es/hooks/useParsedHash.d.ts +9 -0
  761. package/es/hooks/useParsedHash.js +1 -0
  762. package/es/hooks/useUrlState.d.ts +9 -0
  763. package/es/hooks/useUrlState.js +1 -0
  764. package/es/icon/index.d.ts +2 -0
  765. package/es/icon/index.js +1 -0
  766. package/es/image/PreviewGroup.d.ts +15 -0
  767. package/es/image/PreviewGroup.js +54 -0
  768. package/es/image/index.d.ts +9 -0
  769. package/es/image/index.js +54 -0
  770. package/es/image/style/index.d.ts +59 -0
  771. package/es/image/style/index.js +49 -0
  772. package/es/index.d.ts +150 -0
  773. package/es/index.js +353 -0
  774. package/es/input/Group.d.ts +15 -0
  775. package/es/input/Group.js +58 -0
  776. package/es/input/Input.d.ts +25 -0
  777. package/es/input/Input.js +59 -0
  778. package/es/input/OTP/OTPInput.d.ts +11 -0
  779. package/es/input/OTP/OTPInput.js +59 -0
  780. package/es/input/OTP/index.d.ts +29 -0
  781. package/es/input/OTP/index.js +59 -0
  782. package/es/input/Password.d.ts +14 -0
  783. package/es/input/Password.js +59 -0
  784. package/es/input/Search.d.ts +12 -0
  785. package/es/input/Search.js +66 -0
  786. package/es/input/TextArea.d.ts +25 -0
  787. package/es/input/TextArea.js +59 -0
  788. package/es/input/hooks/useRemovePasswordTimeout.d.ts +2 -0
  789. package/es/input/hooks/useRemovePasswordTimeout.js +1 -0
  790. package/es/input/index.d.ts +20 -0
  791. package/es/input/index.js +66 -0
  792. package/es/input/style/index.d.ts +17 -0
  793. package/es/input/style/index.js +53 -0
  794. package/es/input/style/otp.d.ts +2 -0
  795. package/es/input/style/otp.js +35 -0
  796. package/es/input/style/token.d.ts +97 -0
  797. package/es/input/style/token.js +35 -0
  798. package/es/input/style/variants.d.ts +15 -0
  799. package/es/input/style/variants.js +35 -0
  800. package/es/input/utils.d.ts +8 -0
  801. package/es/input/utils.js +1 -0
  802. package/es/input-number/index.d.ts +34 -0
  803. package/es/input-number/index.js +70 -0
  804. package/es/input-number/style/index.d.ts +18 -0
  805. package/es/input-number/style/index.js +65 -0
  806. package/es/input-number/style/token.d.ts +52 -0
  807. package/es/input-number/style/token.js +35 -0
  808. package/es/layout/Sider.d.ts +28 -0
  809. package/es/layout/Sider.js +40 -0
  810. package/es/layout/context.d.ts +8 -0
  811. package/es/layout/context.js +1 -0
  812. package/es/layout/hooks/useHasSider.d.ts +2 -0
  813. package/es/layout/hooks/useHasSider.js +40 -0
  814. package/es/layout/index.d.ts +15 -0
  815. package/es/layout/index.js +40 -0
  816. package/es/layout/layout.d.ts +18 -0
  817. package/es/layout/layout.js +40 -0
  818. package/es/layout/style/index.d.ts +96 -0
  819. package/es/layout/style/index.js +35 -0
  820. package/es/layout/style/sider.d.ts +2 -0
  821. package/es/layout/style/sider.js +35 -0
  822. package/es/list/Item.d.ts +35 -0
  823. package/es/list/Item.js +40 -0
  824. package/es/list/context.d.ts +8 -0
  825. package/es/list/context.js +1 -0
  826. package/es/list/index.d.ts +56 -0
  827. package/es/list/index.js +111 -0
  828. package/es/list/style/index.d.ts +62 -0
  829. package/es/list/style/index.js +35 -0
  830. package/es/locale/ar_EG.d.ts +3 -0
  831. package/es/locale/ar_EG.js +1 -0
  832. package/es/locale/az_AZ.d.ts +3 -0
  833. package/es/locale/az_AZ.js +1 -0
  834. package/es/locale/bg_BG.d.ts +3 -0
  835. package/es/locale/bg_BG.js +1 -0
  836. package/es/locale/bn_BD.d.ts +3 -0
  837. package/es/locale/bn_BD.js +1 -0
  838. package/es/locale/by_BY.d.ts +3 -0
  839. package/es/locale/by_BY.js +1 -0
  840. package/es/locale/ca_ES.d.ts +3 -0
  841. package/es/locale/ca_ES.js +1 -0
  842. package/es/locale/context.d.ts +6 -0
  843. package/es/locale/context.js +1 -0
  844. package/es/locale/cs_CZ.d.ts +3 -0
  845. package/es/locale/cs_CZ.js +1 -0
  846. package/es/locale/da_DK.d.ts +3 -0
  847. package/es/locale/da_DK.js +1 -0
  848. package/es/locale/de_DE.d.ts +3 -0
  849. package/es/locale/de_DE.js +1 -0
  850. package/es/locale/el_GR.d.ts +3 -0
  851. package/es/locale/el_GR.js +1 -0
  852. package/es/locale/en_GB.d.ts +3 -0
  853. package/es/locale/en_GB.js +1 -0
  854. package/es/locale/en_US.d.ts +3 -0
  855. package/es/locale/en_US.js +1 -0
  856. package/es/locale/es_ES.d.ts +3 -0
  857. package/es/locale/es_ES.js +1 -0
  858. package/es/locale/et_EE.d.ts +3 -0
  859. package/es/locale/et_EE.js +1 -0
  860. package/es/locale/eu_ES.d.ts +3 -0
  861. package/es/locale/eu_ES.js +1 -0
  862. package/es/locale/fa_IR.d.ts +3 -0
  863. package/es/locale/fa_IR.js +1 -0
  864. package/es/locale/fi_FI.d.ts +3 -0
  865. package/es/locale/fi_FI.js +1 -0
  866. package/es/locale/fr_BE.d.ts +3 -0
  867. package/es/locale/fr_BE.js +1 -0
  868. package/es/locale/fr_CA.d.ts +3 -0
  869. package/es/locale/fr_CA.js +1 -0
  870. package/es/locale/fr_FR.d.ts +3 -0
  871. package/es/locale/fr_FR.js +1 -0
  872. package/es/locale/ga_IE.d.ts +3 -0
  873. package/es/locale/ga_IE.js +1 -0
  874. package/es/locale/gl_ES.d.ts +3 -0
  875. package/es/locale/gl_ES.js +1 -0
  876. package/es/locale/he_IL.d.ts +3 -0
  877. package/es/locale/he_IL.js +1 -0
  878. package/es/locale/hi_IN.d.ts +3 -0
  879. package/es/locale/hi_IN.js +1 -0
  880. package/es/locale/hr_HR.d.ts +3 -0
  881. package/es/locale/hr_HR.js +1 -0
  882. package/es/locale/hu_HU.d.ts +3 -0
  883. package/es/locale/hu_HU.js +1 -0
  884. package/es/locale/hy_AM.d.ts +3 -0
  885. package/es/locale/hy_AM.js +2 -0
  886. package/es/locale/id_ID.d.ts +3 -0
  887. package/es/locale/id_ID.js +1 -0
  888. package/es/locale/index.d.ts +61 -0
  889. package/es/locale/index.js +2 -0
  890. package/es/locale/is_IS.d.ts +3 -0
  891. package/es/locale/is_IS.js +1 -0
  892. package/es/locale/it_IT.d.ts +3 -0
  893. package/es/locale/it_IT.js +1 -0
  894. package/es/locale/ja_JP.d.ts +3 -0
  895. package/es/locale/ja_JP.js +1 -0
  896. package/es/locale/ka_GE.d.ts +3 -0
  897. package/es/locale/ka_GE.js +1 -0
  898. package/es/locale/kk_KZ.d.ts +3 -0
  899. package/es/locale/kk_KZ.js +1 -0
  900. package/es/locale/km_KH.d.ts +3 -0
  901. package/es/locale/km_KH.js +1 -0
  902. package/es/locale/kmr_IQ.d.ts +3 -0
  903. package/es/locale/kmr_IQ.js +1 -0
  904. package/es/locale/kn_IN.d.ts +3 -0
  905. package/es/locale/kn_IN.js +1 -0
  906. package/es/locale/ko_KR.d.ts +3 -0
  907. package/es/locale/ko_KR.js +1 -0
  908. package/es/locale/ku_IQ.d.ts +3 -0
  909. package/es/locale/ku_IQ.js +1 -0
  910. package/es/locale/lt_LT.d.ts +3 -0
  911. package/es/locale/lt_LT.js +1 -0
  912. package/es/locale/lv_LV.d.ts +3 -0
  913. package/es/locale/lv_LV.js +1 -0
  914. package/es/locale/mk_MK.d.ts +3 -0
  915. package/es/locale/mk_MK.js +1 -0
  916. package/es/locale/ml_IN.d.ts +3 -0
  917. package/es/locale/ml_IN.js +1 -0
  918. package/es/locale/mn_MN.d.ts +3 -0
  919. package/es/locale/mn_MN.js +1 -0
  920. package/es/locale/ms_MY.d.ts +3 -0
  921. package/es/locale/ms_MY.js +1 -0
  922. package/es/locale/my_MM.d.ts +3 -0
  923. package/es/locale/my_MM.js +1 -0
  924. package/es/locale/nb_NO.d.ts +3 -0
  925. package/es/locale/nb_NO.js +1 -0
  926. package/es/locale/ne_NP.d.ts +3 -0
  927. package/es/locale/ne_NP.js +1 -0
  928. package/es/locale/nl_BE.d.ts +3 -0
  929. package/es/locale/nl_BE.js +1 -0
  930. package/es/locale/nl_NL.d.ts +3 -0
  931. package/es/locale/nl_NL.js +1 -0
  932. package/es/locale/pl_PL.d.ts +3 -0
  933. package/es/locale/pl_PL.js +1 -0
  934. package/es/locale/pt_BR.d.ts +3 -0
  935. package/es/locale/pt_BR.js +1 -0
  936. package/es/locale/pt_PT.d.ts +3 -0
  937. package/es/locale/pt_PT.js +1 -0
  938. package/es/locale/ro_RO.d.ts +3 -0
  939. package/es/locale/ro_RO.js +1 -0
  940. package/es/locale/ru_RU.d.ts +3 -0
  941. package/es/locale/ru_RU.js +1 -0
  942. package/es/locale/si_LK.d.ts +3 -0
  943. package/es/locale/si_LK.js +1 -0
  944. package/es/locale/sk_SK.d.ts +3 -0
  945. package/es/locale/sk_SK.js +1 -0
  946. package/es/locale/sl_SI.d.ts +3 -0
  947. package/es/locale/sl_SI.js +1 -0
  948. package/es/locale/sr_RS.d.ts +3 -0
  949. package/es/locale/sr_RS.js +1 -0
  950. package/es/locale/sv_SE.d.ts +3 -0
  951. package/es/locale/sv_SE.js +1 -0
  952. package/es/locale/ta_IN.d.ts +3 -0
  953. package/es/locale/ta_IN.js +1 -0
  954. package/es/locale/th_TH.d.ts +3 -0
  955. package/es/locale/th_TH.js +1 -0
  956. package/es/locale/tk_TK.d.ts +3 -0
  957. package/es/locale/tk_TK.js +1 -0
  958. package/es/locale/tr_TR.d.ts +3 -0
  959. package/es/locale/tr_TR.js +1 -0
  960. package/es/locale/uk_UA.d.ts +3 -0
  961. package/es/locale/uk_UA.js +1 -0
  962. package/es/locale/ur_PK.d.ts +3 -0
  963. package/es/locale/ur_PK.js +1 -0
  964. package/es/locale/useLocale.d.ts +4 -0
  965. package/es/locale/useLocale.js +1 -0
  966. package/es/locale/uz_UZ.d.ts +3 -0
  967. package/es/locale/uz_UZ.js +1 -0
  968. package/es/locale/vi_VN.d.ts +3 -0
  969. package/es/locale/vi_VN.js +1 -0
  970. package/es/locale/zh_CN.d.ts +3 -0
  971. package/es/locale/zh_CN.js +1 -0
  972. package/es/locale/zh_HK.d.ts +3 -0
  973. package/es/locale/zh_HK.js +1 -0
  974. package/es/locale/zh_TW.d.ts +3 -0
  975. package/es/locale/zh_TW.js +1 -0
  976. package/es/mentions/index.d.ts +45 -0
  977. package/es/mentions/index.js +58 -0
  978. package/es/mentions/style/index.d.ts +22 -0
  979. package/es/mentions/style/index.js +53 -0
  980. package/es/menu/MenuContext.d.ts +11 -0
  981. package/es/menu/MenuContext.js +1 -0
  982. package/es/menu/MenuDivider.d.ts +9 -0
  983. package/es/menu/MenuDivider.js +40 -0
  984. package/es/menu/MenuItem.d.ts +13 -0
  985. package/es/menu/MenuItem.js +49 -0
  986. package/es/menu/OverrideContext.d.ts +13 -0
  987. package/es/menu/OverrideContext.js +40 -0
  988. package/es/menu/SubMenu.d.ts +13 -0
  989. package/es/menu/SubMenu.js +35 -0
  990. package/es/menu/index.d.ts +32 -0
  991. package/es/menu/index.js +66 -0
  992. package/es/menu/interface.d.ts +20 -0
  993. package/es/menu/interface.js +0 -0
  994. package/es/menu/menu.d.ts +19 -0
  995. package/es/menu/menu.js +66 -0
  996. package/es/menu/style/horizontal.d.ts +4 -0
  997. package/es/menu/style/horizontal.js +3 -0
  998. package/es/menu/style/index.d.ts +354 -0
  999. package/es/menu/style/index.js +61 -0
  1000. package/es/menu/style/rtl.d.ts +5 -0
  1001. package/es/menu/style/rtl.js +2 -0
  1002. package/es/menu/style/theme.d.ts +4 -0
  1003. package/es/menu/style/theme.js +1 -0
  1004. package/es/menu/style/vertical.d.ts +4 -0
  1005. package/es/menu/style/vertical.js +9 -0
  1006. package/es/message/PurePanel.d.ts +23 -0
  1007. package/es/message/PurePanel.js +47 -0
  1008. package/es/message/index.d.ts +23 -0
  1009. package/es/message/index.js +47 -0
  1010. package/es/message/interface.d.ts +66 -0
  1011. package/es/message/interface.js +0 -0
  1012. package/es/message/style/index.d.ts +23 -0
  1013. package/es/message/style/index.js +42 -0
  1014. package/es/message/useMessage.d.ts +8 -0
  1015. package/es/message/useMessage.js +47 -0
  1016. package/es/message/util.d.ts +4 -0
  1017. package/es/message/util.js +1 -0
  1018. package/es/modal/ConfirmDialog.d.ts +32 -0
  1019. package/es/modal/ConfirmDialog.js +70 -0
  1020. package/es/modal/Modal.d.ts +4 -0
  1021. package/es/modal/Modal.js +68 -0
  1022. package/es/modal/PurePanel.d.ts +9 -0
  1023. package/es/modal/PurePanel.js +70 -0
  1024. package/es/modal/components/ConfirmCancelBtn.d.ts +10 -0
  1025. package/es/modal/components/ConfirmCancelBtn.js +48 -0
  1026. package/es/modal/components/ConfirmOkBtn.d.ts +9 -0
  1027. package/es/modal/components/ConfirmOkBtn.js +48 -0
  1028. package/es/modal/components/NormalCancelBtn.d.ts +8 -0
  1029. package/es/modal/components/NormalCancelBtn.js +48 -0
  1030. package/es/modal/components/NormalOkBtn.d.ts +8 -0
  1031. package/es/modal/components/NormalOkBtn.js +48 -0
  1032. package/es/modal/confirm.d.ts +20 -0
  1033. package/es/modal/confirm.js +70 -0
  1034. package/es/modal/context.d.ts +8 -0
  1035. package/es/modal/context.js +1 -0
  1036. package/es/modal/destroyFns.d.ts +2 -0
  1037. package/es/modal/destroyFns.js +1 -0
  1038. package/es/modal/index.d.ts +15 -0
  1039. package/es/modal/index.js +70 -0
  1040. package/es/modal/interface.d.ts +123 -0
  1041. package/es/modal/interface.js +0 -0
  1042. package/es/modal/locale.d.ts +7 -0
  1043. package/es/modal/locale.js +1 -0
  1044. package/es/modal/shared.d.ts +9 -0
  1045. package/es/modal/shared.js +48 -0
  1046. package/es/modal/style/confirm.d.ts +2 -0
  1047. package/es/modal/style/confirm.js +50 -0
  1048. package/es/modal/style/index.d.ts +110 -0
  1049. package/es/modal/style/index.js +49 -0
  1050. package/es/modal/useModal/HookModal.d.ts +17 -0
  1051. package/es/modal/useModal/HookModal.js +70 -0
  1052. package/es/modal/useModal/index.d.ts +8 -0
  1053. package/es/modal/useModal/index.js +70 -0
  1054. package/es/notification/PurePanel.d.ts +27 -0
  1055. package/es/notification/PurePanel.js +40 -0
  1056. package/es/notification/index.d.ts +22 -0
  1057. package/es/notification/index.js +41 -0
  1058. package/es/notification/interface.d.ts +68 -0
  1059. package/es/notification/interface.js +1 -0
  1060. package/es/notification/style/index.d.ts +89 -0
  1061. package/es/notification/style/index.js +35 -0
  1062. package/es/notification/style/placement.d.ts +5 -0
  1063. package/es/notification/style/placement.js +1 -0
  1064. package/es/notification/style/pure-panel.d.ts +2 -0
  1065. package/es/notification/style/pure-panel.js +35 -0
  1066. package/es/notification/style/stack.d.ts +4 -0
  1067. package/es/notification/style/stack.js +1 -0
  1068. package/es/notification/useNotification.d.ts +8 -0
  1069. package/es/notification/useNotification.js +40 -0
  1070. package/es/notification/util.d.ts +5 -0
  1071. package/es/notification/util.js +1 -0
  1072. package/es/pagination/Pagination.d.ts +25 -0
  1073. package/es/pagination/Pagination.js +111 -0
  1074. package/es/pagination/index.d.ts +3 -0
  1075. package/es/pagination/index.js +111 -0
  1076. package/es/pagination/style/bordered.d.ts +2 -0
  1077. package/es/pagination/style/bordered.js +68 -0
  1078. package/es/pagination/style/index.d.ts +99 -0
  1079. package/es/pagination/style/index.js +68 -0
  1080. package/es/pagination/useShowSizeChanger.d.ts +3 -0
  1081. package/es/pagination/useShowSizeChanger.js +1 -0
  1082. package/es/popconfirm/PurePanel.d.ts +20 -0
  1083. package/es/popconfirm/PurePanel.js +57 -0
  1084. package/es/popconfirm/index.d.ts +30 -0
  1085. package/es/popconfirm/index.js +57 -0
  1086. package/es/popconfirm/style/index.d.ts +17 -0
  1087. package/es/popconfirm/style/index.js +35 -0
  1088. package/es/popover/PurePanel.d.ts +17 -0
  1089. package/es/popover/PurePanel.js +49 -0
  1090. package/es/popover/index.d.ts +15 -0
  1091. package/es/popover/index.js +49 -0
  1092. package/es/popover/style/index.d.ts +46 -0
  1093. package/es/popover/style/index.js +44 -0
  1094. package/es/progress/Circle.d.ts +10 -0
  1095. package/es/progress/Circle.js +49 -0
  1096. package/es/progress/Line.d.ts +36 -0
  1097. package/es/progress/Line.js +35 -0
  1098. package/es/progress/Steps.d.ts +9 -0
  1099. package/es/progress/Steps.js +1 -0
  1100. package/es/progress/index.d.ts +3 -0
  1101. package/es/progress/index.js +49 -0
  1102. package/es/progress/progress.d.ts +58 -0
  1103. package/es/progress/progress.js +49 -0
  1104. package/es/progress/style/index.d.ts +38 -0
  1105. package/es/progress/style/index.js +35 -0
  1106. package/es/progress/utils.d.ts +10 -0
  1107. package/es/progress/utils.js +1 -0
  1108. package/es/qr-code/QrcodeStatus.d.ts +11 -0
  1109. package/es/qr-code/QrcodeStatus.js +48 -0
  1110. package/es/qr-code/index.d.ts +4 -0
  1111. package/es/qr-code/index.js +48 -0
  1112. package/es/qr-code/interface.d.ts +29 -0
  1113. package/es/qr-code/interface.js +0 -0
  1114. package/es/qr-code/style/index.d.ts +6 -0
  1115. package/es/qr-code/style/index.js +35 -0
  1116. package/es/qrcode/index.d.ts +2 -0
  1117. package/es/qrcode/index.js +48 -0
  1118. package/es/qrcode/interface.d.ts +1 -0
  1119. package/es/qrcode/interface.js +0 -0
  1120. package/es/qrcode/style/index.d.ts +1 -0
  1121. package/es/qrcode/style/index.js +35 -0
  1122. package/es/radio/context.d.ts +7 -0
  1123. package/es/radio/context.js +1 -0
  1124. package/es/radio/group.d.ts +4 -0
  1125. package/es/radio/group.js +41 -0
  1126. package/es/radio/index.d.ts +11 -0
  1127. package/es/radio/index.js +41 -0
  1128. package/es/radio/interface.d.ts +43 -0
  1129. package/es/radio/interface.js +0 -0
  1130. package/es/radio/radio.d.ts +4 -0
  1131. package/es/radio/radio.js +41 -0
  1132. package/es/radio/radioButton.d.ts +6 -0
  1133. package/es/radio/radioButton.js +41 -0
  1134. package/es/radio/style/index.d.ts +76 -0
  1135. package/es/radio/style/index.js +36 -0
  1136. package/es/rate/index.d.ts +8 -0
  1137. package/es/rate/index.js +49 -0
  1138. package/es/rate/style/index.d.ts +27 -0
  1139. package/es/rate/style/index.js +35 -0
  1140. package/es/result/index.d.ts +33 -0
  1141. package/es/result/index.js +41 -0
  1142. package/es/result/noFound.d.ts +3 -0
  1143. package/es/result/noFound.js +1 -0
  1144. package/es/result/serverError.d.ts +3 -0
  1145. package/es/result/serverError.js +1 -0
  1146. package/es/result/style/index.d.ts +27 -0
  1147. package/es/result/style/index.js +35 -0
  1148. package/es/result/unauthorized.d.ts +3 -0
  1149. package/es/result/unauthorized.js +1 -0
  1150. package/es/row/index.d.ts +4 -0
  1151. package/es/row/index.js +40 -0
  1152. package/es/row/style/index.d.ts +2 -0
  1153. package/es/row/style/index.js +1 -0
  1154. package/es/search-area/index.d.ts +5 -0
  1155. package/es/search-area/index.js +353 -0
  1156. package/es/search-area/style/index.d.ts +2 -0
  1157. package/es/search-area/style/index.js +1 -0
  1158. package/es/segmented/index.d.ts +26 -0
  1159. package/es/segmented/index.js +40 -0
  1160. package/es/segmented/style/index.d.ts +46 -0
  1161. package/es/segmented/style/index.js +35 -0
  1162. package/es/select/index.d.ts +57 -0
  1163. package/es/select/index.js +78 -0
  1164. package/es/select/mergedBuiltinPlacements.d.ts +4 -0
  1165. package/es/select/mergedBuiltinPlacements.js +1 -0
  1166. package/es/select/style/dropdown.d.ts +4 -0
  1167. package/es/select/style/dropdown.js +24 -0
  1168. package/es/select/style/index.d.ts +4 -0
  1169. package/es/select/style/index.js +73 -0
  1170. package/es/select/style/multiple.d.ts +32 -0
  1171. package/es/select/style/multiple.js +40 -0
  1172. package/es/select/style/single.d.ts +3 -0
  1173. package/es/select/style/single.js +45 -0
  1174. package/es/select/style/token.d.ts +138 -0
  1175. package/es/select/style/token.js +1 -0
  1176. package/es/select/style/variants.d.ts +4 -0
  1177. package/es/select/style/variants.js +1 -0
  1178. package/es/select/useIcons.d.ts +26 -0
  1179. package/es/select/useIcons.js +1 -0
  1180. package/es/select/useShowArrow.d.ts +8 -0
  1181. package/es/select/useShowArrow.js +1 -0
  1182. package/es/skeleton/Avatar.d.ts +7 -0
  1183. package/es/skeleton/Avatar.js +47 -0
  1184. package/es/skeleton/Button.d.ts +8 -0
  1185. package/es/skeleton/Button.js +47 -0
  1186. package/es/skeleton/Element.d.ts +12 -0
  1187. package/es/skeleton/Element.js +1 -0
  1188. package/es/skeleton/Image.d.ts +6 -0
  1189. package/es/skeleton/Image.js +48 -0
  1190. package/es/skeleton/Input.d.ts +8 -0
  1191. package/es/skeleton/Input.js +47 -0
  1192. package/es/skeleton/Node.d.ts +8 -0
  1193. package/es/skeleton/Node.js +47 -0
  1194. package/es/skeleton/Paragraph.d.ts +11 -0
  1195. package/es/skeleton/Paragraph.js +1 -0
  1196. package/es/skeleton/Skeleton.d.ts +32 -0
  1197. package/es/skeleton/Skeleton.js +48 -0
  1198. package/es/skeleton/Title.d.ts +9 -0
  1199. package/es/skeleton/Title.js +1 -0
  1200. package/es/skeleton/index.d.ts +3 -0
  1201. package/es/skeleton/index.js +48 -0
  1202. package/es/skeleton/style/index.d.ts +40 -0
  1203. package/es/skeleton/style/index.js +42 -0
  1204. package/es/slider/Context.d.ts +9 -0
  1205. package/es/slider/Context.js +1 -0
  1206. package/es/slider/SliderTooltip.d.ts +8 -0
  1207. package/es/slider/SliderTooltip.js +49 -0
  1208. package/es/slider/index.d.ts +97 -0
  1209. package/es/slider/index.js +61 -0
  1210. package/es/slider/style/index.d.ts +97 -0
  1211. package/es/slider/style/index.js +47 -0
  1212. package/es/slider/useRafLock.d.ts +1 -0
  1213. package/es/slider/useRafLock.js +1 -0
  1214. package/es/space/Compact.d.ts +25 -0
  1215. package/es/space/Compact.js +40 -0
  1216. package/es/space/Item.d.ts +10 -0
  1217. package/es/space/Item.js +1 -0
  1218. package/es/space/context.d.ts +6 -0
  1219. package/es/space/context.js +1 -0
  1220. package/es/space/index.d.ts +28 -0
  1221. package/es/space/index.js +40 -0
  1222. package/es/space/style/compact.d.ts +8 -0
  1223. package/es/space/style/compact.js +1 -0
  1224. package/es/space/style/index.d.ts +7 -0
  1225. package/es/space/style/index.js +35 -0
  1226. package/es/spin/Indicator/Looper.d.ts +6 -0
  1227. package/es/spin/Indicator/Looper.js +1 -0
  1228. package/es/spin/Indicator/Progress.d.ts +7 -0
  1229. package/es/spin/Indicator/Progress.js +1 -0
  1230. package/es/spin/Indicator/index.d.ts +7 -0
  1231. package/es/spin/Indicator/index.js +1 -0
  1232. package/es/spin/index.d.ts +36 -0
  1233. package/es/spin/index.js +40 -0
  1234. package/es/spin/style/index.d.ts +26 -0
  1235. package/es/spin/style/index.js +35 -0
  1236. package/es/spin/usePercent.d.ts +1 -0
  1237. package/es/spin/usePercent.js +1 -0
  1238. package/es/splitter/Panel.d.ts +7 -0
  1239. package/es/splitter/Panel.js +1 -0
  1240. package/es/splitter/SplitBar.d.ts +19 -0
  1241. package/es/splitter/SplitBar.js +1 -0
  1242. package/es/splitter/Splitter.d.ts +4 -0
  1243. package/es/splitter/Splitter.js +40 -0
  1244. package/es/splitter/hooks/useItems.d.ts +12 -0
  1245. package/es/splitter/hooks/useItems.js +1 -0
  1246. package/es/splitter/hooks/useResizable.d.ts +7 -0
  1247. package/es/splitter/hooks/useResizable.js +1 -0
  1248. package/es/splitter/hooks/useResize.d.ts +6 -0
  1249. package/es/splitter/hooks/useResize.js +1 -0
  1250. package/es/splitter/hooks/useSizes.d.ts +8 -0
  1251. package/es/splitter/hooks/useSizes.js +1 -0
  1252. package/es/splitter/index.d.ts +8 -0
  1253. package/es/splitter/index.js +40 -0
  1254. package/es/splitter/interface.d.ts +64 -0
  1255. package/es/splitter/interface.js +0 -0
  1256. package/es/splitter/style/index.d.ts +27 -0
  1257. package/es/splitter/style/index.js +35 -0
  1258. package/es/statistic/Countdown.d.ts +10 -0
  1259. package/es/statistic/Countdown.js +48 -0
  1260. package/es/statistic/Number.d.ts +8 -0
  1261. package/es/statistic/Number.js +1 -0
  1262. package/es/statistic/Statistic.d.ts +21 -0
  1263. package/es/statistic/Statistic.js +48 -0
  1264. package/es/statistic/index.d.ts +11 -0
  1265. package/es/statistic/index.js +48 -0
  1266. package/es/statistic/interface.d.ts +0 -0
  1267. package/es/statistic/interface.js +0 -0
  1268. package/es/statistic/style/index.d.ts +16 -0
  1269. package/es/statistic/style/index.js +35 -0
  1270. package/es/statistic/utils.d.ts +15 -0
  1271. package/es/statistic/utils.js +1 -0
  1272. package/es/steps/index.d.ts +39 -0
  1273. package/es/steps/index.js +49 -0
  1274. package/es/steps/style/custom-icon.d.ts +5 -0
  1275. package/es/steps/style/custom-icon.js +1 -0
  1276. package/es/steps/style/horizontal.d.ts +5 -0
  1277. package/es/steps/style/horizontal.js +1 -0
  1278. package/es/steps/style/index.d.ts +102 -0
  1279. package/es/steps/style/index.js +35 -0
  1280. package/es/steps/style/inline.d.ts +5 -0
  1281. package/es/steps/style/inline.js +1 -0
  1282. package/es/steps/style/label-placement.d.ts +5 -0
  1283. package/es/steps/style/label-placement.js +1 -0
  1284. package/es/steps/style/nav.d.ts +5 -0
  1285. package/es/steps/style/nav.js +1 -0
  1286. package/es/steps/style/progress-dot.d.ts +5 -0
  1287. package/es/steps/style/progress-dot.js +1 -0
  1288. package/es/steps/style/progress.d.ts +5 -0
  1289. package/es/steps/style/progress.js +1 -0
  1290. package/es/steps/style/rtl.d.ts +5 -0
  1291. package/es/steps/style/rtl.js +1 -0
  1292. package/es/steps/style/small.d.ts +5 -0
  1293. package/es/steps/style/small.js +1 -0
  1294. package/es/steps/style/vertical.d.ts +5 -0
  1295. package/es/steps/style/vertical.js +1 -0
  1296. package/es/steps/useLegacyItems.d.ts +3 -0
  1297. package/es/steps/useLegacyItems.js +1 -0
  1298. package/es/style/compact-item-vertical.d.ts +3 -0
  1299. package/es/style/compact-item-vertical.js +1 -0
  1300. package/es/style/compact-item.d.ts +17 -0
  1301. package/es/style/compact-item.js +1 -0
  1302. package/es/style/index.d.ts +12 -0
  1303. package/es/style/index.js +1 -0
  1304. package/es/style/motion/collapse.d.ts +3 -0
  1305. package/es/style/motion/collapse.js +3 -0
  1306. package/es/style/motion/fade.d.ts +6 -0
  1307. package/es/style/motion/fade.js +10 -0
  1308. package/es/style/motion/index.d.ts +6 -0
  1309. package/es/style/motion/index.js +21 -0
  1310. package/es/style/motion/motion.d.ts +2 -0
  1311. package/es/style/motion/motion.js +7 -0
  1312. package/es/style/motion/move.d.ts +14 -0
  1313. package/es/style/motion/move.js +10 -0
  1314. package/es/style/motion/slide.d.ts +14 -0
  1315. package/es/style/motion/slide.js +10 -0
  1316. package/es/style/motion/zoom.d.ts +18 -0
  1317. package/es/style/motion/zoom.js +10 -0
  1318. package/es/style/placementArrow.d.ts +19 -0
  1319. package/es/style/placementArrow.js +1 -0
  1320. package/es/style/roundedArrow.d.ts +7 -0
  1321. package/es/style/roundedArrow.js +1 -0
  1322. package/es/switch/index.d.ts +37 -0
  1323. package/es/switch/index.js +41 -0
  1324. package/es/switch/style/index.d.ts +71 -0
  1325. package/es/switch/style/index.js +35 -0
  1326. package/es/table/Column.d.ts +8 -0
  1327. package/es/table/Column.js +1 -0
  1328. package/es/table/ColumnGroup.d.ts +10 -0
  1329. package/es/table/ColumnGroup.js +1 -0
  1330. package/es/table/ExpandIcon.d.ts +12 -0
  1331. package/es/table/ExpandIcon.js +1 -0
  1332. package/es/table/InternalTable.d.ts +32 -0
  1333. package/es/table/InternalTable.js +216 -0
  1334. package/es/table/RcTable/VirtualTable.d.ts +5 -0
  1335. package/es/table/RcTable/VirtualTable.js +1 -0
  1336. package/es/table/RcTable/index.d.ts +5 -0
  1337. package/es/table/RcTable/index.js +1 -0
  1338. package/es/table/Table.d.ts +17 -0
  1339. package/es/table/Table.js +216 -0
  1340. package/es/table/hooks/useContainerWidth.d.ts +1 -0
  1341. package/es/table/hooks/useContainerWidth.js +1 -0
  1342. package/es/table/hooks/useFilter/FilterDropdown.d.ts +31 -0
  1343. package/es/table/hooks/useFilter/FilterDropdown.js +114 -0
  1344. package/es/table/hooks/useFilter/FilterSearch.d.ts +12 -0
  1345. package/es/table/hooks/useFilter/FilterSearch.js +66 -0
  1346. package/es/table/hooks/useFilter/FilterWrapper.d.ts +8 -0
  1347. package/es/table/hooks/useFilter/FilterWrapper.js +1 -0
  1348. package/es/table/hooks/useFilter/index.d.ts +22 -0
  1349. package/es/table/hooks/useFilter/index.js +114 -0
  1350. package/es/table/hooks/useLazyKVMap.d.ts +4 -0
  1351. package/es/table/hooks/useLazyKVMap.js +1 -0
  1352. package/es/table/hooks/usePagination.d.ts +5 -0
  1353. package/es/table/hooks/usePagination.js +1 -0
  1354. package/es/table/hooks/useSelection.d.ts +20 -0
  1355. package/es/table/hooks/useSelection.js +95 -0
  1356. package/es/table/hooks/useSorter.d.ts +19 -0
  1357. package/es/table/hooks/useSorter.js +49 -0
  1358. package/es/table/hooks/useTitleColumns.d.ts +4 -0
  1359. package/es/table/hooks/useTitleColumns.js +1 -0
  1360. package/es/table/index.d.ts +7 -0
  1361. package/es/table/index.js +216 -0
  1362. package/es/table/interface.d.ts +194 -0
  1363. package/es/table/interface.js +1 -0
  1364. package/es/table/style/bordered.d.ts +5 -0
  1365. package/es/table/style/bordered.js +10 -0
  1366. package/es/table/style/ellipsis.d.ts +5 -0
  1367. package/es/table/style/ellipsis.js +4 -0
  1368. package/es/table/style/empty.d.ts +5 -0
  1369. package/es/table/style/empty.js +1 -0
  1370. package/es/table/style/expand.d.ts +5 -0
  1371. package/es/table/style/expand.js +1 -0
  1372. package/es/table/style/filter.d.ts +4 -0
  1373. package/es/table/style/filter.js +1 -0
  1374. package/es/table/style/fixed.d.ts +5 -0
  1375. package/es/table/style/fixed.js +21 -0
  1376. package/es/table/style/index.d.ts +202 -0
  1377. package/es/table/style/index.js +97 -0
  1378. package/es/table/style/pagination.d.ts +5 -0
  1379. package/es/table/style/pagination.js +1 -0
  1380. package/es/table/style/radius.d.ts +5 -0
  1381. package/es/table/style/radius.js +1 -0
  1382. package/es/table/style/rtl.d.ts +5 -0
  1383. package/es/table/style/rtl.js +1 -0
  1384. package/es/table/style/selection.d.ts +5 -0
  1385. package/es/table/style/selection.js +5 -0
  1386. package/es/table/style/size.d.ts +5 -0
  1387. package/es/table/style/size.js +10 -0
  1388. package/es/table/style/sorter.d.ts +5 -0
  1389. package/es/table/style/sorter.js +4 -0
  1390. package/es/table/style/sticky.d.ts +5 -0
  1391. package/es/table/style/sticky.js +1 -0
  1392. package/es/table/style/summary.d.ts +5 -0
  1393. package/es/table/style/summary.js +1 -0
  1394. package/es/table/style/virtual.d.ts +5 -0
  1395. package/es/table/style/virtual.js +4 -0
  1396. package/es/table/util.d.ts +13 -0
  1397. package/es/table/util.js +1 -0
  1398. package/es/tabs/TabPane.d.ts +5 -0
  1399. package/es/tabs/TabPane.js +1 -0
  1400. package/es/tabs/hooks/useAnimateConfig.d.ts +3 -0
  1401. package/es/tabs/hooks/useAnimateConfig.js +40 -0
  1402. package/es/tabs/hooks/useLegacyItems.d.ts +4 -0
  1403. package/es/tabs/hooks/useLegacyItems.js +1 -0
  1404. package/es/tabs/index.d.ts +29 -0
  1405. package/es/tabs/index.js +51 -0
  1406. package/es/tabs/style/index.d.ts +136 -0
  1407. package/es/tabs/style/index.js +46 -0
  1408. package/es/tabs/style/motion.d.ts +4 -0
  1409. package/es/tabs/style/motion.js +10 -0
  1410. package/es/tag/CheckableTag.d.ts +17 -0
  1411. package/es/tag/CheckableTag.js +40 -0
  1412. package/es/tag/index.d.ts +27 -0
  1413. package/es/tag/index.js +41 -0
  1414. package/es/tag/style/index.d.ts +25 -0
  1415. package/es/tag/style/index.js +35 -0
  1416. package/es/tag/style/presetCmp.d.ts +2 -0
  1417. package/es/tag/style/presetCmp.js +35 -0
  1418. package/es/tag/style/statusCmp.d.ts +2 -0
  1419. package/es/tag/style/statusCmp.js +35 -0
  1420. package/es/theme/context.d.ts +31 -0
  1421. package/es/theme/context.js +3 -0
  1422. package/es/theme/getDesignToken.d.ts +4 -0
  1423. package/es/theme/getDesignToken.js +35 -0
  1424. package/es/theme/index.d.ts +35 -0
  1425. package/es/theme/index.js +35 -0
  1426. package/es/theme/interface/alias.d.ts +545 -0
  1427. package/es/theme/interface/alias.js +0 -0
  1428. package/es/theme/interface/components.d.ts +131 -0
  1429. package/es/theme/interface/components.js +0 -0
  1430. package/es/theme/interface/cssinjs-utils.d.ts +10 -0
  1431. package/es/theme/interface/cssinjs-utils.js +0 -0
  1432. package/es/theme/interface/index.d.ts +15 -0
  1433. package/es/theme/interface/index.js +1 -0
  1434. package/es/theme/interface/maps/colors.d.ts +530 -0
  1435. package/es/theme/interface/maps/colors.js +0 -0
  1436. package/es/theme/interface/maps/font.d.ts +117 -0
  1437. package/es/theme/interface/maps/font.js +0 -0
  1438. package/es/theme/interface/maps/index.d.ts +29 -0
  1439. package/es/theme/interface/maps/index.js +0 -0
  1440. package/es/theme/interface/maps/size.d.ts +69 -0
  1441. package/es/theme/interface/maps/size.js +0 -0
  1442. package/es/theme/interface/maps/style.d.ts +42 -0
  1443. package/es/theme/interface/maps/style.js +0 -0
  1444. package/es/theme/interface/presetColors.d.ts +11 -0
  1445. package/es/theme/interface/presetColors.js +1 -0
  1446. package/es/theme/interface/seeds.d.ts +225 -0
  1447. package/es/theme/interface/seeds.js +0 -0
  1448. package/es/theme/internal.d.ts +13 -0
  1449. package/es/theme/internal.js +35 -0
  1450. package/es/theme/themes/ColorMap.d.ts +15 -0
  1451. package/es/theme/themes/ColorMap.js +0 -0
  1452. package/es/theme/themes/compact/genCompactSizeMapToken.d.ts +2 -0
  1453. package/es/theme/themes/compact/genCompactSizeMapToken.js +1 -0
  1454. package/es/theme/themes/compact/index.d.ts +4 -0
  1455. package/es/theme/themes/compact/index.js +1 -0
  1456. package/es/theme/themes/dark/colorAlgorithm.d.ts +2 -0
  1457. package/es/theme/themes/dark/colorAlgorithm.js +1 -0
  1458. package/es/theme/themes/dark/colors.d.ts +3 -0
  1459. package/es/theme/themes/dark/colors.js +1 -0
  1460. package/es/theme/themes/dark/index.d.ts +4 -0
  1461. package/es/theme/themes/dark/index.js +1 -0
  1462. package/es/theme/themes/default/colorAlgorithm.d.ts +2 -0
  1463. package/es/theme/themes/default/colorAlgorithm.js +1 -0
  1464. package/es/theme/themes/default/colors.d.ts +3 -0
  1465. package/es/theme/themes/default/colors.js +1 -0
  1466. package/es/theme/themes/default/index.d.ts +2 -0
  1467. package/es/theme/themes/default/index.js +1 -0
  1468. package/es/theme/themes/seed.d.ts +4 -0
  1469. package/es/theme/themes/seed.js +3 -0
  1470. package/es/theme/themes/shared/genColorMapToken.d.ts +8 -0
  1471. package/es/theme/themes/shared/genColorMapToken.js +1 -0
  1472. package/es/theme/themes/shared/genCommonMapToken.d.ts +2 -0
  1473. package/es/theme/themes/shared/genCommonMapToken.js +1 -0
  1474. package/es/theme/themes/shared/genControlHeight.d.ts +3 -0
  1475. package/es/theme/themes/shared/genControlHeight.js +1 -0
  1476. package/es/theme/themes/shared/genFontMapToken.d.ts +3 -0
  1477. package/es/theme/themes/shared/genFontMapToken.js +1 -0
  1478. package/es/theme/themes/shared/genFontSizes.d.ts +5 -0
  1479. package/es/theme/themes/shared/genFontSizes.js +1 -0
  1480. package/es/theme/themes/shared/genRadius.d.ts +3 -0
  1481. package/es/theme/themes/shared/genRadius.js +1 -0
  1482. package/es/theme/themes/shared/genSizeMapToken.d.ts +2 -0
  1483. package/es/theme/themes/shared/genSizeMapToken.js +1 -0
  1484. package/es/theme/useToken.d.ts +19 -0
  1485. package/es/theme/useToken.js +35 -0
  1486. package/es/theme/util/alias.d.ts +12 -0
  1487. package/es/theme/util/alias.js +35 -0
  1488. package/es/theme/util/genPresetColor.d.ts +15 -0
  1489. package/es/theme/util/genPresetColor.js +1 -0
  1490. package/es/theme/util/genStyleUtils.d.ts +26 -0
  1491. package/es/theme/util/genStyleUtils.js +35 -0
  1492. package/es/theme/util/getAlphaColor.d.ts +2 -0
  1493. package/es/theme/util/getAlphaColor.js +1 -0
  1494. package/es/theme/util/useResetIconStyle.d.ts +3 -0
  1495. package/es/theme/util/useResetIconStyle.js +35 -0
  1496. package/es/time-picker/index.d.ts +30 -0
  1497. package/es/time-picker/index.js +99 -0
  1498. package/es/time-picker/locale/ar_EG.d.ts +3 -0
  1499. package/es/time-picker/locale/ar_EG.js +1 -0
  1500. package/es/time-picker/locale/az_AZ.d.ts +3 -0
  1501. package/es/time-picker/locale/az_AZ.js +1 -0
  1502. package/es/time-picker/locale/bg_BG.d.ts +3 -0
  1503. package/es/time-picker/locale/bg_BG.js +1 -0
  1504. package/es/time-picker/locale/bn_BD.d.ts +3 -0
  1505. package/es/time-picker/locale/bn_BD.js +1 -0
  1506. package/es/time-picker/locale/by_BY.d.ts +3 -0
  1507. package/es/time-picker/locale/by_BY.js +1 -0
  1508. package/es/time-picker/locale/ca_ES.d.ts +3 -0
  1509. package/es/time-picker/locale/ca_ES.js +1 -0
  1510. package/es/time-picker/locale/cs_CZ.d.ts +3 -0
  1511. package/es/time-picker/locale/cs_CZ.js +1 -0
  1512. package/es/time-picker/locale/da_DK.d.ts +3 -0
  1513. package/es/time-picker/locale/da_DK.js +1 -0
  1514. package/es/time-picker/locale/de_DE.d.ts +3 -0
  1515. package/es/time-picker/locale/de_DE.js +1 -0
  1516. package/es/time-picker/locale/el_GR.d.ts +3 -0
  1517. package/es/time-picker/locale/el_GR.js +1 -0
  1518. package/es/time-picker/locale/en_GB.d.ts +3 -0
  1519. package/es/time-picker/locale/en_GB.js +1 -0
  1520. package/es/time-picker/locale/en_US.d.ts +3 -0
  1521. package/es/time-picker/locale/en_US.js +1 -0
  1522. package/es/time-picker/locale/es_ES.d.ts +3 -0
  1523. package/es/time-picker/locale/es_ES.js +1 -0
  1524. package/es/time-picker/locale/et_EE.d.ts +3 -0
  1525. package/es/time-picker/locale/et_EE.js +1 -0
  1526. package/es/time-picker/locale/eu_ES.d.ts +3 -0
  1527. package/es/time-picker/locale/eu_ES.js +1 -0
  1528. package/es/time-picker/locale/fa_IR.d.ts +3 -0
  1529. package/es/time-picker/locale/fa_IR.js +1 -0
  1530. package/es/time-picker/locale/fi_FI.d.ts +3 -0
  1531. package/es/time-picker/locale/fi_FI.js +1 -0
  1532. package/es/time-picker/locale/fr_BE.d.ts +3 -0
  1533. package/es/time-picker/locale/fr_BE.js +1 -0
  1534. package/es/time-picker/locale/fr_CA.d.ts +3 -0
  1535. package/es/time-picker/locale/fr_CA.js +1 -0
  1536. package/es/time-picker/locale/fr_FR.d.ts +3 -0
  1537. package/es/time-picker/locale/fr_FR.js +1 -0
  1538. package/es/time-picker/locale/ga_IE.d.ts +3 -0
  1539. package/es/time-picker/locale/ga_IE.js +1 -0
  1540. package/es/time-picker/locale/gl_ES.d.ts +3 -0
  1541. package/es/time-picker/locale/gl_ES.js +1 -0
  1542. package/es/time-picker/locale/he_IL.d.ts +3 -0
  1543. package/es/time-picker/locale/he_IL.js +1 -0
  1544. package/es/time-picker/locale/hi_IN.d.ts +3 -0
  1545. package/es/time-picker/locale/hi_IN.js +1 -0
  1546. package/es/time-picker/locale/hr_HR.d.ts +3 -0
  1547. package/es/time-picker/locale/hr_HR.js +1 -0
  1548. package/es/time-picker/locale/hu_HU.d.ts +3 -0
  1549. package/es/time-picker/locale/hu_HU.js +1 -0
  1550. package/es/time-picker/locale/id_ID.d.ts +3 -0
  1551. package/es/time-picker/locale/id_ID.js +1 -0
  1552. package/es/time-picker/locale/is_IS.d.ts +3 -0
  1553. package/es/time-picker/locale/is_IS.js +1 -0
  1554. package/es/time-picker/locale/it_IT.d.ts +3 -0
  1555. package/es/time-picker/locale/it_IT.js +1 -0
  1556. package/es/time-picker/locale/ja_JP.d.ts +3 -0
  1557. package/es/time-picker/locale/ja_JP.js +1 -0
  1558. package/es/time-picker/locale/ka_GE.d.ts +3 -0
  1559. package/es/time-picker/locale/ka_GE.js +1 -0
  1560. package/es/time-picker/locale/kk_KZ.d.ts +3 -0
  1561. package/es/time-picker/locale/kk_KZ.js +1 -0
  1562. package/es/time-picker/locale/km_KH.d.ts +3 -0
  1563. package/es/time-picker/locale/km_KH.js +1 -0
  1564. package/es/time-picker/locale/kmr_IQ.d.ts +3 -0
  1565. package/es/time-picker/locale/kmr_IQ.js +1 -0
  1566. package/es/time-picker/locale/kn_IN.d.ts +3 -0
  1567. package/es/time-picker/locale/kn_IN.js +1 -0
  1568. package/es/time-picker/locale/ko_KR.d.ts +3 -0
  1569. package/es/time-picker/locale/ko_KR.js +1 -0
  1570. package/es/time-picker/locale/lt_LT.d.ts +3 -0
  1571. package/es/time-picker/locale/lt_LT.js +1 -0
  1572. package/es/time-picker/locale/lv_LV.d.ts +3 -0
  1573. package/es/time-picker/locale/lv_LV.js +1 -0
  1574. package/es/time-picker/locale/mk_MK.d.ts +3 -0
  1575. package/es/time-picker/locale/mk_MK.js +1 -0
  1576. package/es/time-picker/locale/ml_IN.d.ts +3 -0
  1577. package/es/time-picker/locale/ml_IN.js +1 -0
  1578. package/es/time-picker/locale/mn_MN.d.ts +3 -0
  1579. package/es/time-picker/locale/mn_MN.js +1 -0
  1580. package/es/time-picker/locale/ms_MY.d.ts +3 -0
  1581. package/es/time-picker/locale/ms_MY.js +1 -0
  1582. package/es/time-picker/locale/my_MM.d.ts +3 -0
  1583. package/es/time-picker/locale/my_MM.js +1 -0
  1584. package/es/time-picker/locale/nb_NO.d.ts +3 -0
  1585. package/es/time-picker/locale/nb_NO.js +1 -0
  1586. package/es/time-picker/locale/nl_BE.d.ts +3 -0
  1587. package/es/time-picker/locale/nl_BE.js +1 -0
  1588. package/es/time-picker/locale/nl_NL.d.ts +3 -0
  1589. package/es/time-picker/locale/nl_NL.js +1 -0
  1590. package/es/time-picker/locale/pl_PL.d.ts +3 -0
  1591. package/es/time-picker/locale/pl_PL.js +1 -0
  1592. package/es/time-picker/locale/pt_BR.d.ts +3 -0
  1593. package/es/time-picker/locale/pt_BR.js +1 -0
  1594. package/es/time-picker/locale/pt_PT.d.ts +3 -0
  1595. package/es/time-picker/locale/pt_PT.js +1 -0
  1596. package/es/time-picker/locale/ro_RO.d.ts +3 -0
  1597. package/es/time-picker/locale/ro_RO.js +1 -0
  1598. package/es/time-picker/locale/ru_RU.d.ts +4 -0
  1599. package/es/time-picker/locale/ru_RU.js +1 -0
  1600. package/es/time-picker/locale/si_LK.d.ts +3 -0
  1601. package/es/time-picker/locale/si_LK.js +1 -0
  1602. package/es/time-picker/locale/sk_SK.d.ts +3 -0
  1603. package/es/time-picker/locale/sk_SK.js +1 -0
  1604. package/es/time-picker/locale/sl_SI.d.ts +3 -0
  1605. package/es/time-picker/locale/sl_SI.js +1 -0
  1606. package/es/time-picker/locale/sr_RS.d.ts +3 -0
  1607. package/es/time-picker/locale/sr_RS.js +1 -0
  1608. package/es/time-picker/locale/sv_SE.d.ts +3 -0
  1609. package/es/time-picker/locale/sv_SE.js +1 -0
  1610. package/es/time-picker/locale/ta_IN.d.ts +3 -0
  1611. package/es/time-picker/locale/ta_IN.js +1 -0
  1612. package/es/time-picker/locale/th_TH.d.ts +3 -0
  1613. package/es/time-picker/locale/th_TH.js +1 -0
  1614. package/es/time-picker/locale/tk_TK.d.ts +3 -0
  1615. package/es/time-picker/locale/tk_TK.js +1 -0
  1616. package/es/time-picker/locale/tr_TR.d.ts +3 -0
  1617. package/es/time-picker/locale/tr_TR.js +1 -0
  1618. package/es/time-picker/locale/uk_UA.d.ts +3 -0
  1619. package/es/time-picker/locale/uk_UA.js +1 -0
  1620. package/es/time-picker/locale/ur_PK.d.ts +3 -0
  1621. package/es/time-picker/locale/ur_PK.js +1 -0
  1622. package/es/time-picker/locale/uz_UZ.d.ts +3 -0
  1623. package/es/time-picker/locale/uz_UZ.js +1 -0
  1624. package/es/time-picker/locale/vi_VN.d.ts +3 -0
  1625. package/es/time-picker/locale/vi_VN.js +1 -0
  1626. package/es/time-picker/locale/zh_CN.d.ts +3 -0
  1627. package/es/time-picker/locale/zh_CN.js +1 -0
  1628. package/es/time-picker/locale/zh_TW.d.ts +3 -0
  1629. package/es/time-picker/locale/zh_TW.js +1 -0
  1630. package/es/timeline/Timeline.d.ts +20 -0
  1631. package/es/timeline/Timeline.js +48 -0
  1632. package/es/timeline/TimelineItem.d.ts +20 -0
  1633. package/es/timeline/TimelineItem.js +40 -0
  1634. package/es/timeline/TimelineItemList.d.ts +7 -0
  1635. package/es/timeline/TimelineItemList.js +40 -0
  1636. package/es/timeline/index.d.ts +4 -0
  1637. package/es/timeline/index.js +48 -0
  1638. package/es/timeline/style/index.d.ts +31 -0
  1639. package/es/timeline/style/index.js +43 -0
  1640. package/es/timeline/useItems.d.ts +4 -0
  1641. package/es/timeline/useItems.js +1 -0
  1642. package/es/tooltip/PurePanel.d.ts +7 -0
  1643. package/es/tooltip/PurePanel.js +49 -0
  1644. package/es/tooltip/index.d.ts +80 -0
  1645. package/es/tooltip/index.js +49 -0
  1646. package/es/tooltip/style/index.d.ts +13 -0
  1647. package/es/tooltip/style/index.js +44 -0
  1648. package/es/tooltip/util.d.ts +6 -0
  1649. package/es/tooltip/util.js +1 -0
  1650. package/es/tour/PurePanel.d.ts +6 -0
  1651. package/es/tour/PurePanel.js +57 -0
  1652. package/es/tour/index.d.ts +7 -0
  1653. package/es/tour/index.js +57 -0
  1654. package/es/tour/interface.d.ts +31 -0
  1655. package/es/tour/interface.js +0 -0
  1656. package/es/tour/panelRender.d.ts +12 -0
  1657. package/es/tour/panelRender.js +48 -0
  1658. package/es/tour/style/index.d.ts +28 -0
  1659. package/es/tour/style/index.js +35 -0
  1660. package/es/transfer/ListBody.d.ts +17 -0
  1661. package/es/transfer/ListBody.js +117 -0
  1662. package/es/transfer/ListItem.d.ts +15 -0
  1663. package/es/transfer/ListItem.js +46 -0
  1664. package/es/transfer/hooks/useData.d.ts +5 -0
  1665. package/es/transfer/hooks/useData.js +1 -0
  1666. package/es/transfer/hooks/useSelection.d.ts +9 -0
  1667. package/es/transfer/hooks/useSelection.js +1 -0
  1668. package/es/transfer/index.d.ts +91 -0
  1669. package/es/transfer/index.js +154 -0
  1670. package/es/transfer/interface.d.ts +7 -0
  1671. package/es/transfer/interface.js +0 -0
  1672. package/es/transfer/list.d.ts +48 -0
  1673. package/es/transfer/list.js +154 -0
  1674. package/es/transfer/operation.d.ts +17 -0
  1675. package/es/transfer/operation.js +48 -0
  1676. package/es/transfer/search.d.ts +11 -0
  1677. package/es/transfer/search.js +66 -0
  1678. package/es/transfer/style/index.d.ts +36 -0
  1679. package/es/transfer/style/index.js +35 -0
  1680. package/es/tree/DirectoryTree.d.ts +16 -0
  1681. package/es/tree/DirectoryTree.js +48 -0
  1682. package/es/tree/Tree.d.ts +136 -0
  1683. package/es/tree/Tree.js +48 -0
  1684. package/es/tree/index.d.ts +16 -0
  1685. package/es/tree/index.js +48 -0
  1686. package/es/tree/style/directory.d.ts +3 -0
  1687. package/es/tree/style/directory.js +1 -0
  1688. package/es/tree/style/index.d.ts +57 -0
  1689. package/es/tree/style/index.js +43 -0
  1690. package/es/tree/utils/dictUtil.d.ts +13 -0
  1691. package/es/tree/utils/dictUtil.js +1 -0
  1692. package/es/tree/utils/dropIndicator.d.ts +11 -0
  1693. package/es/tree/utils/dropIndicator.js +1 -0
  1694. package/es/tree/utils/iconUtil.d.ts +13 -0
  1695. package/es/tree/utils/iconUtil.js +1 -0
  1696. package/es/tree-select/index.d.ts +61 -0
  1697. package/es/tree-select/index.js +86 -0
  1698. package/es/tree-select/style/index.d.ts +6 -0
  1699. package/es/tree-select/style/index.js +43 -0
  1700. package/es/type/index.d.ts +1 -0
  1701. package/es/type/index.js +353 -0
  1702. package/es/typography/Base/CopyBtn.d.ts +13 -0
  1703. package/es/typography/Base/CopyBtn.js +49 -0
  1704. package/es/typography/Base/Ellipsis.d.ts +18 -0
  1705. package/es/typography/Base/Ellipsis.js +1 -0
  1706. package/es/typography/Base/EllipsisTooltip.d.ts +10 -0
  1707. package/es/typography/Base/EllipsisTooltip.js +49 -0
  1708. package/es/typography/Base/index.d.ts +59 -0
  1709. package/es/typography/Base/index.js +83 -0
  1710. package/es/typography/Base/util.d.ts +10 -0
  1711. package/es/typography/Base/util.js +1 -0
  1712. package/es/typography/Editable.d.ts +20 -0
  1713. package/es/typography/Editable.js +74 -0
  1714. package/es/typography/Link.d.ts +7 -0
  1715. package/es/typography/Link.js +83 -0
  1716. package/es/typography/Paragraph.d.ts +6 -0
  1717. package/es/typography/Paragraph.js +83 -0
  1718. package/es/typography/Text.d.ts +7 -0
  1719. package/es/typography/Text.js +83 -0
  1720. package/es/typography/Title.d.ts +8 -0
  1721. package/es/typography/Title.js +83 -0
  1722. package/es/typography/Typography.d.ts +19 -0
  1723. package/es/typography/Typography.js +56 -0
  1724. package/es/typography/hooks/useCopyClick.d.ts +11 -0
  1725. package/es/typography/hooks/useCopyClick.js +1 -0
  1726. package/es/typography/hooks/useMergedConfig.d.ts +1 -0
  1727. package/es/typography/hooks/useMergedConfig.js +1 -0
  1728. package/es/typography/hooks/usePrevious.d.ts +2 -0
  1729. package/es/typography/hooks/usePrevious.js +1 -0
  1730. package/es/typography/hooks/useTooltipProps.d.ts +61 -0
  1731. package/es/typography/hooks/useTooltipProps.js +1 -0
  1732. package/es/typography/index.d.ts +13 -0
  1733. package/es/typography/index.js +83 -0
  1734. package/es/typography/style/index.d.ts +18 -0
  1735. package/es/typography/style/index.js +51 -0
  1736. package/es/typography/style/mixins.d.ts +9 -0
  1737. package/es/typography/style/mixins.js +6 -0
  1738. package/es/upload/Dragger.d.ts +10 -0
  1739. package/es/upload/Dragger.js +80 -0
  1740. package/es/upload/Upload.d.ts +23 -0
  1741. package/es/upload/Upload.js +80 -0
  1742. package/es/upload/UploadList/ListItem.d.ts +28 -0
  1743. package/es/upload/UploadList/ListItem.js +49 -0
  1744. package/es/upload/UploadList/index.d.ts +8 -0
  1745. package/es/upload/UploadList/index.js +57 -0
  1746. package/es/upload/index.d.ts +13 -0
  1747. package/es/upload/index.js +80 -0
  1748. package/es/upload/interface.d.ts +138 -0
  1749. package/es/upload/interface.js +0 -0
  1750. package/es/upload/style/dragger.d.ts +4 -0
  1751. package/es/upload/style/dragger.js +7 -0
  1752. package/es/upload/style/index.d.ts +16 -0
  1753. package/es/upload/style/index.js +66 -0
  1754. package/es/upload/style/list.d.ts +4 -0
  1755. package/es/upload/style/list.js +4 -0
  1756. package/es/upload/style/motion.d.ts +4 -0
  1757. package/es/upload/style/motion.js +10 -0
  1758. package/es/upload/style/picture.d.ts +5 -0
  1759. package/es/upload/style/picture.js +12 -0
  1760. package/es/upload/style/rtl.d.ts +4 -0
  1761. package/es/upload/style/rtl.js +1 -0
  1762. package/es/upload/utils.d.ts +8 -0
  1763. package/es/upload/utils.js +2 -0
  1764. package/es/version/index.d.ts +2 -0
  1765. package/es/version/index.js +1 -0
  1766. package/es/watermark/context.d.ts +8 -0
  1767. package/es/watermark/context.js +1 -0
  1768. package/es/watermark/index.d.ts +26 -0
  1769. package/es/watermark/index.js +35 -0
  1770. package/es/watermark/useClips.d.ts +7 -0
  1771. package/es/watermark/useClips.js +1 -0
  1772. package/es/watermark/useRafDebounce.d.ts +4 -0
  1773. package/es/watermark/useRafDebounce.js +1 -0
  1774. package/es/watermark/useWatermark.d.ts +13 -0
  1775. package/es/watermark/useWatermark.js +1 -0
  1776. package/es/watermark/utils.d.ts +7 -0
  1777. package/es/watermark/utils.js +1 -0
  1778. package/package.json +147 -0
  1779. package/umd/index.min.js +626 -0
@@ -0,0 +1,48 @@
1
+ import*as d from'react';import d__default,{createContext,useContext}from'react';import so from'classnames';import li from'rc-util/lib/pickAttrs';import {createTheme,Keyframes,useCacheToken,unit,useStyleRegister}from'@ant-design/cssinjs';import dn from'@ant-design/icons/lib/components/Context';import mn from'rc-util/lib/hooks/useMemo';import {merge}from'rc-util/lib/utils/set';import br,{resetWarned}from'rc-util/lib/warning';import'rc-pagination/lib/locale/en_US';import Mr from'rc-picker/lib/locale/en_US';import {presetPrimaryColors,presetPalettes,generate}from'@ant-design/colors';import {TinyColor}from'@ctrl/tinycolor';import Vr from'rc-util/lib/Dom/canUseDom';import {updateCSS}from'rc-util/lib/Dom/dynamicCSS';import fn from'rc-util/lib/isEqual';import {genStyleUtils,mergeToken}from'@ant-design/cssinjs-utils';import {Provider}from'rc-motion';import Fn from'rc-util/lib/omit';function Oe(){let[,e]=d.useReducer(o=>o+1,0);return e}var Pr=(e,o,t)=>d__default.isValidElement(e)?d__default.cloneElement(e,typeof t=="function"?t(e.props||{}):t):o;function Po(e,o){return Pr(e,e,o)}function bo(){}var A=null;function Tr(){A=null,resetWarned();}var Be=bo;process.env.NODE_ENV!=="production"&&(Be=(e,o,t)=>{br(e,`[swiftcrab: ${o}] ${t}`),process.env.NODE_ENV==="test"&&Tr();});var We=d.createContext({}),F=process.env.NODE_ENV!=="production"?e=>{let{strict:o}=d.useContext(We),t=(n,r,s)=>{if(!n)if(o===false&&r==="deprecated"){let l=A;A||(A={}),A[e]=A[e]||[],A[e].includes(s||"")||A[e].push(s||""),l||console.warn("[swiftcrab] There exists deprecated usage in your code:",A);}else Be(n,e,s);};return t.deprecated=(n,r,s,l)=>{t(n,"deprecated",`\`${r}\` is deprecated. Please use \`${s}\` instead.${l?` ${l}`:""}`);},t}:()=>{let e=()=>{};return e.deprecated=bo,e},Y=Be;var ho=createContext(void 0);({lang:{...Mr}});var b="${label} is not a valid ${type}",$r={Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Form:{defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:b,method:b,array:b,object:b,number:b,date:b,boolean:b,integer:b,float:b,regexp:b,email:b,url:b,hex:b},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}}},G=$r;({...G.Modal});var Te=[],vo=()=>Te.reduce((e,o)=>({...e,...o}),G.Modal);function Ro(e){if(e){let o={...e};return Te.push(o),vo(),()=>{Te=Te.filter(t=>t!==o),vo();}}({...G.Modal});}var Er=createContext(void 0),le=Er;var Ve="internalMark",wo=e=>{let{locale:o={},children:t,_ANT_MARK__:n}=e;process.env.NODE_ENV!=="production"&&F("LocaleProvider")(n===Ve,"deprecated","`LocaleProvider` is deprecated. Please use `locale` with `ConfigProvider` instead: http://u.ant.design/locale"),d.useEffect(()=>Ro(o?.Modal),[o]);let r=d.useMemo(()=>({...o,exist:true}),[o]);return d.createElement(le.Provider,{value:r},t)};process.env.NODE_ENV!=="production"&&(wo.displayName="LocaleProvider");var Lo=wo;var Ge={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},Ar={...Ge,colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
2
+ 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
3
+ 'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:false,motion:true},z=Ar;function Ue(e,{generateColorPalettes:o,generateNeutralColorPalettes:t}){let{colorSuccess:n,colorWarning:r,colorError:s,colorInfo:l,colorPrimary:i,colorBgBase:a,colorTextBase:c}=e,p=o(i),f=o(n),m=o(r),g=o(s),C=o(l),S=t(a,c),R=e.colorLink||e.colorInfo,k=o(R),L=new TinyColor(g[1]).mix(new TinyColor(g[3]),50).toHexString();return {...S,colorPrimaryBg:p[1],colorPrimaryBgHover:p[2],colorPrimaryBorder:p[3],colorPrimaryBorderHover:p[4],colorPrimaryHover:p[5],colorPrimary:p[6],colorPrimaryActive:p[7],colorPrimaryTextHover:p[8],colorPrimaryText:p[9],colorPrimaryTextActive:p[10],colorSuccessBg:f[1],colorSuccessBgHover:f[2],colorSuccessBorder:f[3],colorSuccessBorderHover:f[4],colorSuccessHover:f[4],colorSuccess:f[6],colorSuccessActive:f[7],colorSuccessTextHover:f[8],colorSuccessText:f[9],colorSuccessTextActive:f[10],colorErrorBg:g[1],colorErrorBgHover:g[2],colorErrorBgFilledHover:L,colorErrorBgActive:g[3],colorErrorBorder:g[3],colorErrorBorderHover:g[4],colorErrorHover:g[5],colorError:g[6],colorErrorActive:g[7],colorErrorTextHover:g[8],colorErrorText:g[9],colorErrorTextActive:g[10],colorWarningBg:m[1],colorWarningBgHover:m[2],colorWarningBorder:m[3],colorWarningBorderHover:m[4],colorWarningHover:m[4],colorWarning:m[6],colorWarningActive:m[7],colorWarningTextHover:m[8],colorWarningText:m[9],colorWarningTextActive:m[10],colorInfoBg:C[1],colorInfoBgHover:C[2],colorInfoBorder:C[3],colorInfoBorderHover:C[4],colorInfoHover:C[4],colorInfo:C[6],colorInfoActive:C[7],colorInfoTextHover:C[8],colorInfoText:C[9],colorInfoTextActive:C[10],colorLinkHover:k[4],colorLink:k[6],colorLinkActive:k[7],colorBgMask:new TinyColor("#000").setAlpha(.45).toRgbString(),colorWhite:"#fff"}}var zr=e=>{let o=e,t=e,n=e,r=e;return e<6&&e>=5?o=e+1:e<16&&e>=6?o=e+2:e>=16&&(o=16),e<7&&e>=5?t=4:e<8&&e>=7?t=5:e<14&&e>=8?t=6:e<16&&e>=14?t=7:e>=16&&(t=8),e<6&&e>=2?n=1:e>=6&&(n=2),e>4&&e<8?r=4:e>=8&&(r=6),{borderRadius:e,borderRadiusXS:n,borderRadiusSM:t,borderRadiusLG:o,borderRadiusOuter:r}},$o=zr;function _e(e){let{motionUnit:o,motionBase:t,borderRadius:n,lineWidth:r}=e;return {motionDurationFast:`${(t+o).toFixed(1)}s`,motionDurationMid:`${(t+o*2).toFixed(1)}s`,motionDurationSlow:`${(t+o*3).toFixed(1)}s`,lineWidthBold:r+1,...$o(n)}}var Ir=e=>{let{controlHeight:o}=e;return {controlHeightSM:o*.75,controlHeightXS:o*.5,controlHeightLG:o*1.25}},No=Ir;function Eo(e){return (e+8)/e}function qe(e){let o=new Array(10).fill(null).map((t,n)=>{let r=n-1,s=e*Math.E**(r/5),l=n>1?Math.floor(s):Math.ceil(s);return Math.floor(l/2)*2});return o[1]=e,o.map(t=>({size:t,lineHeight:Eo(t)}))}var Hr=e=>{let o=qe(e),t=o.map(p=>p.size),n=o.map(p=>p.lineHeight),r=t[1],s=t[0],l=t[2],i=n[1],a=n[0],c=n[2];return {fontSizeSM:s,fontSize:r,fontSizeLG:l,fontSizeXL:t[3],fontSizeHeading1:t[6],fontSizeHeading2:t[5],fontSizeHeading3:t[4],fontSizeHeading4:t[3],fontSizeHeading5:t[2],lineHeight:i,lineHeightLG:c,lineHeightSM:a,fontHeight:Math.round(i*r),fontHeightLG:Math.round(c*l),fontHeightSM:Math.round(a*s),lineHeightHeading1:n[6],lineHeightHeading2:n[5],lineHeightHeading3:n[4],lineHeightHeading4:n[3],lineHeightHeading5:n[2]}},Ao=Hr;function Ke(e){let{sizeUnit:o,sizeStep:t}=e;return {sizeXXL:o*(t+8),sizeXL:o*(t+4),sizeLG:o*(t+2),sizeMD:o*(t+1),sizeMS:o*t,size:o*t,sizeSM:o*(t-1),sizeXS:o*(t-2),sizeXXS:o*(t-3)}}var h=(e,o)=>new TinyColor(e).setAlpha(o).toRgbString(),Z=(e,o)=>new TinyColor(e).darken(o).toHexString();var Io=e=>{let o=generate(e);return {1:o[0],2:o[1],3:o[2],4:o[3],5:o[4],6:o[5],7:o[6],8:o[4],9:o[5],10:o[6]}},Ho=(e,o)=>{let t=e||"#fff",n=o||"#000";return {colorBgBase:t,colorTextBase:n,colorText:h(n,.88),colorTextSecondary:h(n,.65),colorTextTertiary:h(n,.45),colorTextQuaternary:h(n,.25),colorFill:h(n,.15),colorFillSecondary:h(n,.06),colorFillTertiary:h(n,.04),colorFillQuaternary:h(n,.02),colorBgSolid:h(n,1),colorBgSolidHover:h(n,.75),colorBgSolidActive:h(n,.95),colorBgLayout:Z(t,4),colorBgContainer:Z(t,0),colorBgElevated:Z(t,0),colorBgSpotlight:h(n,.85),colorBgBlur:"transparent",colorBorder:Z(t,15),colorBorderSecondary:Z(t,6)}};function Je(e){presetPrimaryColors.pink=presetPrimaryColors.magenta,presetPalettes.pink=presetPalettes.magenta;let o=Object.keys(Ge).map(t=>{let n=e[t]===presetPrimaryColors[t]?presetPalettes[t]:generate(e[t]);return new Array(10).fill(1).reduce((r,s,l)=>(r[`${t}-${l+1}`]=n[l],r[`${t}${l+1}`]=n[l],r),{})}).reduce((t,n)=>(t={...t,...n},t),{});return {...e,...o,...Ue(e,{generateColorPalettes:Io,generateNeutralColorPalettes:Ho}),...Ao(e.fontSize),...Ke(e),...No(e),..._e(e)}}var ve=createTheme(Je),se={token:z,override:{override:z},hashed:true},ce=d__default.createContext(se);var Re="ant",pe="anticon";var Wr=(e,o)=>o||(e?`${Re}-${e}`:Re),u=d.createContext({getPrefixCls:Wr,iconPrefixCls:pe}),{Consumer:jr}=u;var Xr=`-ant-${Date.now()}-${Math.random()}`;function Ur(e,o){let t={},n=(l,i)=>{let a=l.clone();return a=i?.(a)||a,a.toRgbString()},r=(l,i)=>{let a=new TinyColor(l),c=generate(a.toRgbString());t[`${i}-color`]=n(a),t[`${i}-color-disabled`]=c[1],t[`${i}-color-hover`]=c[4],t[`${i}-color-active`]=c[6],t[`${i}-color-outline`]=a.clone().setAlpha(.2).toRgbString(),t[`${i}-color-deprecated-bg`]=c[0],t[`${i}-color-deprecated-border`]=c[2];};if(o.primaryColor){r(o.primaryColor,"primary");let l=new TinyColor(o.primaryColor),i=generate(l.toRgbString());i.forEach((c,p)=>{t[`primary-${p+1}`]=c;}),t["primary-color-deprecated-l-35"]=n(l,c=>c.lighten(35)),t["primary-color-deprecated-l-20"]=n(l,c=>c.lighten(20)),t["primary-color-deprecated-t-20"]=n(l,c=>c.tint(20)),t["primary-color-deprecated-t-50"]=n(l,c=>c.tint(50)),t["primary-color-deprecated-f-12"]=n(l,c=>c.setAlpha(c.getAlpha()*.12));let a=new TinyColor(i[0]);t["primary-color-active-deprecated-f-30"]=n(a,c=>c.setAlpha(c.getAlpha()*.3)),t["primary-color-active-deprecated-d-02"]=n(a,c=>c.darken(2));}return o.successColor&&r(o.successColor,"success"),o.warningColor&&r(o.warningColor,"warning"),o.errorColor&&r(o.errorColor,"error"),o.infoColor&&r(o.infoColor,"info"),`
4
+ :root {
5
+ ${Object.keys(t).map(l=>`--${e}-${l}: ${t[l]};`).join(`
6
+ `)}
7
+ }
8
+ `.trim()}function Oo(e,o){let t=Ur(e,o);Vr()?updateCSS(t,`${Xr}-dynamic-theme`):Y(false,"ConfigProvider","SSR do not support dynamic theme with css variables.");}var eo=d.createContext(false),Bo=({children:e,disabled:o})=>{let t=d.useContext(eo);return d.createElement(eo.Provider,{value:o??t},e)},Wo=eo;var oo=d.createContext(void 0),jo=({children:e,size:o})=>{let t=d.useContext(oo);return d.createElement(oo.Provider,{value:o||t},e)},me=oo;function _r(){let e=useContext(Wo),o=useContext(me);return {componentDisabled:e,componentSize:o}}var Go=_r;var Uo={version:"0.0.2"};var _o=Uo.version;function to(e){return e>=0&&e<=255}function Kr(e,o){let{r:t,g:n,b:r,a:s}=new TinyColor(e).toRgb();if(s<1)return e;let{r:l,g:i,b:a}=new TinyColor(o).toRgb();for(let c=.01;c<=1;c+=.01){let p=Math.round((t-l*(1-c))/c),f=Math.round((n-i*(1-c))/c),m=Math.round((r-a*(1-c))/c);if(to(p)&&to(f)&&to(m))return new TinyColor({r:p,g:f,b:m,a:Math.round(c*100)/100}).toRgbString()}return new TinyColor({r:t,g:n,b:r,a:1}).toRgbString()}var fe=Kr;function we(e){let{override:o,...t}=e,n={...o};Object.keys(z).forEach(m=>{delete n[m];});let r={...t,...n},s=480,l=576,i=768,a=992,c=1200,p=1600;return r.motion===false&&(r.motionDurationFast="0s",r.motionDurationMid="0s",r.motionDurationSlow="0s"),{...r,colorFillContent:r.colorFillSecondary,colorFillContentHover:r.colorFill,colorFillAlter:r.colorFillQuaternary,colorBgContainerDisabled:r.colorFillTertiary,colorBorderBg:r.colorBgContainer,colorSplit:fe(r.colorBorderSecondary,r.colorBgContainer),colorTextPlaceholder:r.colorTextQuaternary,colorTextDisabled:r.colorTextQuaternary,colorTextHeading:r.colorText,colorTextLabel:r.colorTextSecondary,colorTextDescription:r.colorTextTertiary,colorTextLightSolid:r.colorWhite,colorHighlight:r.colorError,colorBgTextHover:r.colorFillSecondary,colorBgTextActive:r.colorFill,colorIcon:r.colorTextTertiary,colorIconHover:r.colorText,colorErrorOutline:fe(r.colorErrorBg,r.colorBgContainer),colorWarningOutline:fe(r.colorWarningBg,r.colorBgContainer),fontSizeIcon:r.fontSizeSM,lineWidthFocus:r.lineWidth*3,lineWidth:r.lineWidth,controlOutlineWidth:r.lineWidth*2,controlInteractiveSize:r.controlHeight/2,controlItemBgHover:r.colorFillTertiary,controlItemBgActive:r.colorPrimaryBg,controlItemBgActiveHover:r.colorPrimaryBgHover,controlItemBgActiveDisabled:r.colorFill,controlTmpOutline:r.colorFillQuaternary,controlOutline:fe(r.colorPrimaryBg,r.colorBgContainer),lineType:r.lineType,borderRadius:r.borderRadius,borderRadiusXS:r.borderRadiusXS,borderRadiusSM:r.borderRadiusSM,borderRadiusLG:r.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:r.sizeXXS,paddingXS:r.sizeXS,paddingSM:r.sizeSM,padding:r.size,paddingMD:r.sizeMD,paddingLG:r.sizeLG,paddingXL:r.sizeXL,paddingContentHorizontalLG:r.sizeLG,paddingContentVerticalLG:r.sizeMS,paddingContentHorizontal:r.sizeMS,paddingContentVertical:r.sizeSM,paddingContentHorizontalSM:r.size,paddingContentVerticalSM:r.sizeXS,marginXXS:r.sizeXXS,marginXS:r.sizeXS,marginSM:r.sizeSM,margin:r.size,marginMD:r.sizeMD,marginLG:r.sizeLG,marginXL:r.sizeXL,marginXXL:r.sizeXXL,boxShadow:`
9
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
10
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
11
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
12
+ `,boxShadowSecondary:`
13
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
14
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
15
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
16
+ `,boxShadowTertiary:`
17
+ 0 1px 2px 0 rgba(0, 0, 0, 0.03),
18
+ 0 1px 6px -1px rgba(0, 0, 0, 0.02),
19
+ 0 2px 4px 0 rgba(0, 0, 0, 0.02)
20
+ `,screenXS:s,screenXSMin:s,screenXSMax:l-1,screenSM:l,screenSMMin:l,screenSMMax:i-1,screenMD:i,screenMDMin:i,screenMDMax:a-1,screenLG:a,screenLGMin:a,screenLGMax:c-1,screenXL:c,screenXLMin:c,screenXLMax:p-1,screenXXL:p,screenXXLMin:p,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`
21
+ 0 1px 2px -2px ${new TinyColor("rgba(0, 0, 0, 0.16)").toRgbString()},
22
+ 0 3px 6px 0 ${new TinyColor("rgba(0, 0, 0, 0.12)").toRgbString()},
23
+ 0 5px 12px 4px ${new TinyColor("rgba(0, 0, 0, 0.09)").toRgbString()}
24
+ `,boxShadowDrawerRight:`
25
+ -6px 0 16px 0 rgba(0, 0, 0, 0.08),
26
+ -3px 0 6px -4px rgba(0, 0, 0, 0.12),
27
+ -9px 0 28px 8px rgba(0, 0, 0, 0.05)
28
+ `,boxShadowDrawerLeft:`
29
+ 6px 0 16px 0 rgba(0, 0, 0, 0.08),
30
+ 3px 0 6px -4px rgba(0, 0, 0, 0.12),
31
+ 9px 0 28px 8px rgba(0, 0, 0, 0.05)
32
+ `,boxShadowDrawerUp:`
33
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
34
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
35
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
36
+ `,boxShadowDrawerDown:`
37
+ 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
38
+ 0 -3px 6px -4px rgba(0, 0, 0, 0.12),
39
+ 0 -9px 28px 8px rgba(0, 0, 0, 0.05)
40
+ `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)",...n}}var no={lineHeight:true,lineHeightSM:true,lineHeightLG:true,lineHeightHeading1:true,lineHeightHeading2:true,lineHeightHeading3:true,lineHeightHeading4:true,lineHeightHeading5:true,opacityLoading:true,fontWeightStrong:true,zIndexPopupBase:true,zIndexBase:true,opacityImage:true},Jr={size:true,sizeSM:true,sizeLG:true,sizeMD:true,sizeXS:true,sizeXXS:true,sizeMS:true,sizeXL:true,sizeXXL:true,sizeUnit:true,sizeStep:true,motionBase:true,motionUnit:true},Zr={screenXS:true,screenXSMin:true,screenXSMax:true,screenSM:true,screenSMMin:true,screenSMMax:true,screenMD:true,screenMDMin:true,screenMDMax:true,screenLG:true,screenLGMin:true,screenLGMax:true,screenXL:true,screenXLMin:true,screenXLMax:true,screenXXL:true,screenXXLMin:true},qo=(e,o,t)=>{let n=t.getDerivativeToken(e),{override:r,...s}=o,l={...n,override:r};return l=we(l),s&&Object.entries(s).forEach(([i,a])=>{let{theme:c,...p}=a,f=p;c&&(f=qo({...l,...p},{override:p},c)),l[i]=f;}),l};function D(){let{token:e,hashed:o,theme:t,override:n,cssVar:r}=d__default.useContext(ce),s=`${_o}-${o||""}`,l=t||ve,[i,a,c]=useCacheToken(l,[z,e],{salt:s,override:n,getComputedToken:qo,formatToken:we,cssVar:r&&{prefix:r.prefix,key:r.key,unitless:no,ignore:Jr,preserve:Zr}});return [l,c,o?a:"",i,r]}var Ko=(e,o=false)=>({boxSizing:"border-box",margin:0,padding:0,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight,listStyle:"none",fontFamily:o?"inherit":e.fontFamily}),en=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}});var Qo=e=>({a:{color:e.colorLink,textDecoration:e.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive},"&:active, &:hover":{textDecoration:e.linkHoverDecoration,outline:0},"&:focus":{textDecoration:e.linkFocusDecoration,outline:0},"&[disabled]":{color:e.colorTextDisabled,cursor:"not-allowed"}}}),Yo=(e,o,t,n)=>{let r=`[class^="${o}"], [class*=" ${o}"]`,s=t?`.${t}`:r,l={boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}},i={};return n!==false&&(i={fontFamily:e.fontFamily,fontSize:e.fontSize}),{[s]:{...i,...l,[r]:l}}};var Le=e=>({[`.${e}`]:{...en(),[`.${e} .${e}-icon`]:{display:"block"}}});var{genStyleHooks:ge,genComponentStyleHook:tn,genSubStyleComponent:rn}=genStyleUtils({usePrefix:()=>{let{getPrefixCls:e,iconPrefixCls:o}=useContext(u);return {rootPrefixCls:e(),iconPrefixCls:o}},useToken:()=>{let[e,o,t,n,r]=D();return {theme:e,realToken:o,hashId:t,token:n,cssVar:r}},useCSP:()=>{let{csp:e}=useContext(u);return e??{}},getResetStyles:(e,o)=>[{"&":Qo(e)},Le(o?.prefix.iconPrefixCls??pe)],getCommonStyle:Yo,getCompUnitless:(()=>no)});var an=(e,o)=>{let[t,n]=D();return useStyleRegister({theme:t,token:n,hashId:"",path:["ant-design-icons",e],nonce:()=>o?.nonce,layer:{name:"antd"}},()=>[Le(e)])},$e=an;var sn={...d},{useId:Zo}=sn,cn=()=>"",pn=typeof Zo>"u"?cn:Zo,et=pn;function io(e,o,t){let n=F("ConfigProvider"),r=e||{},s=r.inherit===false||!o?{...se,hashed:o?.hashed??se.hashed,cssVar:o?.cssVar}:o,l=et();if(process.env.NODE_ENV!=="production"){let i=r.cssVar||s.cssVar,a=!!(typeof r.cssVar=="object"&&r.cssVar?.key||l);n(!i||a,"breaking","Missing key in `cssVar` config. Please upgrade to React 18 or set `cssVar.key` manually in each ConfigProvider inside `cssVar` enabled ConfigProvider.");}return mn(()=>{if(!e)return o;let i={...s.components};Object.keys(e.components||{}).forEach(p=>{i[p]={...i[p],...e.components[p]};});let a=`css-var-${l.replace(/:/g,"")}`,c=(r.cssVar??s.cssVar)&&{prefix:t?.prefixCls,...typeof s.cssVar=="object"?s.cssVar:{},...typeof r.cssVar=="object"?r.cssVar:{},key:typeof r.cssVar=="object"&&r.cssVar?.key||a};return {...s,...r,token:{...s.token,...r.token},components:i,cssVar:c}},[r,s],(i,a)=>i.some((c,p)=>{let f=a[p];return !fn(c,f,true)}))}function ao(e){let{children:o}=e,[,t]=D(),{motion:n}=t,r=d.useRef(false);return r.current=r.current||n===false,r.current?d.createElement(Provider,{motion:n},o):o}var tt=d.memo(({dropdownMatchSelectWidth:e})=>(F("ConfigProvider").deprecated(e===void 0,"dropdownMatchSelectWidth","popupMatchSelectWidth"),null));process.env.NODE_ENV!=="production"&&(tt.displayName="PropWarning");var rt=process.env.NODE_ENV!=="production"?tt:()=>null;var lo=false;process.env.NODE_ENV!=="production"?e=>{Y(!lo,e,"Static function can not consume context like dynamic theme. Please use 'App' component instead.");}:null;var Sn=["getTargetContainer","getPopupContainer","renderEmpty","input","pagination","form","select","button"],it;function Pn(){return it||Re}function bn(e){return Object.keys(e).some(o=>o.endsWith("Color"))}var hn=e=>{let{prefixCls:o,iconPrefixCls:t,theme:n,holderRender:r}=e;o!==void 0&&(it=o),n&&(bn(n)?(Y(false,"ConfigProvider","`config` of css variable theme is not work in v5. Please use new `theme` config instead."),Oo(Pn(),n)):n);};var Tn=e=>{let{children:o,csp:t,autoInsertSpaceInButton:n,alert:r,anchor:s,form:l,locale:i,componentSize:a,direction:c,space:p,splitter:f,virtual:m,dropdownMatchSelectWidth:g,popupMatchSelectWidth:C,popupOverflow:S,legacyLocale:R,parentContext:k,iconPrefixCls:L,theme:v,componentDisabled:$,segmented:N,statistic:P,spin:U,calendar:ne,carousel:H,cascader:j,collapse:V,typography:He,checkbox:Tt,descriptions:vt,divider:Rt,drawer:Mt,skeleton:wt,steps:Lt,image:$t,layout:Nt,list:Et,mentions:At,modal:zt,progress:It,result:Ht,slider:Ft,breadcrumb:Dt,menu:Ot,pagination:Bt,input:Wt,textArea:jt,empty:Vt,badge:Gt,radio:Xt,rate:Ut,switch:_t,transfer:qt,avatar:Kt,message:Qt,tag:Yt,table:Jt,card:Zt,tabs:er,timeline:or,timePicker:tr,upload:rr,notification:nr,tree:ir,colorPicker:ar,datePicker:lr,rangePicker:sr,flex:cr,wave:pr,dropdown:mr,warning:fr,tour:gr,variant:dr,inputNumber:ur,treeSelect:Cr}=e,uo=d.useCallback((y,M)=>{let{prefixCls:K}=e;if(M)return M;let Q=K||k.getPrefixCls("");return y?`${Q}-${y}`:Q},[k.getPrefixCls,e.prefixCls]),ie=L||k.iconPrefixCls||pe,ae=t||k.csp;$e(ie,ae);let xe=io(v,k.theme,{prefixCls:uo("")});process.env.NODE_ENV!=="production"&&(lo=lo||!!xe);let Fe={csp:ae,autoInsertSpaceInButton:n,alert:r,anchor:s,locale:i||R,direction:c,space:p,splitter:f,virtual:m,popupMatchSelectWidth:C??g,popupOverflow:S,getPrefixCls:uo,iconPrefixCls:ie,theme:xe,segmented:N,statistic:P,spin:U,calendar:ne,carousel:H,cascader:j,collapse:V,typography:He,checkbox:Tt,descriptions:vt,divider:Rt,drawer:Mt,skeleton:wt,steps:Lt,image:$t,input:Wt,textArea:jt,layout:Nt,list:Et,mentions:At,modal:zt,progress:It,result:Ht,slider:Ft,breadcrumb:Dt,menu:Ot,pagination:Bt,empty:Vt,badge:Gt,radio:Xt,rate:Ut,switch:_t,transfer:qt,avatar:Kt,message:Qt,tag:Yt,table:Jt,card:Zt,tabs:er,timeline:or,timePicker:tr,upload:rr,notification:nr,tree:ir,colorPicker:ar,datePicker:lr,rangePicker:sr,flex:cr,wave:pr,dropdown:mr,warning:fr,tour:gr,variant:dr,inputNumber:ur,treeSelect:Cr};process.env.NODE_ENV!=="production"&&F("ConfigProvider")(!("autoInsertSpaceInButton"in e),"deprecated","`autoInsertSpaceInButton` is deprecated. Please use `{ button: { autoInsertSpace: boolean }}` instead.");let _={...k};Object.keys(Fe).forEach(y=>{Fe[y]!==void 0&&(_[y]=Fe[y]);}),Sn.forEach(y=>{let M=e[y];M&&(_[y]=M);}),typeof n<"u"&&(_.button={autoInsertSpace:n,..._.button});let q=mn(()=>_,_,(y,M)=>{let K=Object.keys(y),Q=Object.keys(M);return K.length!==Q.length||K.some(ke=>y[ke]!==M[ke])}),Sr=d.useMemo(()=>({prefixCls:ie,csp:ae}),[ie,ae]),x=d.createElement(d.Fragment,null,d.createElement(rt,{dropdownMatchSelectWidth:g}),o),Co=d.useMemo(()=>merge(G.Form?.defaultValidateMessages||{},q.locale?.Form?.defaultValidateMessages||{},q.form?.validateMessages||{},l?.validateMessages||{}),[q,l?.validateMessages]);Object.keys(Co).length>0&&(x=d.createElement(ho.Provider,{value:Co},x)),i&&(x=d.createElement(Lo,{locale:i,_ANT_MARK__:Ve},x)),(x=d.createElement(dn.Provider,{value:Sr},x)),a&&(x=d.createElement(jo,{size:a},x)),x=d.createElement(ao,null,x);let yr=d.useMemo(()=>{let{algorithm:y,token:M,components:K,cssVar:Q,...ke}=xe||{},So=y&&(!Array.isArray(y)||y.length>0)?createTheme(y):ve,De={};Object.entries(K||{}).forEach(([xr,kr])=>{let E={...kr};"algorithm"in E&&(E.algorithm===true?E.theme=So:(Array.isArray(E.algorithm)||typeof E.algorithm=="function")&&(E.theme=createTheme(E.algorithm)),delete E.algorithm),De[xr]=E;});let yo={...z,...M};return {...ke,theme:So,token:yo,components:De,override:{override:yo,...De},cssVar:Q}},[xe]);return v&&(x=d.createElement(ce.Provider,{value:yr},x)),q.warning&&(x=d.createElement(We.Provider,{value:q.warning},x)),$!==void 0&&(x=d.createElement(Bo,{disabled:$},x)),d.createElement(u.Provider,{value:q},x)},te=e=>{let o=d.useContext(u),t=d.useContext(le);return d.createElement(Tn,{parentContext:o,legacyLocale:t,...e})};te.ConfigContext=u;te.SizeContext=me;te.config=hn;te.useConfig=Go;Object.defineProperty(te,"SizeContext",{get:()=>(Y(false,"ConfigProvider","ConfigProvider.SizeContext is deprecated. Please use `ConfigProvider.useConfig().componentSize` instead."),me)});process.env.NODE_ENV!=="production"&&(te.displayName="ConfigProvider");var vn=e=>{let{prefixCls:o,className:t,style:n,size:r,shape:s}=e,l=so({[`${o}-lg`]:r==="large",[`${o}-sm`]:r==="small"}),i=so({[`${o}-circle`]:s==="circle",[`${o}-square`]:s==="square",[`${o}-round`]:s==="round"}),a=d.useMemo(()=>typeof r=="number"?{width:r,height:r,lineHeight:`${r}px`}:{},[r]);return d.createElement("span",{className:so(o,l,i,t),style:{...a,...n}})},O=vn;var wn=new Keyframes("ant-skeleton-loading",{"0%":{backgroundPosition:"100% 50%"},"100%":{backgroundPosition:"0 50%"}}),ze=e=>({height:e,lineHeight:unit(e)}),re=e=>({width:e,...ze(e)}),Ln=e=>({background:e.skeletonLoadingBackground,backgroundSize:"400% 100%",animationName:wn,animationDuration:e.skeletonLoadingMotionDuration,animationTimingFunction:"ease",animationIterationCount:"infinite"}),co=(e,o)=>({width:o(e).mul(5).equal(),minWidth:o(e).mul(5).equal(),...ze(e)}),$n=e=>{let{skeletonAvatarCls:o,gradientFromColor:t,controlHeight:n,controlHeightLG:r,controlHeightSM:s}=e;return {[o]:{display:"inline-block",verticalAlign:"top",background:t,...re(n)},[`${o}${o}-circle`]:{borderRadius:"50%"},[`${o}${o}-lg`]:{...re(r)},[`${o}${o}-sm`]:{...re(s)}}},Nn=e=>{let{controlHeight:o,borderRadiusSM:t,skeletonInputCls:n,controlHeightLG:r,controlHeightSM:s,gradientFromColor:l,calc:i}=e;return {[n]:{display:"inline-block",verticalAlign:"top",background:l,borderRadius:t,...co(o,i)},[`${n}-lg`]:{...co(r,i)},[`${n}-sm`]:{...co(s,i)}}},at=e=>({width:e,...ze(e)}),En=e=>{let{skeletonImageCls:o,imageSizeBase:t,gradientFromColor:n,borderRadiusSM:r,calc:s}=e;return {[o]:{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"middle",background:n,borderRadius:r,...at(s(t).mul(2).equal()),[`${o}-path`]:{fill:"#bfbfbf"},[`${o}-svg`]:{...at(t),maxWidth:s(t).mul(4).equal(),maxHeight:s(t).mul(4).equal()},[`${o}-svg${o}-svg-circle`]:{borderRadius:"50%"}},[`${o}${o}-circle`]:{borderRadius:"50%"}}},po=(e,o,t)=>{let{skeletonButtonCls:n}=e;return {[`${t}${n}-circle`]:{width:o,minWidth:o,borderRadius:"50%"},[`${t}${n}-round`]:{borderRadius:o}}},mo=(e,o)=>({width:o(e).mul(2).equal(),minWidth:o(e).mul(2).equal(),...ze(e)}),An=e=>{let{borderRadiusSM:o,skeletonButtonCls:t,controlHeight:n,controlHeightLG:r,controlHeightSM:s,gradientFromColor:l,calc:i}=e;return {[t]:{display:"inline-block",verticalAlign:"top",background:l,borderRadius:o,width:i(n).mul(2).equal(),minWidth:i(n).mul(2).equal(),...mo(n,i)},...po(e,n,t),[`${t}-lg`]:{...mo(r,i)},...po(e,r,`${t}-lg`),[`${t}-sm`]:{...mo(s,i)},...po(e,s,`${t}-sm`)}},zn=e=>{let{componentCls:o,skeletonAvatarCls:t,skeletonTitleCls:n,skeletonParagraphCls:r,skeletonButtonCls:s,skeletonInputCls:l,skeletonImageCls:i,controlHeight:a,controlHeightLG:c,controlHeightSM:p,gradientFromColor:f,padding:m,marginSM:g,borderRadius:C,titleHeight:S,blockRadius:R,paragraphLiHeight:k,controlHeightXS:L,paragraphMarginTop:v}=e;return {[o]:{display:"table",width:"100%",[`${o}-header`]:{display:"table-cell",paddingInlineEnd:m,verticalAlign:"top",[t]:{display:"inline-block",verticalAlign:"top",background:f,...re(a)},[`${t}-circle`]:{borderRadius:"50%"},[`${t}-lg`]:{...re(c)},[`${t}-sm`]:{...re(p)}},[`${o}-content`]:{display:"table-cell",width:"100%",verticalAlign:"top",[n]:{width:"100%",height:S,background:f,borderRadius:R,[`+ ${r}`]:{marginBlockStart:p}},[r]:{padding:0,"> li":{width:"100%",height:k,listStyle:"none",background:f,borderRadius:R,"+ li":{marginBlockStart:L}}},[`${r}> li:last-child:not(:first-child):not(:nth-child(2))`]:{width:"61%"}},[`&-round ${o}-content`]:{[`${n}, ${r} > li`]:{borderRadius:C}}},[`${o}-with-avatar ${o}-content`]:{[n]:{marginBlockStart:g,[`+ ${r}`]:{marginBlockStart:v}}},[`${o}${o}-element`]:{display:"inline-block",width:"auto",...An(e),...$n(e),...Nn(e),...En(e)},[`${o}${o}-block`]:{width:"100%",[s]:{width:"100%"},[l]:{width:"100%"}},[`${o}${o}-active`]:{[`
41
+ ${n},
42
+ ${r} > li,
43
+ ${t},
44
+ ${s},
45
+ ${l},
46
+ ${i}
47
+ `]:{...Ln(e)}}}},In=e=>{let{colorFillContent:o,colorFill:t}=e,n=o,r=t;return {color:n,colorGradientEnd:r,gradientFromColor:n,gradientToColor:r,titleHeight:e.controlHeight/2,blockRadius:e.borderRadiusSM,paragraphMarginTop:e.marginLG+e.marginXXS,paragraphLiHeight:e.controlHeight/2}},T=ge("Skeleton",e=>{let{componentCls:o,calc:t}=e,n=mergeToken(e,{skeletonAvatarCls:`${o}-avatar`,skeletonTitleCls:`${o}-title`,skeletonParagraphCls:`${o}-paragraph`,skeletonButtonCls:`${o}-button`,skeletonInputCls:`${o}-input`,skeletonImageCls:`${o}-image`,imageSizeBase:t(e.controlHeight).mul(1.5).equal(),borderRadius:100,skeletonLoadingBackground:`linear-gradient(90deg, ${e.gradientFromColor} 25%, ${e.gradientToColor} 37%, ${e.gradientFromColor} 63%)`,skeletonLoadingMotionDuration:"1.4s"});return [zn(n)]},In,{deprecatedTokens:[["color","gradientFromColor"],["colorGradientEnd","gradientToColor"]]});var Dn=e=>{let{prefixCls:o,className:t,rootClassName:n,active:r,shape:s="circle",size:l="default"}=e,{getPrefixCls:i}=d.useContext(u),a=i("skeleton",o),[c,p,f]=T(a),m=Fn(e,["prefixCls","className"]),g=so(a,`${a}-element`,{[`${a}-active`]:r},t,n,p,f);return c(d.createElement("div",{className:g},d.createElement(O,{prefixCls:`${a}-avatar`,shape:s,size:l,...m})))},lt=Dn;var Wn=e=>{let{prefixCls:o,className:t,rootClassName:n,active:r,block:s=false,size:l="default"}=e,{getPrefixCls:i}=d.useContext(u),a=i("skeleton",o),[c,p,f]=T(a),m=Fn(e,["prefixCls"]),g=so(a,`${a}-element`,{[`${a}-active`]:r,[`${a}-block`]:s},t,n,p,f);return c(d.createElement("div",{className:g},d.createElement(O,{prefixCls:`${a}-button`,size:l,...m})))},st=Wn;var jn="M365.714286 329.142857q0 45.714286-32.036571 77.677714t-77.677714 32.036571-77.677714-32.036571-32.036571-77.677714 32.036571-77.677714 77.677714-32.036571 77.677714 32.036571 32.036571 77.677714zM950.857143 548.571429l0 256-804.571429 0 0-109.714286 182.857143-182.857143 91.428571 91.428571 292.571429-292.571429zM1005.714286 146.285714l-914.285714 0q-7.460571 0-12.873143 5.412571t-5.412571 12.873143l0 694.857143q0 7.460571 5.412571 12.873143t12.873143 5.412571l914.285714 0q7.460571 0 12.873143-5.412571t5.412571-12.873143l0-694.857143q0-7.460571-5.412571-12.873143t-12.873143-5.412571zM1097.142857 164.571429l0 694.857143q0 37.741714-26.843429 64.585143t-64.585143 26.843429l-914.285714 0q-37.741714 0-64.585143-26.843429t-26.843429-64.585143l0-694.857143q0-37.741714 26.843429-64.585143t64.585143-26.843429l914.285714 0q37.741714 0 64.585143 26.843429t26.843429 64.585143z",Vn=e=>{let{prefixCls:o,className:t,rootClassName:n,style:r,active:s}=e,{getPrefixCls:l}=d.useContext(u),i=l("skeleton",o),[a,c,p]=T(i),f=so(i,`${i}-element`,{[`${i}-active`]:s},t,n,c,p);return a(d.createElement("div",{className:f},d.createElement("div",{className:so(`${i}-image`,t),style:r},d.createElement("svg",{viewBox:"0 0 1098 1024",xmlns:"http://www.w3.org/2000/svg",className:`${i}-image-svg`},d.createElement("title",null,"Image placeholder"),d.createElement("path",{d:jn,className:`${i}-image-path`})))))},pt=Vn;var Un=e=>{let{prefixCls:o,className:t,rootClassName:n,active:r,block:s,size:l="default"}=e,{getPrefixCls:i}=d.useContext(u),a=i("skeleton",o),[c,p,f]=T(a),m=Fn(e,["prefixCls"]),g=so(a,`${a}-element`,{[`${a}-active`]:r,[`${a}-block`]:s},t,n,p,f);return c(d.createElement("div",{className:g},d.createElement(O,{prefixCls:`${a}-input`,size:l,...m})))},mt=Un;var _n=e=>{let{prefixCls:o,className:t,rootClassName:n,style:r,active:s,children:l}=e,{getPrefixCls:i}=d.useContext(u),a=i("skeleton",o),[c,p,f]=T(a),m=so(a,`${a}-element`,{[`${a}-active`]:s},p,t,n,f);return c(d.createElement("div",{className:m},d.createElement("div",{className:so(`${a}-image`,t),style:r},l)))},gt=_n;var Kn=(e,o)=>{let{width:t,rows:n=2}=o;if(Array.isArray(t))return t[e];if(n-1===e)return t},Qn=e=>{let{prefixCls:o,className:t,style:n,rows:r}=e,s=[...new Array(r)].map((l,i)=>d.createElement("li",{key:i,style:{width:Kn(i,e)}}));return d.createElement("ul",{className:so(o,t),style:n},s)},dt=Qn;var Jn=({prefixCls:e,className:o,width:t,style:n})=>d.createElement("h3",{className:so(e,o),style:{width:t,...n}}),Ct=Jn;function go(e){return e&&typeof e=="object"?e:{}}function ei(e,o){return e&&!o?{size:"large",shape:"square"}:{size:"large",shape:"circle"}}function oi(e,o){return !e&&o?{width:"38%"}:e&&o?{width:"50%"}:{}}function ti(e,o){let t={};return (!e||!o)&&(t.width="61%"),!e&&o?t.rows=3:t.rows=2,t}var X=e=>{let{prefixCls:o,loading:t,className:n,rootClassName:r,style:s,children:l,avatar:i=false,title:a=true,paragraph:c=true,active:p,round:f}=e,{getPrefixCls:m,direction:g,skeleton:C}=d.useContext(u),S=m("skeleton",o),[R,k,L]=T(S);if(t||!("loading"in e)){let v=!!i,$=!!a,N=!!c,P;if(v){let H={prefixCls:`${S}-avatar`,...ei($,N),...go(i)};P=d.createElement("div",{className:`${S}-header`},d.createElement(O,{...H}));}let U;if($||N){let H;if($){let V={prefixCls:`${S}-title`,...oi(v,N),...go(a)};H=d.createElement(Ct,{...V});}let j;if(N){let V={prefixCls:`${S}-paragraph`,...ti(v,$),...go(c)};j=d.createElement(dt,{...V});}U=d.createElement("div",{className:`${S}-content`},H,j);}let ne=so(S,{[`${S}-with-avatar`]:v,[`${S}-active`]:p,[`${S}-rtl`]:g==="rtl",[`${S}-round`]:f},C?.className,n,r,k,L);return R(d.createElement("div",{className:ne,style:{...C?.style,...s}},P,U))}return l??null};X.Button=st;X.Avatar=lt;X.Input=mt;X.Image=pt;X.Node=gt;process.env.NODE_ENV!=="production"&&(X.displayName="Skeleton");var St=X;var yt=St;var ri=e=>{let{value:o,formatter:t,precision:n,decimalSeparator:r,groupSeparator:s="",prefixCls:l}=e,i;if(typeof t=="function")i=t(o);else {let a=String(o),c=a.match(/^(-?)(\d*)(\.(\d+))?$/);if(!c||a==="-")i=a;else {let p=c[1],f=c[2]||"0",m=c[4]||"";f=f.replace(/\B(?=(\d{3})+(?!\d))/g,s),typeof n=="number"&&(m=m.padEnd(n,"0").slice(0,n>0?n:0)),m&&(m=`${r}${m}`),i=[d.createElement("span",{key:"int",className:`${l}-content-value-int`},p,f),m&&d.createElement("span",{key:"decimal",className:`${l}-content-value-decimal`},m)];}}return d.createElement("span",{className:`${l}-content-value`},i)},xt=ri;var ni=e=>{let{componentCls:o,marginXXS:t,padding:n,colorTextDescription:r,titleFontSize:s,colorTextHeading:l,contentFontSize:i,fontFamily:a}=e;return {[o]:{...Ko(e),[`${o}-title`]:{marginBottom:t,color:r,fontSize:s},[`${o}-skeleton`]:{paddingTop:n},[`${o}-content`]:{color:l,fontSize:i,fontFamily:a,[`${o}-content-value`]:{display:"inline-block",direction:"ltr"},[`${o}-content-prefix, ${o}-content-suffix`]:{display:"inline-block"},[`${o}-content-prefix`]:{marginInlineEnd:t},[`${o}-content-suffix`]:{marginInlineStart:t}}}}},ii=e=>{let{fontSizeHeading3:o,fontSize:t}=e;return {titleFontSize:t,contentFontSize:o}},kt=ge("Statistic",e=>{let o=mergeToken(e,{});return [ni(o)]},ii);var Pt=e=>{let{prefixCls:o,className:t,rootClassName:n,style:r,valueStyle:s,value:l=0,title:i,valueRender:a,prefix:c,suffix:p,loading:f=false,formatter:m,precision:g,decimalSeparator:C=".",groupSeparator:S=",",onMouseEnter:R,onMouseLeave:k,...L}=e,{getPrefixCls:v,direction:$,statistic:N}=d.useContext(u),P=v("statistic",o),[U,ne,H]=kt(P),j=d.createElement(xt,{decimalSeparator:C,groupSeparator:S,prefixCls:P,formatter:m,precision:g,value:l}),V=so(P,{[`${P}-rtl`]:$==="rtl"},N?.className,t,n,ne,H),He=li(L,{aria:true,data:true});return U(d.createElement("div",{...He,className:V,style:{...N?.style,...r},onMouseEnter:R,onMouseLeave:k},i&&d.createElement("div",{className:`${P}-title`},i),d.createElement(yt,{paragraph:false,loading:f,className:`${P}-skeleton`},d.createElement("div",{style:s,className:`${P}-content`},c&&d.createElement("span",{className:`${P}-content-prefix`},c),a?a(j):j,p&&d.createElement("span",{className:`${P}-content-suffix`},p)))))};process.env.NODE_ENV!=="production"&&(Pt.displayName="Statistic");var ye=Pt;var si=[["Y",31536e6],["M",2592e6],["D",864e5],["H",36e5],["m",6e4],["s",1e3],["S",1]];function ci(e,o){let t=e,n=/\[[^\]]*]/g,r=(o.match(n)||[]).map(a=>a.slice(1,-1)),s=o.replace(n,"[]"),l=si.reduce((a,[c,p])=>{if(a.includes(c)){let f=Math.floor(t/p);return t-=f*p,a.replace(new RegExp(`${c}+`,"g"),m=>{let g=m.length;return f.toString().padStart(g,"0")})}return a},s),i=0;return l.replace(n,()=>{let a=r[i];return i+=1,a})}function bt(e,o){let{format:t=""}=o,n=new Date(e).getTime(),r=Date.now(),s=Math.max(n-r,0);return ci(s,t)}var pi=1e3/30;function mi(e){return new Date(e).getTime()}var fi=e=>{let{value:o,format:t="HH:mm:ss",onChange:n,onFinish:r,...s}=e,l=Oe(),i=d.useRef(null),a=()=>{r?.(),i.current&&(clearInterval(i.current),i.current=null);},c=()=>{let m=mi(o);m>=Date.now()&&(i.current=setInterval(()=>{l(),n?.(m-Date.now()),m<Date.now()&&a();},pi));};return d.useEffect(()=>(c(),()=>{i.current&&(clearInterval(i.current),i.current=null);}),[o]),d.createElement(ye,{...s,value:o,valueRender:m=>Po(m,{title:void 0}),formatter:(m,g)=>bt(m,{...g,format:t})})},ht=d.memo(fi);ye.Countdown=ht;var vc=ye;
48
+ export{vc as default};
File without changes
File without changes
@@ -0,0 +1,16 @@
1
+ import type { GetDefaultToken } from '../../theme/internal';
2
+ export interface ComponentToken {
3
+ /**
4
+ * @desc 标题字体大小
5
+ * @descEN Title font size
6
+ */
7
+ titleFontSize: number;
8
+ /**
9
+ * @desc 内容字体大小
10
+ * @descEN Content font size
11
+ */
12
+ contentFontSize: number;
13
+ }
14
+ export declare const prepareComponentToken: GetDefaultToken<'Statistic'>;
15
+ declare const _default: (prefixCls: string, rootCls?: string) => readonly [(node: React.ReactElement) => React.ReactElement, string, string];
16
+ export default _default;
@@ -0,0 +1,35 @@
1
+ import {createTheme,useCacheToken}from'@ant-design/cssinjs';import {genStyleUtils,mergeToken}from'@ant-design/cssinjs-utils';import*as ue from'react';import ue__default,{useContext}from'react';import {presetPrimaryColors,presetPalettes,generate}from'@ant-design/colors';import {TinyColor}from'@ctrl/tinycolor';var j=(e,t=false)=>({boxSizing:"border-box",margin:0,padding:0,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight,listStyle:"none",fontFamily:t?"inherit":e.fontFamily}),ce=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}});var E=e=>({a:{color:e.colorLink,textDecoration:e.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive},"&:active, &:hover":{textDecoration:e.linkHoverDecoration,outline:0},"&:focus":{textDecoration:e.linkFocusDecoration,outline:0},"&[disabled]":{color:e.colorTextDisabled,cursor:"not-allowed"}}}),$=(e,t,r,n)=>{let o=`[class^="${t}"], [class*=" ${t}"]`,s=r?`.${r}`:o,i={boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}},c={};return n!==false&&(c={fontFamily:e.fontFamily,fontSize:e.fontSize}),{[s]:{...c,...i,[o]:i}}};var h=e=>({[`.${e}`]:{...ce(),[`.${e} .${e}-icon`]:{display:"block"}}});function N(e){return (e+8)/e}function v(e){let t=new Array(10).fill(null).map((r,n)=>{let o=n-1,s=e*Math.E**(o/5),i=n>1?Math.floor(s):Math.ceil(s);return Math.floor(i/2)*2});return t[1]=e,t.map(r=>({size:r,lineHeight:N(r)}))}var U={version:"0.0.2"};var V=U.version;var M={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},ge={...M,colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
2
+ 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
3
+ 'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:false,motion:true},S=ge;function H(e,{generateColorPalettes:t,generateNeutralColorPalettes:r}){let{colorSuccess:n,colorWarning:o,colorError:s,colorInfo:i,colorPrimary:c,colorBgBase:g,colorTextBase:l}=e,a=t(c),p=t(n),m=t(o),f=t(s),C=t(i),ae=r(g,l),le=e.colorLink||e.colorInfo,P=t(le),se=new TinyColor(f[1]).mix(new TinyColor(f[3]),50).toHexString();return {...ae,colorPrimaryBg:a[1],colorPrimaryBgHover:a[2],colorPrimaryBorder:a[3],colorPrimaryBorderHover:a[4],colorPrimaryHover:a[5],colorPrimary:a[6],colorPrimaryActive:a[7],colorPrimaryTextHover:a[8],colorPrimaryText:a[9],colorPrimaryTextActive:a[10],colorSuccessBg:p[1],colorSuccessBgHover:p[2],colorSuccessBorder:p[3],colorSuccessBorderHover:p[4],colorSuccessHover:p[4],colorSuccess:p[6],colorSuccessActive:p[7],colorSuccessTextHover:p[8],colorSuccessText:p[9],colorSuccessTextActive:p[10],colorErrorBg:f[1],colorErrorBgHover:f[2],colorErrorBgFilledHover:se,colorErrorBgActive:f[3],colorErrorBorder:f[3],colorErrorBorderHover:f[4],colorErrorHover:f[5],colorError:f[6],colorErrorActive:f[7],colorErrorTextHover:f[8],colorErrorText:f[9],colorErrorTextActive:f[10],colorWarningBg:m[1],colorWarningBgHover:m[2],colorWarningBorder:m[3],colorWarningBorderHover:m[4],colorWarningHover:m[4],colorWarning:m[6],colorWarningActive:m[7],colorWarningTextHover:m[8],colorWarningText:m[9],colorWarningTextActive:m[10],colorInfoBg:C[1],colorInfoBgHover:C[2],colorInfoBorder:C[3],colorInfoBorderHover:C[4],colorInfoHover:C[4],colorInfo:C[6],colorInfoActive:C[7],colorInfoTextHover:C[8],colorInfoText:C[9],colorInfoTextActive:C[10],colorLinkHover:P[4],colorLink:P[6],colorLinkActive:P[7],colorBgMask:new TinyColor("#000").setAlpha(.45).toRgbString(),colorWhite:"#fff"}}var me=e=>{let t=e,r=e,n=e,o=e;return e<6&&e>=5?t=e+1:e<16&&e>=6?t=e+2:e>=16&&(t=16),e<7&&e>=5?r=4:e<8&&e>=7?r=5:e<14&&e>=8?r=6:e<16&&e>=14?r=7:e>=16&&(r=8),e<6&&e>=2?n=1:e>=6&&(n=2),e>4&&e<8?o=4:e>=8&&(o=6),{borderRadius:e,borderRadiusXS:n,borderRadiusSM:r,borderRadiusLG:t,borderRadiusOuter:o}},Q=me;function w(e){let{motionUnit:t,motionBase:r,borderRadius:n,lineWidth:o}=e;return {motionDurationFast:`${(r+t).toFixed(1)}s`,motionDurationMid:`${(r+t*2).toFixed(1)}s`,motionDurationSlow:`${(r+t*3).toFixed(1)}s`,lineWidthBold:o+1,...Q(n)}}var fe=e=>{let{controlHeight:t}=e;return {controlHeightSM:t*.75,controlHeightXS:t*.5,controlHeightLG:t*1.25}},_=fe;var de=e=>{let t=v(e),r=t.map(a=>a.size),n=t.map(a=>a.lineHeight),o=r[1],s=r[0],i=r[2],c=n[1],g=n[0],l=n[2];return {fontSizeSM:s,fontSize:o,fontSizeLG:i,fontSizeXL:r[3],fontSizeHeading1:r[6],fontSizeHeading2:r[5],fontSizeHeading3:r[4],fontSizeHeading4:r[3],fontSizeHeading5:r[2],lineHeight:c,lineHeightLG:l,lineHeightSM:g,fontHeight:Math.round(c*o),fontHeightLG:Math.round(l*i),fontHeightSM:Math.round(g*s),lineHeightHeading1:n[6],lineHeightHeading2:n[5],lineHeightHeading3:n[4],lineHeightHeading4:n[3],lineHeightHeading5:n[2]}},q=de;function A(e){let{sizeUnit:t,sizeStep:r}=e;return {sizeXXL:t*(r+8),sizeXL:t*(r+4),sizeLG:t*(r+2),sizeMD:t*(r+1),sizeMS:t*r,size:t*r,sizeSM:t*(r-1),sizeXS:t*(r-2),sizeXXS:t*(r-3)}}var d=(e,t)=>new TinyColor(e).setAlpha(t).toRgbString(),u=(e,t)=>new TinyColor(e).darken(t).toHexString();var J=e=>{let t=generate(e);return {1:t[0],2:t[1],3:t[2],4:t[3],5:t[4],6:t[5],7:t[6],8:t[4],9:t[5],10:t[6]}},Y=(e,t)=>{let r=e||"#fff",n=t||"#000";return {colorBgBase:r,colorTextBase:n,colorText:d(n,.88),colorTextSecondary:d(n,.65),colorTextTertiary:d(n,.45),colorTextQuaternary:d(n,.25),colorFill:d(n,.15),colorFillSecondary:d(n,.06),colorFillTertiary:d(n,.04),colorFillQuaternary:d(n,.02),colorBgSolid:d(n,1),colorBgSolidHover:d(n,.75),colorBgSolidActive:d(n,.95),colorBgLayout:u(r,4),colorBgContainer:u(r,0),colorBgElevated:u(r,0),colorBgSpotlight:d(n,.85),colorBgBlur:"transparent",colorBorder:u(r,15),colorBorderSecondary:u(r,6)}};function L(e){presetPrimaryColors.pink=presetPrimaryColors.magenta,presetPalettes.pink=presetPalettes.magenta;let t=Object.keys(M).map(r=>{let n=e[r]===presetPrimaryColors[r]?presetPalettes[r]:generate(e[r]);return new Array(10).fill(1).reduce((o,s,i)=>(o[`${r}-${i+1}`]=n[i],o[`${r}${i+1}`]=n[i],o),{})}).reduce((r,n)=>(r={...r,...n},r),{});return {...e,...t,...H(e,{generateColorPalettes:J,generateNeutralColorPalettes:Y}),...q(e.fontSize),...A(e),..._(e),...w(e)}}var Z=createTheme(L),ee={token:S,override:{override:S},hashed:true},F=ue__default.createContext(ee);function B(e){return e>=0&&e<=255}function xe(e,t){let{r,g:n,b:o,a:s}=new TinyColor(e).toRgb();if(s<1)return e;let{r:i,g:c,b:g}=new TinyColor(t).toRgb();for(let l=.01;l<=1;l+=.01){let a=Math.round((r-i*(1-l))/l),p=Math.round((n-c*(1-l))/l),m=Math.round((o-g*(1-l))/l);if(B(a)&&B(p)&&B(m))return new TinyColor({r:a,g:p,b:m,a:Math.round(l*100)/100}).toRgbString()}return new TinyColor({r,g:n,b:o,a:1}).toRgbString()}var y=xe;function k(e){let{override:t,...r}=e,n={...t};Object.keys(S).forEach(m=>{delete n[m];});let o={...r,...n},s=480,i=576,c=768,g=992,l=1200,a=1600;return o.motion===false&&(o.motionDurationFast="0s",o.motionDurationMid="0s",o.motionDurationSlow="0s"),{...o,colorFillContent:o.colorFillSecondary,colorFillContentHover:o.colorFill,colorFillAlter:o.colorFillQuaternary,colorBgContainerDisabled:o.colorFillTertiary,colorBorderBg:o.colorBgContainer,colorSplit:y(o.colorBorderSecondary,o.colorBgContainer),colorTextPlaceholder:o.colorTextQuaternary,colorTextDisabled:o.colorTextQuaternary,colorTextHeading:o.colorText,colorTextLabel:o.colorTextSecondary,colorTextDescription:o.colorTextTertiary,colorTextLightSolid:o.colorWhite,colorHighlight:o.colorError,colorBgTextHover:o.colorFillSecondary,colorBgTextActive:o.colorFill,colorIcon:o.colorTextTertiary,colorIconHover:o.colorText,colorErrorOutline:y(o.colorErrorBg,o.colorBgContainer),colorWarningOutline:y(o.colorWarningBg,o.colorBgContainer),fontSizeIcon:o.fontSizeSM,lineWidthFocus:o.lineWidth*3,lineWidth:o.lineWidth,controlOutlineWidth:o.lineWidth*2,controlInteractiveSize:o.controlHeight/2,controlItemBgHover:o.colorFillTertiary,controlItemBgActive:o.colorPrimaryBg,controlItemBgActiveHover:o.colorPrimaryBgHover,controlItemBgActiveDisabled:o.colorFill,controlTmpOutline:o.colorFillQuaternary,controlOutline:y(o.colorPrimaryBg,o.colorBgContainer),lineType:o.lineType,borderRadius:o.borderRadius,borderRadiusXS:o.borderRadiusXS,borderRadiusSM:o.borderRadiusSM,borderRadiusLG:o.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:o.sizeXXS,paddingXS:o.sizeXS,paddingSM:o.sizeSM,padding:o.size,paddingMD:o.sizeMD,paddingLG:o.sizeLG,paddingXL:o.sizeXL,paddingContentHorizontalLG:o.sizeLG,paddingContentVerticalLG:o.sizeMS,paddingContentHorizontal:o.sizeMS,paddingContentVertical:o.sizeSM,paddingContentHorizontalSM:o.size,paddingContentVerticalSM:o.sizeXS,marginXXS:o.sizeXXS,marginXS:o.sizeXS,marginSM:o.sizeSM,margin:o.size,marginMD:o.sizeMD,marginLG:o.sizeLG,marginXL:o.sizeXL,marginXXL:o.sizeXXL,boxShadow:`
4
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
5
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
6
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
7
+ `,boxShadowSecondary:`
8
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
9
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
10
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
11
+ `,boxShadowTertiary:`
12
+ 0 1px 2px 0 rgba(0, 0, 0, 0.03),
13
+ 0 1px 6px -1px rgba(0, 0, 0, 0.02),
14
+ 0 2px 4px 0 rgba(0, 0, 0, 0.02)
15
+ `,screenXS:s,screenXSMin:s,screenXSMax:i-1,screenSM:i,screenSMMin:i,screenSMMax:c-1,screenMD:c,screenMDMin:c,screenMDMax:g-1,screenLG:g,screenLGMin:g,screenLGMax:l-1,screenXL:l,screenXLMin:l,screenXLMax:a-1,screenXXL:a,screenXXLMin:a,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`
16
+ 0 1px 2px -2px ${new TinyColor("rgba(0, 0, 0, 0.16)").toRgbString()},
17
+ 0 3px 6px 0 ${new TinyColor("rgba(0, 0, 0, 0.12)").toRgbString()},
18
+ 0 5px 12px 4px ${new TinyColor("rgba(0, 0, 0, 0.09)").toRgbString()}
19
+ `,boxShadowDrawerRight:`
20
+ -6px 0 16px 0 rgba(0, 0, 0, 0.08),
21
+ -3px 0 6px -4px rgba(0, 0, 0, 0.12),
22
+ -9px 0 28px 8px rgba(0, 0, 0, 0.05)
23
+ `,boxShadowDrawerLeft:`
24
+ 6px 0 16px 0 rgba(0, 0, 0, 0.08),
25
+ 3px 0 6px -4px rgba(0, 0, 0, 0.12),
26
+ 9px 0 28px 8px rgba(0, 0, 0, 0.05)
27
+ `,boxShadowDrawerUp:`
28
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
29
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
30
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
31
+ `,boxShadowDrawerDown:`
32
+ 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
33
+ 0 -3px 6px -4px rgba(0, 0, 0, 0.12),
34
+ 0 -9px 28px 8px rgba(0, 0, 0, 0.05)
35
+ `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)",...n}}var G={lineHeight:true,lineHeightSM:true,lineHeightLG:true,lineHeightHeading1:true,lineHeightHeading2:true,lineHeightHeading3:true,lineHeightHeading4:true,lineHeightHeading5:true,opacityLoading:true,fontWeightStrong:true,zIndexPopupBase:true,zIndexBase:true,opacityImage:true},be={size:true,sizeSM:true,sizeLG:true,sizeMD:true,sizeXS:true,sizeXXS:true,sizeMS:true,sizeXL:true,sizeXXL:true,sizeUnit:true,sizeStep:true,motionBase:true,motionUnit:true},Pe={screenXS:true,screenXSMin:true,screenXSMax:true,screenSM:true,screenSMMin:true,screenSMMax:true,screenMD:true,screenMDMin:true,screenMDMax:true,screenLG:true,screenLGMin:true,screenLGMax:true,screenXL:true,screenXLMin:true,screenXLMax:true,screenXXL:true,screenXXLMin:true},oe=(e,t,r)=>{let n=r.getDerivativeToken(e),{override:o,...s}=t,i={...n,override:o};return i=k(i),s&&Object.entries(s).forEach(([c,g])=>{let{theme:l,...a}=g,p=a;l&&(p=oe({...i,...a},{override:a},l)),i[c]=p;}),i};function x(){let{token:e,hashed:t,theme:r,override:n,cssVar:o}=ue__default.useContext(F),s=`${V}-${t||""}`,i=r||Z,[c,g,l]=useCacheToken(i,[S,e],{salt:s,override:n,getComputedToken:oe,formatToken:k,cssVar:o&&{prefix:o.prefix,key:o.key,unitless:G,ignore:be,preserve:Pe}});return [i,l,t?g:"",c,o]}var te="ant",X="anticon";var he=(e,t)=>t||(e?`${te}-${e}`:te),b=ue.createContext({getPrefixCls:he,iconPrefixCls:X}),{Consumer:wo}=b;var{genStyleHooks:O,genComponentStyleHook:Me,genSubStyleComponent:ze}=genStyleUtils({usePrefix:()=>{let{getPrefixCls:e,iconPrefixCls:t}=useContext(b);return {rootPrefixCls:e(),iconPrefixCls:t}},useToken:()=>{let[e,t,r,n,o]=x();return {theme:e,realToken:t,hashId:r,token:n,cssVar:o}},useCSP:()=>{let{csp:e}=useContext(b);return e??{}},getResetStyles:(e,t)=>[{"&":E(e)},h(t?.prefix.iconPrefixCls??X)],getCommonStyle:$,getCompUnitless:(()=>G)});var He=e=>{let{componentCls:t,marginXXS:r,padding:n,colorTextDescription:o,titleFontSize:s,colorTextHeading:i,contentFontSize:c,fontFamily:g}=e;return {[t]:{...j(e),[`${t}-title`]:{marginBottom:r,color:o,fontSize:s},[`${t}-skeleton`]:{paddingTop:n},[`${t}-content`]:{color:i,fontSize:c,fontFamily:g,[`${t}-content-value`]:{display:"inline-block",direction:"ltr"},[`${t}-content-prefix, ${t}-content-suffix`]:{display:"inline-block"},[`${t}-content-prefix`]:{marginInlineEnd:r},[`${t}-content-suffix`]:{marginInlineStart:r}}}}},we=e=>{let{fontSizeHeading3:t,fontSize:r}=e;return {titleFontSize:r,contentFontSize:t}},st=O("Statistic",e=>{let t=mergeToken(e,{});return [He(t)]},we);export{st as default,we as prepareComponentToken};
@@ -0,0 +1,15 @@
1
+ import type * as React from 'react';
2
+ export type valueType = number | string;
3
+ export type countdownValueType = number | string;
4
+ export type Formatter = false | 'number' | 'countdown' | ((value: valueType, config?: FormatConfig) => React.ReactNode);
5
+ export interface FormatConfig {
6
+ formatter?: Formatter;
7
+ decimalSeparator?: string;
8
+ groupSeparator?: string;
9
+ precision?: number;
10
+ }
11
+ export interface CountdownFormatConfig extends FormatConfig {
12
+ format?: string;
13
+ }
14
+ export declare function formatTimeStr(duration: number, format: string): string;
15
+ export declare function formatCountdown(value: valueType, config: CountdownFormatConfig): string;
@@ -0,0 +1 @@
1
+ var l=[["Y",31536e6],["M",2592e6],["D",864e5],["H",36e5],["m",6e4],["s",1e3],["S",1]];function d(o,r){let n=o,e=/\[[^\]]*]/g,a=(r.match(e)||[]).map(t=>t.slice(1,-1)),c=r.replace(e,"[]"),u=l.reduce((t,[s,p])=>{if(t.includes(s)){let m=Math.floor(n/p);return n-=m*p,t.replace(new RegExp(`${s}+`,"g"),g=>{let f=g.length;return m.toString().padStart(f,"0")})}return t},c),i=0;return u.replace(e,()=>{let t=a[i];return i+=1,t})}function x(o,r){let{format:n=""}=r,e=new Date(o).getTime(),a=Date.now(),c=Math.max(e-a,0);return d(c,n)}export{x as formatCountdown,d as formatTimeStr};
@@ -0,0 +1,39 @@
1
+ import * as React from 'react';
2
+ import RcSteps from 'rc-steps';
3
+ import type { ProgressDotRender } from 'rc-steps/lib/Steps';
4
+ export interface StepProps {
5
+ className?: string;
6
+ description?: React.ReactNode;
7
+ icon?: React.ReactNode;
8
+ onClick?: React.MouseEventHandler<HTMLElement>;
9
+ status?: 'wait' | 'process' | 'finish' | 'error';
10
+ disabled?: boolean;
11
+ title?: React.ReactNode;
12
+ subTitle?: React.ReactNode;
13
+ style?: React.CSSProperties;
14
+ }
15
+ export interface StepsProps {
16
+ type?: 'default' | 'navigation' | 'inline';
17
+ className?: string;
18
+ rootClassName?: string;
19
+ current?: number;
20
+ direction?: 'horizontal' | 'vertical';
21
+ iconPrefix?: string;
22
+ initial?: number;
23
+ labelPlacement?: 'horizontal' | 'vertical';
24
+ prefixCls?: string;
25
+ progressDot?: boolean | ProgressDotRender;
26
+ responsive?: boolean;
27
+ size?: 'default' | 'small';
28
+ status?: 'wait' | 'process' | 'finish' | 'error';
29
+ style?: React.CSSProperties;
30
+ percent?: number;
31
+ onChange?: (current: number) => void;
32
+ children?: React.ReactNode;
33
+ items?: StepProps[];
34
+ }
35
+ type CompoundedComponent = React.FC<StepsProps> & {
36
+ Step: typeof RcSteps.Step;
37
+ };
38
+ declare const Steps: CompoundedComponent;
39
+ export default Steps;
@@ -0,0 +1,49 @@
1
+ import*as h from'react';import h__default,{createContext,useContext,useRef}from'react';import ns from'@ant-design/icons/CheckOutlined';import as from'@ant-design/icons/CloseOutlined';import Fr from'classnames';import pn from'rc-steps';import {createTheme,Keyframes,useCacheToken,unit,useStyleRegister}from'@ant-design/cssinjs';import vi from'@ant-design/icons/lib/components/Context';import bi from'rc-util/lib/hooks/useMemo';import {merge}from'rc-util/lib/utils/set';import zn,{resetWarned}from'rc-util/lib/warning';import'rc-pagination/lib/locale/en_US';import Nn from'rc-picker/lib/locale/en_US';import {presetPrimaryColors,presetPalettes,generate}from'@ant-design/colors';import {TinyColor}from'@ctrl/tinycolor';import Jn from'rc-util/lib/Dom/canUseDom';import {updateCSS}from'rc-util/lib/Dom/dynamicCSS';import Ti from'rc-util/lib/isEqual';import {genStyleUtils,mergeToken}from'@ant-design/cssinjs-utils';import {Provider}from'rc-motion';import Bi from'rc-util/lib/hooks/useLayoutEffect';import rs from'@ant-design/icons/CheckCircleFilled';import is from'@ant-design/icons/CloseCircleFilled';import ls from'rc-util/lib/omit';import {Circle}from'rc-progress';import Da,{Popup}from'rc-tooltip';import Ea from'rc-util/lib/hooks/useMergedState';import'rc-field-form';import ks from'rc-util/lib/Children/toArray';function Tt(){}var Y=null;function Ln(){Y=null,resetWarned();}var Lo=Tt;process.env.NODE_ENV!=="production"&&(Lo=(e,o,t)=>{zn(e,`[swiftcrab: ${o}] ${t}`),process.env.NODE_ENV==="test"&&Ln();});var Do=h.createContext({}),$=process.env.NODE_ENV!=="production"?e=>{let{strict:o}=h.useContext(Do),t=(r,n,i)=>{if(!r)if(o===false&&n==="deprecated"){let a=Y;Y||(Y={}),Y[e]=Y[e]||[],Y[e].includes(i||"")||Y[e].push(i||""),a||console.warn("[swiftcrab] There exists deprecated usage in your code:",Y);}else Lo(r,e,i);};return t.deprecated=(r,n,i,a)=>{t(r,"deprecated",`\`${n}\` is deprecated. Please use \`${i}\` instead.${a?` ${a}`:""}`);},t}:()=>{let e=()=>{};return e.deprecated=Tt,e},Se=Lo;var Pt=createContext(void 0);({lang:{...Nn}});var N="${label} is not a valid ${type}",Wn={Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Form:{defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:N,method:N,array:N,object:N,number:N,date:N,boolean:N,integer:N,float:N,regexp:N,email:N,url:N,hex:N},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}}},le=Wn;({...le.Modal});var Je=[],$t=()=>Je.reduce((e,o)=>({...e,...o}),le.Modal);function wt(e){if(e){let o={...e};return Je.push(o),$t(),()=>{Je=Je.filter(t=>t!==o),$t();}}({...le.Modal});}var jn=createContext(void 0),We=jn;var No="internalMark",It=e=>{let{locale:o={},children:t,_ANT_MARK__:r}=e;process.env.NODE_ENV!=="production"&&$("LocaleProvider")(r===No,"deprecated","`LocaleProvider` is deprecated. Please use `locale` with `ConfigProvider` instead: http://u.ant.design/locale"),h.useEffect(()=>wt(o?.Modal),[o]);let n=h.useMemo(()=>({...o,exist:true}),[o]);return h.createElement(We.Provider,{value:n},t)};process.env.NODE_ENV!=="production"&&(It.displayName="LocaleProvider");var Mt=It;var Fo={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},Gn={...Fo,colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
2
+ 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
3
+ 'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:false,motion:true},Q=Gn;function Wo(e,{generateColorPalettes:o,generateNeutralColorPalettes:t}){let{colorSuccess:r,colorWarning:n,colorError:i,colorInfo:a,colorPrimary:s,colorBgBase:l,colorTextBase:c}=e,p=o(s),m=o(r),d=o(n),f=o(i),g=o(a),x=t(l,c),y=e.colorLink||e.colorInfo,u=o(y),C=new TinyColor(f[1]).mix(new TinyColor(f[3]),50).toHexString();return {...x,colorPrimaryBg:p[1],colorPrimaryBgHover:p[2],colorPrimaryBorder:p[3],colorPrimaryBorderHover:p[4],colorPrimaryHover:p[5],colorPrimary:p[6],colorPrimaryActive:p[7],colorPrimaryTextHover:p[8],colorPrimaryText:p[9],colorPrimaryTextActive:p[10],colorSuccessBg:m[1],colorSuccessBgHover:m[2],colorSuccessBorder:m[3],colorSuccessBorderHover:m[4],colorSuccessHover:m[4],colorSuccess:m[6],colorSuccessActive:m[7],colorSuccessTextHover:m[8],colorSuccessText:m[9],colorSuccessTextActive:m[10],colorErrorBg:f[1],colorErrorBgHover:f[2],colorErrorBgFilledHover:C,colorErrorBgActive:f[3],colorErrorBorder:f[3],colorErrorBorderHover:f[4],colorErrorHover:f[5],colorError:f[6],colorErrorActive:f[7],colorErrorTextHover:f[8],colorErrorText:f[9],colorErrorTextActive:f[10],colorWarningBg:d[1],colorWarningBgHover:d[2],colorWarningBorder:d[3],colorWarningBorderHover:d[4],colorWarningHover:d[4],colorWarning:d[6],colorWarningActive:d[7],colorWarningTextHover:d[8],colorWarningText:d[9],colorWarningTextActive:d[10],colorInfoBg:g[1],colorInfoBgHover:g[2],colorInfoBorder:g[3],colorInfoBorderHover:g[4],colorInfoHover:g[4],colorInfo:g[6],colorInfoActive:g[7],colorInfoTextHover:g[8],colorInfoText:g[9],colorInfoTextActive:g[10],colorLinkHover:u[4],colorLink:u[6],colorLinkActive:u[7],colorBgMask:new TinyColor("#000").setAlpha(.45).toRgbString(),colorWhite:"#fff"}}var Xn=e=>{let o=e,t=e,r=e,n=e;return e<6&&e>=5?o=e+1:e<16&&e>=6?o=e+2:e>=16&&(o=16),e<7&&e>=5?t=4:e<8&&e>=7?t=5:e<14&&e>=8?t=6:e<16&&e>=14?t=7:e>=16&&(t=8),e<6&&e>=2?r=1:e>=6&&(r=2),e>4&&e<8?n=4:e>=8&&(n=6),{borderRadius:e,borderRadiusXS:r,borderRadiusSM:t,borderRadiusLG:o,borderRadiusOuter:n}},kt=Xn;function Bo(e){let{motionUnit:o,motionBase:t,borderRadius:r,lineWidth:n}=e;return {motionDurationFast:`${(t+o).toFixed(1)}s`,motionDurationMid:`${(t+o*2).toFixed(1)}s`,motionDurationSlow:`${(t+o*3).toFixed(1)}s`,lineWidthBold:n+1,...kt(r)}}var Vn=e=>{let{controlHeight:o}=e;return {controlHeightSM:o*.75,controlHeightXS:o*.5,controlHeightLG:o*1.25}},Ot=Vn;function zt(e){return (e+8)/e}function jo(e){let o=new Array(10).fill(null).map((t,r)=>{let n=r-1,i=e*Math.E**(n/5),a=r>1?Math.floor(i):Math.ceil(i);return Math.floor(a/2)*2});return o[1]=e,o.map(t=>({size:t,lineHeight:zt(t)}))}var _n=e=>{let o=jo(e),t=o.map(p=>p.size),r=o.map(p=>p.lineHeight),n=t[1],i=t[0],a=t[2],s=r[1],l=r[0],c=r[2];return {fontSizeSM:i,fontSize:n,fontSizeLG:a,fontSizeXL:t[3],fontSizeHeading1:t[6],fontSizeHeading2:t[5],fontSizeHeading3:t[4],fontSizeHeading4:t[3],fontSizeHeading5:t[2],lineHeight:s,lineHeightLG:c,lineHeightSM:l,fontHeight:Math.round(s*n),fontHeightLG:Math.round(c*a),fontHeightSM:Math.round(l*i),lineHeightHeading1:r[6],lineHeightHeading2:r[5],lineHeightHeading3:r[4],lineHeightHeading4:r[3],lineHeightHeading5:r[2]}},At=_n;function Go(e){let{sizeUnit:o,sizeStep:t}=e;return {sizeXXL:o*(t+8),sizeXL:o*(t+4),sizeLG:o*(t+2),sizeMD:o*(t+1),sizeMS:o*t,size:o*t,sizeSM:o*(t-1),sizeXS:o*(t-2),sizeXXS:o*(t-3)}}var F=(e,o)=>new TinyColor(e).setAlpha(o).toRgbString(),he=(e,o)=>new TinyColor(e).darken(o).toHexString();var Dt=e=>{let o=generate(e);return {1:o[0],2:o[1],3:o[2],4:o[3],5:o[4],6:o[5],7:o[6],8:o[4],9:o[5],10:o[6]}},Et=(e,o)=>{let t=e||"#fff",r=o||"#000";return {colorBgBase:t,colorTextBase:r,colorText:F(r,.88),colorTextSecondary:F(r,.65),colorTextTertiary:F(r,.45),colorTextQuaternary:F(r,.25),colorFill:F(r,.15),colorFillSecondary:F(r,.06),colorFillTertiary:F(r,.04),colorFillQuaternary:F(r,.02),colorBgSolid:F(r,1),colorBgSolidHover:F(r,.75),colorBgSolidActive:F(r,.95),colorBgLayout:he(t,4),colorBgContainer:he(t,0),colorBgElevated:he(t,0),colorBgSpotlight:F(r,.85),colorBgBlur:"transparent",colorBorder:he(t,15),colorBorderSecondary:he(t,6)}};function _o(e){presetPrimaryColors.pink=presetPrimaryColors.magenta,presetPalettes.pink=presetPalettes.magenta;let o=Object.keys(Fo).map(t=>{let r=e[t]===presetPrimaryColors[t]?presetPalettes[t]:generate(e[t]);return new Array(10).fill(1).reduce((n,i,a)=>(n[`${t}-${a+1}`]=r[a],n[`${t}${a+1}`]=r[a],n),{})}).reduce((t,r)=>(t={...t,...r},t),{});return {...e,...o,...Wo(e,{generateColorPalettes:Dt,generateNeutralColorPalettes:Et}),...At(e.fontSize),...Go(e),...Ot(e),...Bo(e)}}var eo=createTheme(_o),Be={token:Q,override:{override:Q},hashed:true},je=h__default.createContext(Be);var Ge="ant",Xe="anticon";var Yn=(e,o)=>o||(e?`${Ge}-${e}`:Ge),M=h.createContext({getPrefixCls:Yn,iconPrefixCls:Xe}),{Consumer:Qn}=M;var oi=`-ant-${Date.now()}-${Math.random()}`;function ti(e,o){let t={},r=(a,s)=>{let l=a.clone();return l=s?.(l)||l,l.toRgbString()},n=(a,s)=>{let l=new TinyColor(a),c=generate(l.toRgbString());t[`${s}-color`]=r(l),t[`${s}-color-disabled`]=c[1],t[`${s}-color-hover`]=c[4],t[`${s}-color-active`]=c[6],t[`${s}-color-outline`]=l.clone().setAlpha(.2).toRgbString(),t[`${s}-color-deprecated-bg`]=c[0],t[`${s}-color-deprecated-border`]=c[2];};if(o.primaryColor){n(o.primaryColor,"primary");let a=new TinyColor(o.primaryColor),s=generate(a.toRgbString());s.forEach((c,p)=>{t[`primary-${p+1}`]=c;}),t["primary-color-deprecated-l-35"]=r(a,c=>c.lighten(35)),t["primary-color-deprecated-l-20"]=r(a,c=>c.lighten(20)),t["primary-color-deprecated-t-20"]=r(a,c=>c.tint(20)),t["primary-color-deprecated-t-50"]=r(a,c=>c.tint(50)),t["primary-color-deprecated-f-12"]=r(a,c=>c.setAlpha(c.getAlpha()*.12));let l=new TinyColor(s[0]);t["primary-color-active-deprecated-f-30"]=r(l,c=>c.setAlpha(c.getAlpha()*.3)),t["primary-color-active-deprecated-d-02"]=r(l,c=>c.darken(2));}return o.successColor&&n(o.successColor,"success"),o.warningColor&&n(o.warningColor,"warning"),o.errorColor&&n(o.errorColor,"error"),o.infoColor&&n(o.infoColor,"info"),`
4
+ :root {
5
+ ${Object.keys(t).map(a=>`--${e}-${a}: ${t[a]};`).join(`
6
+ `)}
7
+ }
8
+ `.trim()}function Ht(e,o){let t=ti(e,o);Jn()?updateCSS(t,`${oi}-dynamic-theme`):Se(false,"ConfigProvider","SSR do not support dynamic theme with css variables.");}var Ko=h.createContext(false),Wt=({children:e,disabled:o})=>{let t=h.useContext(Ko);return h.createElement(Ko.Provider,{value:o??t},e)},Bt=Ko;var Uo=h.createContext(void 0),jt=({children:e,size:o})=>{let t=h.useContext(Uo);return h.createElement(Uo.Provider,{value:o||t},e)},ce=Uo;function ri(){let e=useContext(Bt),o=useContext(ce);return {componentDisabled:e,componentSize:o}}var Xt=ri;var ne=["blue","purple","cyan","green","magenta","pink","red","orange","yellow","volcano","geekblue","lime","gold"];var Vt={version:"0.0.2"};var _t=Vt.version;function Zo(e){return e>=0&&e<=255}function ii(e,o){let{r:t,g:r,b:n,a:i}=new TinyColor(e).toRgb();if(i<1)return e;let{r:a,g:s,b:l}=new TinyColor(o).toRgb();for(let c=.01;c<=1;c+=.01){let p=Math.round((t-a*(1-c))/c),m=Math.round((r-s*(1-c))/c),d=Math.round((n-l*(1-c))/c);if(Zo(p)&&Zo(m)&&Zo(d))return new TinyColor({r:p,g:m,b:d,a:Math.round(c*100)/100}).toRgbString()}return new TinyColor({r:t,g:r,b:n,a:1}).toRgbString()}var Ve=ii;function to(e){let{override:o,...t}=e,r={...o};Object.keys(Q).forEach(d=>{delete r[d];});let n={...t,...r},i=480,a=576,s=768,l=992,c=1200,p=1600;return n.motion===false&&(n.motionDurationFast="0s",n.motionDurationMid="0s",n.motionDurationSlow="0s"),{...n,colorFillContent:n.colorFillSecondary,colorFillContentHover:n.colorFill,colorFillAlter:n.colorFillQuaternary,colorBgContainerDisabled:n.colorFillTertiary,colorBorderBg:n.colorBgContainer,colorSplit:Ve(n.colorBorderSecondary,n.colorBgContainer),colorTextPlaceholder:n.colorTextQuaternary,colorTextDisabled:n.colorTextQuaternary,colorTextHeading:n.colorText,colorTextLabel:n.colorTextSecondary,colorTextDescription:n.colorTextTertiary,colorTextLightSolid:n.colorWhite,colorHighlight:n.colorError,colorBgTextHover:n.colorFillSecondary,colorBgTextActive:n.colorFill,colorIcon:n.colorTextTertiary,colorIconHover:n.colorText,colorErrorOutline:Ve(n.colorErrorBg,n.colorBgContainer),colorWarningOutline:Ve(n.colorWarningBg,n.colorBgContainer),fontSizeIcon:n.fontSizeSM,lineWidthFocus:n.lineWidth*3,lineWidth:n.lineWidth,controlOutlineWidth:n.lineWidth*2,controlInteractiveSize:n.controlHeight/2,controlItemBgHover:n.colorFillTertiary,controlItemBgActive:n.colorPrimaryBg,controlItemBgActiveHover:n.colorPrimaryBgHover,controlItemBgActiveDisabled:n.colorFill,controlTmpOutline:n.colorFillQuaternary,controlOutline:Ve(n.colorPrimaryBg,n.colorBgContainer),lineType:n.lineType,borderRadius:n.borderRadius,borderRadiusXS:n.borderRadiusXS,borderRadiusSM:n.borderRadiusSM,borderRadiusLG:n.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:n.sizeXXS,paddingXS:n.sizeXS,paddingSM:n.sizeSM,padding:n.size,paddingMD:n.sizeMD,paddingLG:n.sizeLG,paddingXL:n.sizeXL,paddingContentHorizontalLG:n.sizeLG,paddingContentVerticalLG:n.sizeMS,paddingContentHorizontal:n.sizeMS,paddingContentVertical:n.sizeSM,paddingContentHorizontalSM:n.size,paddingContentVerticalSM:n.sizeXS,marginXXS:n.sizeXXS,marginXS:n.sizeXS,marginSM:n.sizeSM,margin:n.size,marginMD:n.sizeMD,marginLG:n.sizeLG,marginXL:n.sizeXL,marginXXL:n.sizeXXL,boxShadow:`
9
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
10
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
11
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
12
+ `,boxShadowSecondary:`
13
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
14
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
15
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
16
+ `,boxShadowTertiary:`
17
+ 0 1px 2px 0 rgba(0, 0, 0, 0.03),
18
+ 0 1px 6px -1px rgba(0, 0, 0, 0.02),
19
+ 0 2px 4px 0 rgba(0, 0, 0, 0.02)
20
+ `,screenXS:i,screenXSMin:i,screenXSMax:a-1,screenSM:a,screenSMMin:a,screenSMMax:s-1,screenMD:s,screenMDMin:s,screenMDMax:l-1,screenLG:l,screenLGMin:l,screenLGMax:c-1,screenXL:c,screenXLMin:c,screenXLMax:p-1,screenXXL:p,screenXXLMin:p,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`
21
+ 0 1px 2px -2px ${new TinyColor("rgba(0, 0, 0, 0.16)").toRgbString()},
22
+ 0 3px 6px 0 ${new TinyColor("rgba(0, 0, 0, 0.12)").toRgbString()},
23
+ 0 5px 12px 4px ${new TinyColor("rgba(0, 0, 0, 0.09)").toRgbString()}
24
+ `,boxShadowDrawerRight:`
25
+ -6px 0 16px 0 rgba(0, 0, 0, 0.08),
26
+ -3px 0 6px -4px rgba(0, 0, 0, 0.12),
27
+ -9px 0 28px 8px rgba(0, 0, 0, 0.05)
28
+ `,boxShadowDrawerLeft:`
29
+ 6px 0 16px 0 rgba(0, 0, 0, 0.08),
30
+ 3px 0 6px -4px rgba(0, 0, 0, 0.12),
31
+ 9px 0 28px 8px rgba(0, 0, 0, 0.05)
32
+ `,boxShadowDrawerUp:`
33
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08),
34
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12),
35
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05)
36
+ `,boxShadowDrawerDown:`
37
+ 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
38
+ 0 -3px 6px -4px rgba(0, 0, 0, 0.12),
39
+ 0 -9px 28px 8px rgba(0, 0, 0, 0.05)
40
+ `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)",...r}}var Qo={lineHeight:true,lineHeightSM:true,lineHeightLG:true,lineHeightHeading1:true,lineHeightHeading2:true,lineHeightHeading3:true,lineHeightHeading4:true,lineHeightHeading5:true,opacityLoading:true,fontWeightStrong:true,zIndexPopupBase:true,zIndexBase:true,opacityImage:true},li={size:true,sizeSM:true,sizeLG:true,sizeMD:true,sizeXS:true,sizeXXS:true,sizeMS:true,sizeXL:true,sizeXXL:true,sizeUnit:true,sizeStep:true,motionBase:true,motionUnit:true},ci={screenXS:true,screenXSMin:true,screenXSMax:true,screenSM:true,screenSMMin:true,screenSMMax:true,screenMD:true,screenMDMin:true,screenMDMax:true,screenLG:true,screenLGMin:true,screenLGMax:true,screenXL:true,screenXLMin:true,screenXLMax:true,screenXXL:true,screenXXLMin:true},qt=(e,o,t)=>{let r=t.getDerivativeToken(e),{override:n,...i}=o,a={...r,override:n};return a=to(a),i&&Object.entries(i).forEach(([s,l])=>{let{theme:c,...p}=l,m=p;c&&(m=qt({...a,...p},{override:p},c)),a[s]=m;}),a};function D(){let{token:e,hashed:o,theme:t,override:r,cssVar:n}=h__default.useContext(je),i=`${_t}-${o||""}`,a=t||eo,[s,l,c]=useCacheToken(a,[Q,e],{salt:i,override:r,getComputedToken:qt,formatToken:to,cssVar:n&&{prefix:n.prefix,key:n.key,unitless:Qo,ignore:li,preserve:ci}});return [a,c,o?l:"",s,n]}var Kt={overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"},Pe=(e,o=false)=>({boxSizing:"border-box",margin:0,padding:0,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight,listStyle:"none",fontFamily:o?"inherit":e.fontFamily}),mi=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}});var Ut=e=>({a:{color:e.colorLink,textDecoration:e.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive},"&:active, &:hover":{textDecoration:e.linkHoverDecoration,outline:0},"&:focus":{textDecoration:e.linkFocusDecoration,outline:0},"&[disabled]":{color:e.colorTextDisabled,cursor:"not-allowed"}}}),Zt=(e,o,t,r)=>{let n=`[class^="${o}"], [class*=" ${o}"]`,i=t?`.${t}`:n,a={boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}},s={};return r!==false&&(s={fontFamily:e.fontFamily,fontSize:e.fontSize}),{[i]:{...s,...a,[n]:a}}},Yt=e=>({outline:`${unit(e.lineWidthFocus)} solid ${e.colorPrimaryBorder}`,outlineOffset:1,transition:"outline-offset 0s, outline 0s"});var ro=e=>({[`.${e}`]:{...mi(),[`.${e} .${e}-icon`]:{display:"block"}}});var{genStyleHooks:J,genComponentStyleHook:fi,genSubStyleComponent:gi}=genStyleUtils({usePrefix:()=>{let{getPrefixCls:e,iconPrefixCls:o}=useContext(M);return {rootPrefixCls:e(),iconPrefixCls:o}},useToken:()=>{let[e,o,t,r,n]=D();return {theme:e,realToken:o,hashId:t,token:r,cssVar:n}},useCSP:()=>{let{csp:e}=useContext(M);return e??{}},getResetStyles:(e,o)=>[{"&":Ut(e)},ro(o?.prefix.iconPrefixCls??Xe)],getCommonStyle:Zt,getCompUnitless:(()=>Qo)});function no(e,o){return ne.reduce((t,r)=>{let n=e[`${r}1`],i=e[`${r}3`],a=e[`${r}6`],s=e[`${r}7`];return {...t,...o(r,{lightColor:n,lightBorderColor:i,darkColor:a,textColor:s})}},{})}var Ci=(e,o)=>{let[t,r]=D();return useStyleRegister({theme:t,token:r,hashId:"",path:["ant-design-icons",e],nonce:()=>o?.nonce,layer:{name:"antd"}},()=>[ro(e)])},io=Ci;var Si={...h},{useId:Jt}=Si,xi=()=>"",hi=typeof Jt>"u"?xi:Jt,er=hi;function Jo(e,o,t){let r=$("ConfigProvider"),n=e||{},i=n.inherit===false||!o?{...Be,hashed:o?.hashed??Be.hashed,cssVar:o?.cssVar}:o,a=er();if(process.env.NODE_ENV!=="production"){let s=n.cssVar||i.cssVar,l=!!(typeof n.cssVar=="object"&&n.cssVar?.key||a);r(!s||l,"breaking","Missing key in `cssVar` config. Please upgrade to React 18 or set `cssVar.key` manually in each ConfigProvider inside `cssVar` enabled ConfigProvider.");}return bi(()=>{if(!e)return o;let s={...i.components};Object.keys(e.components||{}).forEach(p=>{s[p]={...s[p],...e.components[p]};});let l=`css-var-${a.replace(/:/g,"")}`,c=(n.cssVar??i.cssVar)&&{prefix:t?.prefixCls,...typeof i.cssVar=="object"?i.cssVar:{},...typeof n.cssVar=="object"?n.cssVar:{},key:typeof n.cssVar=="object"&&n.cssVar?.key||l};return {...i,...n,token:{...i.token,...n.token},components:s,cssVar:c}},[n,i],(s,l)=>s.some((c,p)=>{let m=l[p];return !Ti(c,m,true)}))}function et(e){let{children:o}=e,[,t]=D(),{motion:r}=t,n=h.useRef(false);return n.current=n.current||r===false,n.current?h.createElement(Provider,{motion:r},o):o}var tr=h.memo(({dropdownMatchSelectWidth:e})=>($("ConfigProvider").deprecated(e===void 0,"dropdownMatchSelectWidth","popupMatchSelectWidth"),null));process.env.NODE_ENV!=="production"&&(tr.displayName="PropWarning");var rr=process.env.NODE_ENV!=="production"?tr:()=>null;var ot=false;process.env.NODE_ENV!=="production"?e=>{Se(!ot,e,"Static function can not consume context like dynamic theme. Please use 'App' component instead.");}:null;var Ri=["getTargetContainer","getPopupContainer","renderEmpty","input","pagination","form","select","button"],ir;function Oi(){return ir||Ge}function zi(e){return Object.keys(e).some(o=>o.endsWith("Color"))}var Ai=e=>{let{prefixCls:o,iconPrefixCls:t,theme:r,holderRender:n}=e;o!==void 0&&(ir=o),r&&(zi(r)?(Se(false,"ConfigProvider","`config` of css variable theme is not work in v5. Please use new `theme` config instead."),Ht(Oi(),r)):r);};var Li=e=>{let{children:o,csp:t,autoInsertSpaceInButton:r,alert:n,anchor:i,form:a,locale:s,componentSize:l,direction:c,space:p,splitter:m,virtual:d,dropdownMatchSelectWidth:f,popupMatchSelectWidth:g,popupOverflow:x,legacyLocale:y,parentContext:u,iconPrefixCls:C,theme:w,componentDisabled:A,segmented:k,statistic:P,spin:L,calendar:O,carousel:E,cascader:S,collapse:te,typography:q,checkbox:me,descriptions:K,divider:R,drawer:H,skeleton:U,steps:ze,image:z,layout:X,list:Ae,mentions:Le,modal:de,progress:re,result:xo,slider:ho,breadcrumb:De,menu:Ee,pagination:fe,input:bo,textArea:To,empty:Po,badge:vo,radio:Ne,rate:$o,switch:wo,transfer:Ro,avatar:Io,message:Mo,tag:ko,table:j,card:Oo,tabs:mn,timeline:dn,timePicker:fn,upload:gn,notification:un,tree:Cn,colorPicker:yn,datePicker:Sn,rangePicker:xn,flex:hn,wave:bn,dropdown:Tn,warning:Pn,tour:vn,variant:$n,inputNumber:wn,treeSelect:Rn}=e,St=h.useCallback((v,V)=>{let{prefixCls:Ce}=e;if(V)return V;let ye=Ce||u.getPrefixCls("");return v?`${ye}-${v}`:ye},[u.getPrefixCls,e.prefixCls]),Fe=C||u.iconPrefixCls||Xe,He=t||u.csp;io(Fe,He);let Ke=Jo(w,u.theme,{prefixCls:St("")});process.env.NODE_ENV!=="production"&&(ot=ot||!!Ke);let zo={csp:He,autoInsertSpaceInButton:r,alert:n,anchor:i,locale:s||y,direction:c,space:p,splitter:m,virtual:d,popupMatchSelectWidth:g??f,popupOverflow:x,getPrefixCls:St,iconPrefixCls:Fe,theme:Ke,segmented:k,statistic:P,spin:L,calendar:O,carousel:E,cascader:S,collapse:te,typography:q,checkbox:me,descriptions:K,divider:R,drawer:H,skeleton:U,steps:ze,image:z,input:bo,textArea:To,layout:X,list:Ae,mentions:Le,modal:de,progress:re,result:xo,slider:ho,breadcrumb:De,menu:Ee,pagination:fe,empty:Po,badge:vo,radio:Ne,rate:$o,switch:wo,transfer:Ro,avatar:Io,message:Mo,tag:ko,table:j,card:Oo,tabs:mn,timeline:dn,timePicker:fn,upload:gn,notification:un,tree:Cn,colorPicker:yn,datePicker:Sn,rangePicker:xn,flex:hn,wave:bn,dropdown:Tn,warning:Pn,tour:vn,variant:$n,inputNumber:wn,treeSelect:Rn};process.env.NODE_ENV!=="production"&&$("ConfigProvider")(!("autoInsertSpaceInButton"in e),"deprecated","`autoInsertSpaceInButton` is deprecated. Please use `{ button: { autoInsertSpace: boolean }}` instead.");let ge={...u};Object.keys(zo).forEach(v=>{zo[v]!==void 0&&(ge[v]=zo[v]);}),Ri.forEach(v=>{let V=e[v];V&&(ge[v]=V);}),typeof r<"u"&&(ge.button={autoInsertSpace:r,...ge.button});let ue=bi(()=>ge,ge,(v,V)=>{let Ce=Object.keys(v),ye=Object.keys(V);return Ce.length!==ye.length||Ce.some(Ue=>v[Ue]!==V[Ue])}),In=h.useMemo(()=>({prefixCls:Fe,csp:He}),[Fe,He]),I=h.createElement(h.Fragment,null,h.createElement(rr,{dropdownMatchSelectWidth:f}),o),xt=h.useMemo(()=>merge(le.Form?.defaultValidateMessages||{},ue.locale?.Form?.defaultValidateMessages||{},ue.form?.validateMessages||{},a?.validateMessages||{}),[ue,a?.validateMessages]);Object.keys(xt).length>0&&(I=h.createElement(Pt.Provider,{value:xt},I)),s&&(I=h.createElement(Mt,{locale:s,_ANT_MARK__:No},I)),(I=h.createElement(vi.Provider,{value:In},I)),l&&(I=h.createElement(jt,{size:l},I)),I=h.createElement(et,null,I);let Mn=h.useMemo(()=>{let{algorithm:v,token:V,components:Ce,cssVar:ye,...Ue}=Ke||{},ht=v&&(!Array.isArray(v)||v.length>0)?createTheme(v):eo,Ao={};Object.entries(Ce||{}).forEach(([kn,On])=>{let Z={...On};"algorithm"in Z&&(Z.algorithm===true?Z.theme=ht:(Array.isArray(Z.algorithm)||typeof Z.algorithm=="function")&&(Z.theme=createTheme(Z.algorithm)),delete Z.algorithm),Ao[kn]=Z;});let bt={...Q,...V};return {...Ue,theme:ht,token:bt,components:Ao,override:{override:bt,...Ao},cssVar:ye}},[Ke]);return w&&(I=h.createElement(je.Provider,{value:Mn},I)),ue.warning&&(I=h.createElement(Do.Provider,{value:ue.warning},I)),A!==void 0&&(I=h.createElement(Wt,{disabled:A},I)),h.createElement(M.Provider,{value:ue},I)},ve=e=>{let o=h.useContext(M),t=h.useContext(We);return h.createElement(Li,{parentContext:o,legacyLocale:t,...e})};ve.ConfigContext=M;ve.SizeContext=ce;ve.config=Ai;ve.useConfig=Xt;Object.defineProperty(ve,"SizeContext",{get:()=>(Se(false,"ConfigProvider","ConfigProvider.SizeContext is deprecated. Please use `ConfigProvider.useConfig().componentSize` instead."),ce)});process.env.NODE_ENV!=="production"&&(ve.displayName="ConfigProvider");var Di=e=>{let o=h__default.useContext(ce);return h__default.useMemo(()=>e?typeof e=="string"?e??o:e instanceof Function?e(o):o:o,[e,o])},tt=Di;function rt(){let[,e]=h.useReducer(o=>o+1,0);return e}var Ni=["xxl","xl","lg","md","sm","xs"],Fi=e=>({xs:`(max-width: ${e.screenXSMax}px)`,sm:`(min-width: ${e.screenSM}px)`,md:`(min-width: ${e.screenMD}px)`,lg:`(min-width: ${e.screenLG}px)`,xl:`(min-width: ${e.screenXL}px)`,xxl:`(min-width: ${e.screenXXL}px)`}),Hi=e=>{let o=e,t=[...Ni].reverse();return t.forEach((r,n)=>{let i=r.toUpperCase(),a=`screen${i}Min`,s=`screen${i}`;if(!(o[a]<=o[s]))throw new Error(`${a}<=${s} fails : !(${o[a]}<=${o[s]})`);if(n<t.length-1){let l=`screen${i}Max`;if(!(o[s]<=o[l]))throw new Error(`${s}<=${l} fails : !(${o[s]}<=${o[l]})`);let p=`screen${t[n+1].toUpperCase()}Min`;if(!(o[l]<=o[p]))throw new Error(`${l}<=${p} fails : !(${o[l]}<=${o[p]})`)}}),e};function nt(){let[,e]=D(),o=Fi(Hi(e));return h__default.useMemo(()=>{let t=new Map,r=-1,n={};return {matchHandlers:{},dispatch(i){return n=i,t.forEach(a=>a(n)),t.size>=1},subscribe(i){return t.size||this.register(),r+=1,t.set(r,i),i(n),r},unsubscribe(i){t.delete(i),t.size||this.unregister();},unregister(){Object.keys(o).forEach(i=>{let a=o[i],s=this.matchHandlers[a];s?.mql.removeListener(s?.listener);}),t.clear();},register(){Object.keys(o).forEach(i=>{let a=o[i],s=({matches:c})=>{this.dispatch({...n,[i]:c});},l=window.matchMedia(a);l.addListener(s),this.matchHandlers[a]={mql:l,listener:s},s(l);});},responsiveMap:o}},[e])}function ji(e=true){let o=useRef({}),t=rt(),r=nt();return Bi(()=>{let n=r.subscribe(i=>{o.current=i,e&&t();});return ()=>r.unsubscribe(n)},[]),o.current}var lr=ji;h.createContext({labelAlign:"right",vertical:false,itemRef:(()=>{})});h.createContext(null);h.createContext({prefixCls:""});var it=h.createContext({});process.env.NODE_ENV!=="production"&&(it.displayName="FormItemInputContext");var cr=({children:e,status:o,override:t})=>{let r=h.useContext(it),n=h.useMemo(()=>{let i={...r};return t&&delete i.isFormItemInput,o&&(delete i.status,delete i.hasFeedback,delete i.feedbackIcon),i},[o,t,r]);return h.createElement(it.Provider,{value:n},e)};h.createContext(void 0);var Gi=e=>{let{componentCls:o}=e;return {[o]:{"&-block":{display:"flex",width:"100%"},"&-vertical":{flexDirection:"column"}}}},pr=Gi;var Xi=e=>{let{componentCls:o,antCls:t}=e;return {[o]:{display:"inline-flex","&-rtl":{direction:"rtl"},"&-vertical":{flexDirection:"column"},"&-align":{flexDirection:"column","&-center":{alignItems:"center"},"&-start":{alignItems:"flex-start"},"&-end":{alignItems:"flex-end"},"&-baseline":{alignItems:"baseline"}},[`${o}-item:empty`]:{display:"none"},[`${o}-item > ${t}-badge-not-a-wrapper:only-child`]:{display:"block"}}}},Vi=e=>{let{componentCls:o}=e;return {[o]:{"&-gap-row-small":{rowGap:e.spaceGapSmallSize},"&-gap-row-middle":{rowGap:e.spaceGapMiddleSize},"&-gap-row-large":{rowGap:e.spaceGapLargeSize},"&-gap-col-small":{columnGap:e.spaceGapSmallSize},"&-gap-col-middle":{columnGap:e.spaceGapMiddleSize},"&-gap-col-large":{columnGap:e.spaceGapLargeSize}}}};J("Space",e=>{let o=mergeToken(e,{spaceGapSmallSize:e.paddingXS,spaceGapMiddleSize:e.padding,spaceGapLargeSize:e.paddingLG});return [Xi(o),Vi(o),pr(o)]},()=>({}),{resetStyle:false});var qi=h.createContext(null);var mr=({children:e})=>h.createElement(qi.Provider,{value:null},e);var Ki=e=>{let{space:o,form:t,children:r}=e;if(r==null)return null;let n=r;return t&&(n=h__default.createElement(cr,{override:true,status:true},n)),o&&(n=h__default.createElement(mr,null,n)),n},fr=Ki;var gr=h__default.createContext(void 0);process.env.NODE_ENV!=="production"&&(gr.displayName="zIndexContext");var so=gr;var oe=100,Yi=10,Qi=oe*Yi,Ji=Qi+oe,ur={Modal:oe,Drawer:oe,Popover:oe,Popconfirm:oe,Tooltip:oe,Tour:oe,FloatButton:oe},ea={SelectLike:50,Dropdown:50,DatePicker:50,Menu:50,ImagePreview:1};function oa(e){return e in ur}var Cr=(e,o)=>{let[,t]=D(),r=h__default.useContext(so),n=oa(e),i;if(o!==void 0)i=[o,o];else {let a=r??0;n?a+=(r?0:t.zIndexPopupBase)+ur[e]:a+=ea[e],i=[r===void 0?o:a,a];}if(process.env.NODE_ENV!=="production"){let a=$(e),s=t.zIndexPopupBase+Ji,l=i[0]||0;a(o!==void 0||l<=s,"usage","`zIndex` is over design token `zIndexPopupBase` too much. It may cause unexpected override.");}return i};var yr=(e,o,t)=>t!==void 0?t:`${e}-${o}`;function Sr(e){let{sizePopupArrow:o,borderRadiusXS:t,borderRadiusOuter:r}=e,n=o/2,i=0,a=n,s=r*1/Math.sqrt(2),l=n-r*(1-1/Math.sqrt(2)),c=n-t*(1/Math.sqrt(2)),p=r*(Math.sqrt(2)-1)+t*(1/Math.sqrt(2)),m=2*n-c,d=p,f=2*n-s,g=l,x=2*n-i,y=a,u=n*Math.sqrt(2)+r*(Math.sqrt(2)-2),C=r*(Math.sqrt(2)-1),w=`polygon(${C}px 100%, 50% ${C}px, ${2*n-C}px 100%, ${C}px 100%)`,A=`path('M ${i} ${a} A ${r} ${r} 0 0 0 ${s} ${l} L ${c} ${p} A ${t} ${t} 0 0 1 ${m} ${d} L ${f} ${g} A ${r} ${r} 0 0 0 ${x} ${y} Z')`;return {arrowShadowWidth:u,arrowPath:A,arrowPolygon:w}}var xr=(e,o,t)=>{let{sizePopupArrow:r,arrowPolygon:n,arrowPath:i,arrowShadowWidth:a,borderRadiusXS:s,calc:l}=e;return {pointerEvents:"none",width:r,height:r,overflow:"hidden","&::before":{position:"absolute",bottom:0,insetInlineStart:0,width:r,height:l(r).div(2).equal(),background:o,clipPath:{_multi_value_:true,value:[n,i]},content:'""'},"&::after":{content:'""',position:"absolute",width:a,height:a,bottom:0,insetInline:0,margin:"auto",borderRadius:{_skip_check_:true,value:`0 0 ${unit(s)} 0`},transform:"translateY(50%) rotate(-135deg)",boxShadow:t,zIndex:0,background:"transparent"}}};var at=8;function co(e){let{contentRadius:o,limitVerticalRadius:t}=e,r=o>12?o+2:12;return {arrowOffsetHorizontal:r,arrowOffsetVertical:t?at:r}}function lo(e,o){return e?o:{}}function st(e,o,t){let{componentCls:r,boxShadowPopoverArrow:n,arrowOffsetVertical:i,arrowOffsetHorizontal:a}=e,{arrowDistance:s=0,arrowPlacement:l={left:true,right:true,top:true,bottom:true}}={};return {[r]:{[`${r}-arrow`]:[{position:"absolute",zIndex:1,display:"block",...xr(e,o,n),"&:before":{background:o}}],...lo(!!l.top,{[[`&-placement-top > ${r}-arrow`,`&-placement-topLeft > ${r}-arrow`,`&-placement-topRight > ${r}-arrow`].join(",")]:{bottom:s,transform:"translateY(100%) rotate(180deg)"},[`&-placement-top > ${r}-arrow`]:{left:{_skip_check_:true,value:"50%"},transform:"translateX(-50%) translateY(100%) rotate(180deg)"},"&-placement-topLeft":{"--arrow-offset-horizontal":a,[`> ${r}-arrow`]:{left:{_skip_check_:true,value:a}}},"&-placement-topRight":{"--arrow-offset-horizontal":`calc(100% - ${unit(a)})`,[`> ${r}-arrow`]:{right:{_skip_check_:true,value:a}}}}),...lo(!!l.bottom,{[[`&-placement-bottom > ${r}-arrow`,`&-placement-bottomLeft > ${r}-arrow`,`&-placement-bottomRight > ${r}-arrow`].join(",")]:{top:s,transform:"translateY(-100%)"},[`&-placement-bottom > ${r}-arrow`]:{left:{_skip_check_:true,value:"50%"},transform:"translateX(-50%) translateY(-100%)"},"&-placement-bottomLeft":{"--arrow-offset-horizontal":a,[`> ${r}-arrow`]:{left:{_skip_check_:true,value:a}}},"&-placement-bottomRight":{"--arrow-offset-horizontal":`calc(100% - ${unit(a)})`,[`> ${r}-arrow`]:{right:{_skip_check_:true,value:a}}}}),...lo(!!l.left,{[[`&-placement-left > ${r}-arrow`,`&-placement-leftTop > ${r}-arrow`,`&-placement-leftBottom > ${r}-arrow`].join(",")]:{right:{_skip_check_:true,value:s},transform:"translateX(100%) rotate(90deg)"},[`&-placement-left > ${r}-arrow`]:{top:{_skip_check_:true,value:"50%"},transform:"translateY(-50%) translateX(100%) rotate(90deg)"},[`&-placement-leftTop > ${r}-arrow`]:{top:i},[`&-placement-leftBottom > ${r}-arrow`]:{bottom:i}}),...lo(!!l.right,{[[`&-placement-right > ${r}-arrow`,`&-placement-rightTop > ${r}-arrow`,`&-placement-rightBottom > ${r}-arrow`].join(",")]:{left:{_skip_check_:true,value:s},transform:"translateX(-100%) rotate(-90deg)"},[`&-placement-right > ${r}-arrow`]:{top:{_skip_check_:true,value:"50%"},transform:"translateY(-50%) translateX(-100%) rotate(-90deg)"},[`&-placement-rightTop > ${r}-arrow`]:{top:i},[`&-placement-rightBottom > ${r}-arrow`]:{bottom:i}})}}}function ra(e,o,t,r){if(r===false)return {adjustX:false,adjustY:false};let n=r&&typeof r=="object"?r:{},i={};switch(e){case "top":case "bottom":i.shiftX=o.arrowOffsetHorizontal*2+t,i.shiftY=true,i.adjustY=true;break;case "left":case "right":i.shiftY=o.arrowOffsetVertical*2+t,i.shiftX=true,i.adjustX=true;break}let a={...i,...n};return a.shiftX||(a.adjustX=true),a.shiftY||(a.adjustY=true),a}var br={left:{points:["cr","cl"]},right:{points:["cl","cr"]},top:{points:["bc","tc"]},bottom:{points:["tc","bc"]},topLeft:{points:["bl","tl"]},leftTop:{points:["tr","tl"]},topRight:{points:["br","tr"]},rightTop:{points:["tl","tr"]},bottomRight:{points:["tr","br"]},rightBottom:{points:["bl","br"]},bottomLeft:{points:["tl","bl"]},leftBottom:{points:["br","bl"]}},na={topLeft:{points:["bl","tc"]},leftTop:{points:["tr","cl"]},topRight:{points:["br","tc"]},rightTop:{points:["tl","cr"]},bottomRight:{points:["tr","bc"]},rightBottom:{points:["bl","cr"]},bottomLeft:{points:["tl","bc"]},leftBottom:{points:["br","cl"]}},ia=new Set(["topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]);function lt(e){let{arrowWidth:o,autoAdjustOverflow:t,arrowPointAtCenter:r,offset:n,borderRadius:i}=e,s=o/2,l={};return Object.keys(br).forEach(c=>{let m={...r&&na[c]||br[c],offset:[0,0],dynamicInset:true};switch(l[c]=m,ia.has(c)&&(m.autoArrow=false),c){case "top":case "topLeft":case "topRight":m.offset[1]=-s-n;break;case "bottom":case "bottomLeft":case "bottomRight":m.offset[1]=s+n;break;case "left":case "leftTop":case "leftBottom":m.offset[0]=-s-n;break;case "right":case "rightTop":case "rightBottom":m.offset[0]=s+n;break}let d=co({contentRadius:i,limitVerticalRadius:true});if(r)switch(c){case "topLeft":case "bottomLeft":m.offset[0]=-d.arrowOffsetHorizontal-s;break;case "topRight":case "bottomRight":m.offset[0]=d.arrowOffsetHorizontal+s;break;case "leftTop":case "rightTop":m.offset[1]=-d.arrowOffsetHorizontal*2+s;break;case "leftBottom":case "rightBottom":m.offset[1]=d.arrowOffsetHorizontal*2-s;break}m.overflow=ra(c,d,o,t),(m.htmlRegion="visibleFirst");}),l}function Tr(e){return e&&h__default.isValidElement(e)&&e.type===h__default.Fragment}var aa=(e,o,t)=>h__default.isValidElement(e)?h__default.cloneElement(e,typeof t=="function"?t(e.props||{}):t):o;function Pr(e,o){return aa(e,e,o)}var sa=e=>({animationDuration:e,animationFillMode:"both"}),la=e=>({animationDuration:e,animationFillMode:"both"}),_e=(e,o,t,r,n=false)=>{let i=n?"&":"";return {[`
41
+ ${i}${e}-enter,
42
+ ${i}${e}-appear
43
+ `]:{...sa(r),animationPlayState:"paused"},[`${i}${e}-leave`]:{...la(r),animationPlayState:"paused"},[`
44
+ ${i}${e}-enter${e}-enter-active,
45
+ ${i}${e}-appear${e}-appear-active
46
+ `]:{animationName:o,animationPlayState:"running"},[`${i}${e}-leave${e}-leave-active`]:{animationName:t,animationPlayState:"running",pointerEvents:"none"}}};new Keyframes("antFadeIn",{"0%":{opacity:0},"100%":{opacity:1}});new Keyframes("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}});new Keyframes("antMoveDownIn",{"0%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}});new Keyframes("antMoveDownOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0}});new Keyframes("antMoveLeftIn",{"0%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}});new Keyframes("antMoveLeftOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0}});new Keyframes("antMoveRightIn",{"0%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}});new Keyframes("antMoveRightOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0}});new Keyframes("antMoveUpIn",{"0%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}});new Keyframes("antMoveUpOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0}});new Keyframes("antSlideUpIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1}});new Keyframes("antSlideUpOut",{"0%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0}});new Keyframes("antSlideDownIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1}});new Keyframes("antSlideDownOut",{"0%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0}});new Keyframes("antSlideLeftIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1}});new Keyframes("antSlideLeftOut",{"0%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0}});new Keyframes("antSlideRightIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1}});new Keyframes("antSlideRightOut",{"0%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0}});var $r=new Keyframes("antZoomIn",{"0%":{transform:"scale(0.2)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),wr=new Keyframes("antZoomOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.2)",opacity:0}}),ct=new Keyframes("antZoomBigIn",{"0%":{transform:"scale(0.8)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),pt=new Keyframes("antZoomBigOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.8)",opacity:0}}),Rr=new Keyframes("antZoomUpIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 0%"}}),Ir=new Keyframes("antZoomUpOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 0%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0}}),Mr=new Keyframes("antZoomLeftIn",{"0%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"0% 50%"}}),kr=new Keyframes("antZoomLeftOut",{"0%":{transform:"scale(1)",transformOrigin:"0% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0}}),Or=new Keyframes("antZoomRightIn",{"0%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"100% 50%"}}),zr=new Keyframes("antZoomRightOut",{"0%":{transform:"scale(1)",transformOrigin:"100% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0}}),Ar=new Keyframes("antZoomDownIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 100%"}}),Lr=new Keyframes("antZoomDownOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 100%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0}}),Ra={zoom:{inKeyframes:$r,outKeyframes:wr},"zoom-big":{inKeyframes:ct,outKeyframes:pt},"zoom-big-fast":{inKeyframes:ct,outKeyframes:pt},"zoom-left":{inKeyframes:Mr,outKeyframes:kr},"zoom-right":{inKeyframes:Or,outKeyframes:zr},"zoom-up":{inKeyframes:Rr,outKeyframes:Ir},"zoom-down":{inKeyframes:Ar,outKeyframes:Lr}},mt=(e,o)=>{let{antCls:t}=e,r=`${t}-${o}`,{inKeyframes:n,outKeyframes:i}=Ra[o];return [_e(r,n,i,e.motionDurationFast),{[`
47
+ ${r}-enter,
48
+ ${r}-appear
49
+ `]:{transform:"scale(0)",opacity:0,animationTimingFunction:e.motionEaseOutCirc,"&-prepare":{transform:"none"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]};var Ia=e=>{let{calc:o,componentCls:t,tooltipMaxWidth:r,tooltipColor:n,tooltipBg:i,tooltipBorderRadius:a,zIndexPopup:s,controlHeight:l,boxShadowSecondary:c,paddingSM:p,paddingXS:m,arrowOffsetHorizontal:d,sizePopupArrow:f}=e,g=o(a).add(f).add(d).equal(),x=o(a).mul(2).add(f).equal();return [{[t]:{...Pe(e),position:"absolute",zIndex:s,display:"block",width:"max-content",maxWidth:r,visibility:"visible","--valid-offset-x":"var(--arrow-offset-horizontal, var(--arrow-x))",transformOrigin:["var(--valid-offset-x, 50%)","var(--arrow-y, 50%)"].join(" "),"&-hidden":{display:"none"},"--antd-arrow-background-color":i,[`${t}-inner`]:{minWidth:x,minHeight:l,padding:`${unit(e.calc(p).div(2).equal())} ${unit(m)}`,color:n,textAlign:"start",textDecoration:"none",wordWrap:"break-word",backgroundColor:i,borderRadius:a,boxShadow:c,boxSizing:"border-box"},[["&-placement-topLeft","&-placement-topRight","&-placement-bottomLeft","&-placement-bottomRight"].join(",")]:{minWidth:g},[["&-placement-left","&-placement-leftTop","&-placement-leftBottom","&-placement-right","&-placement-rightTop","&-placement-rightBottom"].join(",")]:{[`${t}-inner`]:{borderRadius:e.min(a,at)}},[`${t}-content`]:{position:"relative"},...no(e,(y,{darkColor:u})=>({[`&${t}-${y}`]:{[`${t}-inner`]:{backgroundColor:u},[`${t}-arrow`]:{"--antd-arrow-background-color":u}}})),"&-rtl":{direction:"rtl"}}},st(e,"var(--antd-arrow-background-color)"),{[`${t}-pure`]:{position:"relative",maxWidth:"none",margin:e.sizePopupArrow}}]},Ma=e=>({zIndexPopup:e.zIndexPopupBase+70,...co({contentRadius:e.borderRadius,limitVerticalRadius:true}),...Sr(mergeToken(e,{borderRadiusOuter:Math.min(e.borderRadiusOuter,4)}))}),mo=(e,o=true)=>J("Tooltip",r=>{let{borderRadius:n,colorTextLightSolid:i,colorBgSpotlight:a}=r,s=mergeToken(r,{tooltipMaxWidth:250,tooltipColor:i,tooltipBorderRadius:n,tooltipBg:a});return [Ia(s),mt(r,"zoom-big-fast")]},Ma,{resetStyle:false,injectStyle:o})(e);var ka=ne.map(e=>`${e}-inverse`);function Er(e,o=true){return o?[...ka,...ne].includes(e):ne.includes(e)}function fo(e,o){let t=Er(o),r=Fr({[`${e}-${o}`]:o&&t}),n={},i={};return o&&!t&&(n.background=o,i["--antd-arrow-background-color"]=o),{className:r,overlayStyle:n,arrowStyle:i}}var La=e=>{let{prefixCls:o,className:t,placement:r="top",title:n,color:i,overlayInnerStyle:a}=e,{getPrefixCls:s}=h.useContext(M),l=s("tooltip",o),[c,p,m]=mo(l),d=fo(l,i),f=d.arrowStyle,g={...a,...d.overlayStyle},x=Fr(p,m,l,`${l}-pure`,`${l}-placement-${r}`,t,d.className);return c(h.createElement("div",{className:x,style:f},h.createElement("div",{className:`${l}-arrow`}),h.createElement(Popup,{...e,className:p,prefixCls:l,overlayInnerStyle:g},n)))},Nr=La;var Na=h.forwardRef((e,o)=>{let{prefixCls:t,openClassName:r,getTooltipContainer:n,overlayClassName:i,color:a,overlayInnerStyle:s,children:l,afterOpenChange:c,afterVisibleChange:p,destroyTooltipOnHide:m,arrow:d=true,title:f,overlay:g,builtinPlacements:x,arrowPointAtCenter:y=false,autoAdjustOverflow:u=true}=e,C=!!d,[,w]=D(),{getPopupContainer:A,getPrefixCls:k,direction:P}=h.useContext(M),L=$("Tooltip"),O=h.useRef(null),E=()=>{O.current?.forceAlign();};h.useImperativeHandle(o,()=>({forceAlign:E,forcePopupAlign:()=>{L.deprecated(false,"forcePopupAlign","forceAlign"),E();},nativeElement:O.current?.nativeElement})),process.env.NODE_ENV!=="production"&&([["visible","open"],["defaultVisible","defaultOpen"],["onVisibleChange","onOpenChange"],["afterVisibleChange","afterOpenChange"],["arrowPointAtCenter","arrow={{ pointAtCenter: true }}"]].forEach(([j,Oo])=>{L.deprecated(!(j in e),j,Oo);}),L(!m||typeof m=="boolean","usage","`destroyTooltipOnHide` no need config `keepParent` anymore. Please use `boolean` value directly."),L(!d||typeof d=="boolean"||!("arrowPointAtCenter"in d),"deprecated","`arrowPointAtCenter` in `arrow` is deprecated. Please use `pointAtCenter` instead."));let[S,te]=Ea(false,{value:e.open??e.visible,defaultValue:e.defaultOpen??e.defaultVisible}),q=!f&&!g&&f!==0,me=j=>{te(q?false:j),q||(e.onOpenChange?.(j),e.onVisibleChange?.(j));},K=h.useMemo(()=>{let j=y;return typeof d=="object"&&(j=d.pointAtCenter??d.arrowPointAtCenter??y),x||lt({arrowPointAtCenter:j,autoAdjustOverflow:u,arrowWidth:C?w.sizePopupArrow:0,borderRadius:w.borderRadius,offset:w.marginXXS})},[y,d,x,w]),R=h.useMemo(()=>f===0?f:g||f||"",[g,f]),H=h.createElement(fr,{space:true},typeof R=="function"?R():R),{getPopupContainer:U,placement:ze="top",mouseEnterDelay:z=.1,mouseLeaveDelay:X=.1,overlayStyle:Ae,rootClassName:Le,...de}=e,re=k("tooltip",t),xo=k(),ho=e["data-popover-inject"],De=S;!("open"in e)&&!("visible"in e)&&q&&(De=false);let Ee=h.isValidElement(l)&&!Tr(l)?l:h.createElement("span",null,l),fe=Ee.props,bo=!fe.className||typeof fe.className=="string"?Fr(fe.className,r||`${re}-open`):fe.className,[To,Po,vo]=mo(re,!ho),Ne=fo(re,a),$o=Ne.arrowStyle,wo={...s,...Ne.overlayStyle},Ro=Fr(i,{[`${re}-rtl`]:P==="rtl"},Ne.className,Le,Po,vo),[Io,Mo]=Cr("Tooltip",de.zIndex),ko=h.createElement(Da,{...de,zIndex:Io,showArrow:C,placement:ze,mouseEnterDelay:z,mouseLeaveDelay:X,prefixCls:re,overlayClassName:Ro,overlayStyle:{...$o,...Ae},getTooltipContainer:U||n||A,ref:O,builtinPlacements:K,overlay:H,visible:De,onVisibleChange:me,afterVisibleChange:c??p,overlayInnerStyle:wo,arrowContent:h.createElement("span",{className:`${re}-arrow-content`}),motion:{motionName:yr(xo,"zoom-big-fast",e.transitionName),motionDeadline:1e3},destroyTooltipOnHide:!!m},De?Pr(Ee,{className:bo}):Ee);return To(h.createElement(so.Provider,{value:Mo},ko))}),dt=Na;process.env.NODE_ENV!=="production"&&(dt.displayName="Tooltip");dt._InternalPanelDoNotUseOrYouWillBeFired=Nr;var go=dt;function _(e){return !e||e<0?0:e>100?100:e}function Re({success:e,successPercent:o}){let t=o;return e&&"progress"in e&&(t=e.progress),e&&"percent"in e&&(t=e.percent),t}var Hr=({percent:e,success:o,successPercent:t})=>{let r=_(Re({success:o,successPercent:t}));return [r,_(_(e)-r)]},Wr=({success:e={},strokeColor:o})=>{let{strokeColor:t}=e;return [t||presetPrimaryColors.green,o||null]},se=(e,o,t)=>{let r=-1,n=-1;if(o==="step"){let i=t.steps,a=t.strokeWidth;typeof e=="string"||typeof e>"u"?(r=e==="small"?2:14,n=a??8):typeof e=="number"?[r,n]=[e,e]:[r=14,n=8]=Array.isArray(e)?e:[e.width,e.height],r*=i;}else if(o==="line"){let i=t?.strokeWidth;typeof e=="string"||typeof e>"u"?n=i||(e==="small"?6:8):typeof e=="number"?[r,n]=[e,e]:[r=-1,n=8]=Array.isArray(e)?e:[e.width,e.height];}else (o==="circle"||o==="dashboard")&&(typeof e=="string"||typeof e>"u"?[r,n]=e==="small"?[60,60]:[120,120]:typeof e=="number"?[r,n]=[e,e]:Array.isArray(e)&&(r=e[0]??e[1]??120,n=e[0]??e[1]??120));return [r,n]};var Ba=3,ja=e=>Ba/e*100,Ga=e=>{let{prefixCls:o,trailColor:t=null,strokeLinecap:r="round",gapPosition:n,gapDegree:i,width:a=120,type:s,children:l,success:c,size:p=a,steps:m}=e,[d,f]=se(p,"circle"),{strokeWidth:g}=e;g===void 0&&(g=Math.max(ja(d),6));let x={width:d,height:f,fontSize:d*.15+6},y=h.useMemo(()=>{if(i||i===0)return i;if(s==="dashboard")return 75},[i,s]),u=Hr(e),C=n||s==="dashboard"&&"bottom"||void 0,w=Object.prototype.toString.call(e.strokeColor)==="[object Object]",A=Wr({success:c,strokeColor:e.strokeColor}),k=Fr(`${o}-inner`,{[`${o}-circle-gradient`]:w}),P=h.createElement(Circle,{steps:m,percent:m?u[1]:u,strokeWidth:g,trailWidth:g,strokeColor:m?A[1]:A,strokeLinecap:r,trailColor:t,prefixCls:o,gapDegree:y,gapPosition:C}),L=d<=20,O=h.createElement("div",{className:k,style:x},P,!L&&l);return L?h.createElement(go,{title:l},O):O},Br=Ga;var qe="--progress-line-stroke-color",ft="--progress-percent",jr=e=>{let o=e?"100%":"-100%";return new Keyframes(`antProgress${e?"RTL":"LTR"}Active`,{"0%":{transform:`translateX(${o}) scaleX(0)`,opacity:.1},"20%":{transform:`translateX(${o}) scaleX(0)`,opacity:.5},to:{transform:"translateX(0) scaleX(1)",opacity:0}})},_a=e=>{let{componentCls:o,iconCls:t}=e;return {[o]:{...Pe(e),display:"inline-block","&-rtl":{direction:"rtl"},"&-line":{position:"relative",width:"100%",fontSize:e.fontSize},[`${o}-outer`]:{display:"inline-flex",alignItems:"center",width:"100%"},[`${o}-inner`]:{position:"relative",display:"inline-block",width:"100%",flex:1,overflow:"hidden",verticalAlign:"middle",backgroundColor:e.remainingColor,borderRadius:e.lineBorderRadius},[`${o}-inner:not(${o}-circle-gradient)`]:{[`${o}-circle-path`]:{stroke:e.defaultColor}},[`${o}-success-bg, ${o}-bg`]:{position:"relative",background:e.defaultColor,borderRadius:e.lineBorderRadius,transition:`all ${e.motionDurationSlow} ${e.motionEaseInOutCirc}`},[`${o}-layout-bottom`]:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",[`${o}-text`]:{width:"max-content",marginInlineStart:0,marginTop:e.marginXXS}},[`${o}-bg`]:{overflow:"hidden","&::after":{content:'""',background:{_multi_value_:true,value:["inherit",`var(${qe})`]},height:"100%",width:`calc(1 / var(${ft}) * 100%)`,display:"block"},[`&${o}-bg-inner`]:{minWidth:"max-content","&::after":{content:"none"},[`${o}-text-inner`]:{color:e.colorWhite,[`&${o}-text-bright`]:{color:"rgba(0, 0, 0, 0.45)"}}}},[`${o}-success-bg`]:{position:"absolute",insetBlockStart:0,insetInlineStart:0,backgroundColor:e.colorSuccess},[`${o}-text`]:{display:"inline-block",marginInlineStart:e.marginXS,color:e.colorText,lineHeight:1,width:"2em",whiteSpace:"nowrap",textAlign:"start",verticalAlign:"middle",wordBreak:"normal",[t]:{fontSize:e.fontSize},[`&${o}-text-outer`]:{width:"max-content"},[`&${o}-text-outer${o}-text-start`]:{width:"max-content",marginInlineStart:0,marginInlineEnd:e.marginXS}},[`${o}-text-inner`]:{display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%",marginInlineStart:0,padding:`0 ${unit(e.paddingXXS)}`,[`&${o}-text-start`]:{justifyContent:"start"},[`&${o}-text-end`]:{justifyContent:"end"}},[`&${o}-status-active`]:{[`${o}-bg::before`]:{position:"absolute",inset:0,backgroundColor:e.colorBgContainer,borderRadius:e.lineBorderRadius,opacity:0,animationName:jr(),animationDuration:e.progressActiveMotionDuration,animationTimingFunction:e.motionEaseOutQuint,animationIterationCount:"infinite",content:'""'}},[`&${o}-rtl${o}-status-active`]:{[`${o}-bg::before`]:{animationName:jr(true)}},[`&${o}-status-exception`]:{[`${o}-bg`]:{backgroundColor:e.colorError},[`${o}-text`]:{color:e.colorError}},[`&${o}-status-exception ${o}-inner:not(${o}-circle-gradient)`]:{[`${o}-circle-path`]:{stroke:e.colorError}},[`&${o}-status-success`]:{[`${o}-bg`]:{backgroundColor:e.colorSuccess},[`${o}-text`]:{color:e.colorSuccess}},[`&${o}-status-success ${o}-inner:not(${o}-circle-gradient)`]:{[`${o}-circle-path`]:{stroke:e.colorSuccess}}}}},qa=e=>{let{componentCls:o,iconCls:t}=e;return {[o]:{[`${o}-circle-trail`]:{stroke:e.remainingColor},[`&${o}-circle ${o}-inner`]:{position:"relative",lineHeight:1,backgroundColor:"transparent"},[`&${o}-circle ${o}-text`]:{position:"absolute",insetBlockStart:"50%",insetInlineStart:0,width:"100%",margin:0,padding:0,color:e.circleTextColor,fontSize:e.circleTextFontSize,lineHeight:1,whiteSpace:"normal",textAlign:"center",transform:"translateY(-50%)",[t]:{fontSize:e.circleIconFontSize}},[`${o}-circle&-status-exception`]:{[`${o}-text`]:{color:e.colorError}},[`${o}-circle&-status-success`]:{[`${o}-text`]:{color:e.colorSuccess}}},[`${o}-inline-circle`]:{lineHeight:1,[`${o}-inner`]:{verticalAlign:"bottom"}}}},Ka=e=>{let{componentCls:o}=e;return {[o]:{[`${o}-steps`]:{display:"inline-block","&-outer":{display:"flex",flexDirection:"row",alignItems:"center"},"&-item":{flexShrink:0,minWidth:e.progressStepMinWidth,marginInlineEnd:e.progressStepMarginInlineEnd,backgroundColor:e.remainingColor,transition:`all ${e.motionDurationSlow}`,"&-active":{backgroundColor:e.defaultColor}}}}}},Ua=e=>{let{componentCls:o,iconCls:t}=e;return {[o]:{[`${o}-small&-line, ${o}-small&-line ${o}-text ${t}`]:{fontSize:e.fontSizeSM}}}},Za=e=>({circleTextColor:e.colorText,defaultColor:e.colorInfo,remainingColor:e.colorFillSecondary,lineBorderRadius:100,circleTextFontSize:"1em",circleIconFontSize:`${e.fontSize/e.fontSizeSM}em`}),Gr=J("Progress",e=>{let o=e.calc(e.marginXXS).div(2).equal(),t=mergeToken(e,{progressStepMarginInlineEnd:o,progressStepMinWidth:o,progressActiveMotionDuration:"2.4s"});return [_a(t),qa(t),Ka(t),Ua(t)]},Za);var Qa=e=>{let o=[];return Object.keys(e).forEach(t=>{let r=parseFloat(t.replace(/%/g,""));Number.isNaN(r)||o.push({key:r,value:e[t]});}),o=o.sort((t,r)=>t.key-r.key),o.map(({key:t,value:r})=>`${r} ${t}%`).join(", ")},Ja=(e,o)=>{let{from:t=presetPrimaryColors.blue,to:r=presetPrimaryColors.blue,direction:n=o==="rtl"?"to left":"to right",...i}=e;if(Object.keys(i).length!==0){let s=Qa(i),l=`linear-gradient(${n}, ${s})`;return {background:l,[qe]:l}}let a=`linear-gradient(${n}, ${t}, ${r})`;return {background:a,[qe]:a}},es=e=>{let{prefixCls:o,direction:t,percent:r,size:n,strokeWidth:i,strokeColor:a,strokeLinecap:s="round",children:l,trailColor:c=null,percentPosition:p,success:m}=e,{align:d,type:f}=p,g=a&&typeof a!="string"?Ja(a,t):{[qe]:a,background:a},x=s==="square"||s==="butt"?0:void 0,y=n??[-1,i||(n==="small"?6:8)],[u,C]=se(y,"line",{strokeWidth:i});process.env.NODE_ENV!=="production"&&$("Progress").deprecated(!("strokeWidth"in e),"strokeWidth","size");let w={backgroundColor:c||void 0,borderRadius:x},A={width:`${_(r)}%`,height:C,borderRadius:x,...g,[ft]:_(r)/100},k=Re(e),P={width:`${_(k)}%`,height:C,borderRadius:x,backgroundColor:m?.strokeColor},L={width:u<0?"100%":u},O=h.createElement("div",{className:`${o}-inner`,style:w},h.createElement("div",{className:Fr(`${o}-bg`,`${o}-bg-${f}`),style:A},f==="inner"&&l),k!==void 0&&h.createElement("div",{className:`${o}-success-bg`,style:P})),E=f==="outer"&&d==="start",S=f==="outer"&&d==="end";return f==="outer"&&d==="center"?h.createElement("div",{className:`${o}-layout-bottom`},O,l):h.createElement("div",{className:`${o}-outer`,style:L},E&&l,O,S&&l)},Vr=es;var ts=e=>{let{size:o,steps:t,percent:r=0,strokeWidth:n=8,strokeColor:i,trailColor:a=null,prefixCls:s,children:l}=e,c=Math.round(t*(r/100)),m=o??[o==="small"?2:14,n],[d,f]=se(m,"step",{steps:t,strokeWidth:n}),g=d/t,x=new Array(t);for(let y=0;y<t;y++){let u=Array.isArray(i)?i[y]:i;x[y]=h.createElement("div",{key:y,className:Fr(`${s}-steps-item`,{[`${s}-steps-item-active`]:y<=c-1}),style:{backgroundColor:y<=c-1?u:a,width:g,height:f}});}return h.createElement("div",{className:`${s}-steps-outer`},x,l)},_r=ts;var cs=["normal","exception","active","success"],Kr=h.forwardRef((e,o)=>{let{prefixCls:t,className:r,rootClassName:n,steps:i,strokeColor:a,percent:s=0,size:l="default",showInfo:c=true,type:p="line",status:m,format:d,style:f,percentPosition:g={},...x}=e,{align:y="end",type:u="outer"}=g,C=Array.isArray(a)?a[0]:a,w=typeof a=="string"||Array.isArray(a)?a:void 0,A=h.useMemo(()=>{if(C){let z=typeof C=="string"?C:Object.values(C)[0];return new TinyColor(z).isLight()}return false},[a]),k=h.useMemo(()=>{let z=Re(e);return parseInt(z!==void 0?(z??0)?.toString():(s??0)?.toString(),10)},[s,e.success,e.successPercent]),P=h.useMemo(()=>!cs.includes(m)&&k>=100?"success":m||"normal",[m,k]),{getPrefixCls:L,direction:O,progress:E}=h.useContext(M),S=L("progress",t),[te,q,me]=Gr(S),K=p==="line",R=K&&!i,H=h.useMemo(()=>{if(!c)return null;let z=Re(e),X,Ae=d||(de=>`${de}%`),Le=K&&A&&u==="inner";return u==="inner"||d||P!=="exception"&&P!=="success"?X=Ae(_(s),_(z)):P==="exception"?X=K?h.createElement(is,null):h.createElement(as,null):P==="success"&&(X=K?h.createElement(rs,null):h.createElement(ns,null)),h.createElement("span",{className:Fr(`${S}-text`,{[`${S}-text-bright`]:Le,[`${S}-text-${y}`]:R,[`${S}-text-${u}`]:R}),title:typeof X=="string"?X:void 0},X)},[c,s,k,P,p,S,d]);if(process.env.NODE_ENV!=="production"){let z=$("Progress");z.deprecated(!("successPercent"in e),"successPercent","success.percent"),z.deprecated(!("width"in e),"width","size"),(p==="circle"||p==="dashboard")&&(Array.isArray(l)?z(false,"usage",'Type "circle" and "dashboard" do not accept array as `size`, please use number or preset size instead.'):typeof l=="object"&&z(false,"usage",'Type "circle" and "dashboard" do not accept object as `size`, please use number or preset size instead.')),e.success&&"progress"in e.success&&z.deprecated(false,"success.progress","success.percent");}let U;p==="line"?U=i?h.createElement(_r,{...e,strokeColor:w,prefixCls:S,steps:typeof i=="object"?i.count:i},H):h.createElement(Vr,{...e,strokeColor:C,prefixCls:S,direction:O,percentPosition:{align:y,type:u}},H):(p==="circle"||p==="dashboard")&&(U=h.createElement(Br,{...e,strokeColor:C,prefixCls:S,progressStatus:P},H));let ze=Fr(S,`${S}-status-${P}`,{[`${S}-${p==="dashboard"&&"circle"||p}`]:p!=="line",[`${S}-inline-circle`]:p==="circle"&&se(l,"circle")[0]<=20,[`${S}-line`]:R,[`${S}-line-align-${y}`]:R,[`${S}-line-position-${u}`]:R,[`${S}-steps`]:i,[`${S}-show-info`]:c,[`${S}-${l}`]:typeof l=="string",[`${S}-rtl`]:O==="rtl"},E?.className,r,n,q,me);return te(h.createElement("div",{ref:o,style:{...E?.style,...f},className:ze,role:"progressbar","aria-valuenow":k,"aria-valuemin":0,"aria-valuemax":100,...ls(x,["trailColor","strokeWidth","width","gapDegree","gapPosition","strokeLinecap","success","successPercent"])},U))});process.env.NODE_ENV!=="production"&&(Kr.displayName="Progress");var Ur=Kr;var Zr=Ur;var ms=e=>{let{componentCls:o,customIconTop:t,customIconSize:r,customIconFontSize:n}=e;return {[`${o}-item-custom`]:{[`> ${o}-item-container > ${o}-item-icon`]:{height:"auto",background:"none",border:0,[`> ${o}-icon`]:{top:t,width:r,height:r,fontSize:n,lineHeight:unit(r)}}},[`&:not(${o}-vertical)`]:{[`${o}-item-custom`]:{[`${o}-item-icon`]:{width:"auto",background:"none"}}}}},Yr=ms;var ds=e=>{let{componentCls:o}=e,t=`${o}-item`;return {[`${o}-horizontal`]:{[`${t}-tail`]:{transform:"translateY(-50%)"}}}},Qr=ds;var fs=e=>{let{componentCls:o,inlineDotSize:t,inlineTitleColor:r,inlineTailColor:n}=e,i=e.calc(e.paddingXS).add(e.lineWidth).equal(),a={[`${o}-item-container ${o}-item-content ${o}-item-title`]:{color:r}};return {[`&${o}-inline`]:{width:"auto",display:"inline-flex",[`${o}-item`]:{flex:"none","&-container":{padding:`${unit(i)} ${unit(e.paddingXXS)} 0`,margin:`0 ${unit(e.calc(e.marginXXS).div(2).equal())}`,borderRadius:e.borderRadiusSM,cursor:"pointer",transition:`background-color ${e.motionDurationMid}`,"&:hover":{background:e.controlItemBgHover},"&[role='button']:hover":{opacity:1}},"&-icon":{width:t,height:t,marginInlineStart:`calc(50% - ${unit(e.calc(t).div(2).equal())})`,[`> ${o}-icon`]:{top:0},[`${o}-icon-dot`]:{borderRadius:e.calc(e.fontSizeSM).div(4).equal(),"&::after":{display:"none"}}},"&-content":{width:"auto",marginTop:e.calc(e.marginXS).sub(e.lineWidth).equal()},"&-title":{color:r,fontSize:e.fontSizeSM,lineHeight:e.lineHeightSM,fontWeight:"normal",marginBottom:e.calc(e.marginXXS).div(2).equal()},"&-description":{display:"none"},"&-tail":{marginInlineStart:0,top:e.calc(t).div(2).add(i).equal(),transform:"translateY(-50%)","&:after":{width:"100%",height:e.lineWidth,borderRadius:0,marginInlineStart:0,background:n}},[`&:first-child ${o}-item-tail`]:{width:"50%",marginInlineStart:"50%"},[`&:last-child ${o}-item-tail`]:{display:"block",width:"50%"},"&-wait":{[`${o}-item-icon ${o}-icon ${o}-icon-dot`]:{backgroundColor:e.colorBorderBg,border:`${unit(e.lineWidth)} ${e.lineType} ${n}`},...a},"&-finish":{[`${o}-item-tail::after`]:{backgroundColor:n},[`${o}-item-icon ${o}-icon ${o}-icon-dot`]:{backgroundColor:n,border:`${unit(e.lineWidth)} ${e.lineType} ${n}`},...a},"&-error":a,"&-active, &-process":{[`${o}-item-icon`]:{width:t,height:t,marginInlineStart:`calc(50% - ${unit(e.calc(t).div(2).equal())})`,top:0},...a},[`&:not(${o}-item-active) > ${o}-item-container[role='button']:hover`]:{[`${o}-item-title`]:{color:r}}}}}},Jr=fs;var us=e=>{let{componentCls:o,iconSize:t,lineHeight:r,iconSizeSM:n}=e;return {[`&${o}-label-vertical`]:{[`${o}-item`]:{overflow:"visible","&-tail":{marginInlineStart:e.calc(t).div(2).add(e.controlHeightLG).equal(),padding:`0 ${unit(e.paddingLG)}`},"&-content":{display:"block",width:e.calc(t).div(2).add(e.controlHeightLG).mul(2).equal(),marginTop:e.marginSM,textAlign:"center"},"&-icon":{display:"inline-block",marginInlineStart:e.controlHeightLG},"&-title":{paddingInlineEnd:0,paddingInlineStart:0,"&::after":{display:"none"}},"&-subtitle":{display:"block",marginBottom:e.marginXXS,marginInlineStart:0,lineHeight:r}},[`&${o}-small:not(${o}-dot)`]:{[`${o}-item`]:{"&-icon":{marginInlineStart:e.calc(t).sub(n).div(2).add(e.controlHeightLG).equal()}}}}}},en=us;var Cs=e=>{let{componentCls:o,navContentMaxWidth:t,navArrowColor:r,stepsNavActiveColor:n,motionDurationSlow:i}=e;return {[`&${o}-navigation`]:{paddingTop:e.paddingSM,[`&${o}-small`]:{[`${o}-item`]:{"&-container":{marginInlineStart:e.calc(e.marginSM).mul(-1).equal()}}},[`${o}-item`]:{overflow:"visible",textAlign:"center","&-container":{display:"inline-block",height:"100%",marginInlineStart:e.calc(e.margin).mul(-1).equal(),paddingBottom:e.paddingSM,textAlign:"start",transition:`opacity ${i}`,[`${o}-item-content`]:{maxWidth:t},[`${o}-item-title`]:{maxWidth:"100%",paddingInlineEnd:0,...Kt,"&::after":{display:"none"}}},[`&:not(${o}-item-active)`]:{[`${o}-item-container[role='button']`]:{cursor:"pointer","&:hover":{opacity:.85}}},"&:last-child":{flex:1,"&::after":{display:"none"}},"&::after":{position:"absolute",top:`calc(50% - ${unit(e.calc(e.paddingSM).div(2).equal())})`,insetInlineStart:"100%",display:"inline-block",width:e.fontSizeIcon,height:e.fontSizeIcon,borderTop:`${unit(e.lineWidth)} ${e.lineType} ${r}`,borderBottom:"none",borderInlineStart:"none",borderInlineEnd:`${unit(e.lineWidth)} ${e.lineType} ${r}`,transform:"translateY(-50%) translateX(-50%) rotate(45deg)",content:'""'},"&::before":{position:"absolute",bottom:0,insetInlineStart:"50%",display:"inline-block",width:0,height:e.lineWidthBold,backgroundColor:n,transition:`width ${i}, inset-inline-start ${i}`,transitionTimingFunction:"ease-out",content:'""'}},[`${o}-item${o}-item-active::before`]:{insetInlineStart:0,width:"100%"}},[`&${o}-navigation${o}-vertical`]:{[`> ${o}-item`]:{marginInlineEnd:0,"&::before":{display:"none"},[`&${o}-item-active::before`]:{top:0,insetInlineEnd:0,insetInlineStart:"unset",display:"block",width:e.calc(e.lineWidth).mul(3).equal(),height:`calc(100% - ${unit(e.marginLG)})`},"&::after":{position:"relative",insetInlineStart:"50%",display:"block",width:e.calc(e.controlHeight).mul(.25).equal(),height:e.calc(e.controlHeight).mul(.25).equal(),marginBottom:e.marginXS,textAlign:"center",transform:"translateY(-50%) translateX(-50%) rotate(135deg)"},"&:last-child":{"&::after":{display:"none"}},[`> ${o}-item-container > ${o}-item-tail`]:{visibility:"hidden"}}},[`&${o}-navigation${o}-horizontal`]:{[`> ${o}-item > ${o}-item-container > ${o}-item-tail`]:{visibility:"hidden"}}}},on=Cs;var ys=e=>{let{antCls:o,componentCls:t,iconSize:r,iconSizeSM:n,processIconColor:i,marginXXS:a,lineWidthBold:s,lineWidth:l,paddingXXS:c}=e,p=e.calc(r).add(e.calc(s).mul(4).equal()).equal(),m=e.calc(n).add(e.calc(e.lineWidth).mul(4).equal()).equal();return {[`&${t}-with-progress`]:{[`${t}-item`]:{paddingTop:c,[`&-process ${t}-item-container ${t}-item-icon ${t}-icon`]:{color:i}},[`&${t}-vertical > ${t}-item `]:{paddingInlineStart:c,[`> ${t}-item-container > ${t}-item-tail`]:{top:a,insetInlineStart:e.calc(r).div(2).sub(l).add(c).equal()}},[`&, &${t}-small`]:{[`&${t}-horizontal ${t}-item:first-child`]:{paddingBottom:c,paddingInlineStart:c}},[`&${t}-small${t}-vertical > ${t}-item > ${t}-item-container > ${t}-item-tail`]:{insetInlineStart:e.calc(n).div(2).sub(l).add(c).equal()},[`&${t}-label-vertical ${t}-item ${t}-item-tail`]:{top:e.calc(r).div(2).add(c).equal()},[`${t}-item-icon`]:{position:"relative",[`${o}-progress`]:{position:"absolute",insetInlineStart:"50%",top:"50%",transform:"translate(-50%, -50%)","&-inner":{width:`${unit(p)} !important`,height:`${unit(p)} !important`}}},[`&${t}-small`]:{[`&${t}-label-vertical ${t}-item ${t}-item-tail`]:{top:e.calc(n).div(2).add(c).equal()},[`${t}-item-icon ${o}-progress-inner`]:{width:`${unit(m)} !important`,height:`${unit(m)} !important`}}}}},tn=ys;var Ss=e=>{let{componentCls:o,descriptionMaxWidth:t,lineHeight:r,dotCurrentSize:n,dotSize:i,motionDurationSlow:a}=e;return {[`&${o}-dot, &${o}-dot${o}-small`]:{[`${o}-item`]:{"&-title":{lineHeight:r},"&-tail":{top:e.calc(e.dotSize).sub(e.calc(e.lineWidth).mul(3).equal()).div(2).equal(),width:"100%",marginTop:0,marginBottom:0,marginInline:`${unit(e.calc(t).div(2).equal())} 0`,padding:0,"&::after":{width:`calc(100% - ${unit(e.calc(e.marginSM).mul(2).equal())})`,height:e.calc(e.lineWidth).mul(3).equal(),marginInlineStart:e.marginSM}},"&-icon":{width:i,height:i,marginInlineStart:e.calc(e.descriptionMaxWidth).sub(i).div(2).equal(),paddingInlineEnd:0,lineHeight:unit(i),background:"transparent",border:0,[`${o}-icon-dot`]:{position:"relative",float:"left",width:"100%",height:"100%",borderRadius:100,transition:`all ${a}`,"&::after":{position:"absolute",top:e.calc(e.marginSM).mul(-1).equal(),insetInlineStart:e.calc(i).sub(e.calc(e.controlHeightLG).mul(1.5).equal()).div(2).equal(),width:e.calc(e.controlHeightLG).mul(1.5).equal(),height:e.controlHeight,background:"transparent",content:'""'}}},"&-content":{width:t},[`&-process ${o}-item-icon`]:{position:"relative",top:e.calc(i).sub(n).div(2).equal(),width:n,height:n,lineHeight:unit(n),background:"none",marginInlineStart:e.calc(e.descriptionMaxWidth).sub(n).div(2).equal()},[`&-process ${o}-icon`]:{[`&:first-child ${o}-icon-dot`]:{insetInlineStart:0}}}},[`&${o}-vertical${o}-dot`]:{[`${o}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(i).div(2).equal(),marginInlineStart:0,background:"none"},[`${o}-item-process ${o}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(n).div(2).equal(),top:0,insetInlineStart:e.calc(i).sub(n).div(2).equal(),marginInlineStart:0},[`${o}-item > ${o}-item-container > ${o}-item-tail`]:{top:e.calc(e.controlHeight).sub(i).div(2).equal(),insetInlineStart:0,margin:0,padding:`${unit(e.calc(i).add(e.paddingXS).equal())} 0 ${unit(e.paddingXS)}`,"&::after":{marginInlineStart:e.calc(i).sub(e.lineWidth).div(2).equal()}},[`&${o}-small`]:{[`${o}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(i).div(2).equal()},[`${o}-item-process ${o}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(n).div(2).equal()},[`${o}-item > ${o}-item-container > ${o}-item-tail`]:{top:e.calc(e.controlHeightSM).sub(i).div(2).equal()}},[`${o}-item:first-child ${o}-icon-dot`]:{insetInlineStart:0},[`${o}-item-content`]:{width:"inherit"}}}},rn=Ss;var xs=e=>{let{componentCls:o}=e;return {[`&${o}-rtl`]:{direction:"rtl",[`${o}-item`]:{"&-subtitle":{float:"left"}},[`&${o}-navigation`]:{[`${o}-item::after`]:{transform:"rotate(-45deg)"}},[`&${o}-vertical`]:{[`> ${o}-item`]:{"&::after":{transform:"rotate(225deg)"},[`${o}-item-icon`]:{float:"right"}}},[`&${o}-dot`]:{[`${o}-item-icon ${o}-icon-dot, &${o}-small ${o}-item-icon ${o}-icon-dot`]:{float:"right"}}}}},nn=xs;var hs=e=>{let{componentCls:o,iconSizeSM:t,fontSizeSM:r,fontSize:n,colorTextDescription:i}=e;return {[`&${o}-small`]:{[`&${o}-horizontal:not(${o}-label-vertical) ${o}-item`]:{paddingInlineStart:e.paddingSM,"&:first-child":{paddingInlineStart:0}},[`${o}-item-icon`]:{width:t,height:t,marginTop:0,marginBottom:0,marginInline:`0 ${unit(e.marginXS)}`,fontSize:r,lineHeight:unit(t),textAlign:"center",borderRadius:t},[`${o}-item-title`]:{paddingInlineEnd:e.paddingSM,fontSize:n,lineHeight:unit(t),"&::after":{top:e.calc(t).div(2).equal()}},[`${o}-item-description`]:{color:i,fontSize:n},[`${o}-item-tail`]:{top:e.calc(t).div(2).sub(e.paddingXXS).equal()},[`${o}-item-custom ${o}-item-icon`]:{width:"inherit",height:"inherit",lineHeight:"inherit",background:"none",border:0,borderRadius:0,[`> ${o}-icon`]:{fontSize:t,lineHeight:unit(t),transform:"none"}}}}},an=hs;var bs=e=>{let{componentCls:o,iconSizeSM:t,iconSize:r}=e;return {[`&${o}-vertical`]:{display:"flex",flexDirection:"column",[`> ${o}-item`]:{display:"block",flex:"1 0 auto",paddingInlineStart:0,overflow:"visible",[`${o}-item-icon`]:{float:"left",marginInlineEnd:e.margin},[`${o}-item-content`]:{display:"block",minHeight:e.calc(e.controlHeight).mul(1.5).equal(),overflow:"hidden"},[`${o}-item-title`]:{lineHeight:unit(r)},[`${o}-item-description`]:{paddingBottom:e.paddingSM}},[`> ${o}-item > ${o}-item-container > ${o}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(r).div(2).sub(e.lineWidth).equal(),width:e.lineWidth,height:"100%",padding:`${unit(e.calc(e.marginXXS).mul(1.5).add(r).equal())} 0 ${unit(e.calc(e.marginXXS).mul(1.5).equal())}`,"&::after":{width:e.lineWidth,height:"100%"}},[`> ${o}-item:not(:last-child) > ${o}-item-container > ${o}-item-tail`]:{display:"block"},[` > ${o}-item > ${o}-item-container > ${o}-item-content > ${o}-item-title`]:{"&::after":{display:"none"}},[`&${o}-small ${o}-item-container`]:{[`${o}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(t).div(2).sub(e.lineWidth).equal(),padding:`${unit(e.calc(e.marginXXS).mul(1.5).add(t).equal())} 0 ${unit(e.calc(e.marginXXS).mul(1.5).equal())}`},[`${o}-item-title`]:{lineHeight:unit(t)}}}}},sn=bs;var Ts="wait",Ps="process",vs="finish",$s="error",So=(e,o)=>{let t=`${o.componentCls}-item`,r=`${e}IconColor`,n=`${e}TitleColor`,i=`${e}DescriptionColor`,a=`${e}TailColor`,s=`${e}IconBgColor`,l=`${e}IconBorderColor`,c=`${e}DotColor`;return {[`${t}-${e} ${t}-icon`]:{backgroundColor:o[s],borderColor:o[l],[`> ${o.componentCls}-icon`]:{color:o[r],[`${o.componentCls}-icon-dot`]:{background:o[c]}}},[`${t}-${e}${t}-custom ${t}-icon`]:{[`> ${o.componentCls}-icon`]:{color:o[c]}},[`${t}-${e} > ${t}-container > ${t}-content > ${t}-title`]:{color:o[n],"&::after":{backgroundColor:o[a]}},[`${t}-${e} > ${t}-container > ${t}-content > ${t}-description`]:{color:o[i]},[`${t}-${e} > ${t}-container > ${t}-tail::after`]:{backgroundColor:o[a]}}},ws=e=>{let{componentCls:o,motionDurationSlow:t}=e,r=`${o}-item`,n=`${r}-icon`;return {[r]:{position:"relative",display:"inline-block",flex:1,overflow:"hidden",verticalAlign:"top","&:last-child":{flex:"none",[`> ${r}-container > ${r}-tail, > ${r}-container > ${r}-content > ${r}-title::after`]:{display:"none"}}},[`${r}-container`]:{outline:"none","&:focus-visible":{[n]:{...Yt(e)}}},[`${n}, ${r}-content`]:{display:"inline-block",verticalAlign:"top"},[n]:{width:e.iconSize,height:e.iconSize,marginTop:0,marginBottom:0,marginInlineStart:0,marginInlineEnd:e.marginXS,fontSize:e.iconFontSize,fontFamily:e.fontFamily,lineHeight:unit(e.iconSize),textAlign:"center",borderRadius:e.iconSize,border:`${unit(e.lineWidth)} ${e.lineType} transparent`,transition:`background-color ${t}, border-color ${t}`,[`${o}-icon`]:{position:"relative",top:e.iconTop,color:e.colorPrimary,lineHeight:1}},[`${r}-tail`]:{position:"absolute",top:e.calc(e.iconSize).div(2).equal(),insetInlineStart:0,width:"100%","&::after":{display:"inline-block",width:"100%",height:e.lineWidth,background:e.colorSplit,borderRadius:e.lineWidth,transition:`background ${t}`,content:'""'}},[`${r}-title`]:{position:"relative",display:"inline-block",paddingInlineEnd:e.padding,color:e.colorText,fontSize:e.fontSizeLG,lineHeight:unit(e.titleLineHeight),"&::after":{position:"absolute",top:e.calc(e.titleLineHeight).div(2).equal(),insetInlineStart:"100%",display:"block",width:9999,height:e.lineWidth,background:e.processTailColor,content:'""'}},[`${r}-subtitle`]:{display:"inline",marginInlineStart:e.marginXS,color:e.colorTextDescription,fontWeight:"normal",fontSize:e.fontSize},[`${r}-description`]:{color:e.colorTextDescription,fontSize:e.fontSize},...So(Ts,e),...So(Ps,e),[`${r}-process > ${r}-container > ${r}-title`]:{fontWeight:e.fontWeightStrong},...So(vs,e),...So($s,e),[`${r}${o}-next-error > ${o}-item-title::after`]:{background:e.colorError},[`${r}-disabled`]:{cursor:"not-allowed"}}},Rs=e=>{let{componentCls:o,motionDurationSlow:t}=e;return {[`& ${o}-item`]:{[`&:not(${o}-item-active)`]:{[`& > ${o}-item-container[role='button']`]:{cursor:"pointer",[`${o}-item`]:{[`&-title, &-subtitle, &-description, &-icon ${o}-icon`]:{transition:`color ${t}`}},"&:hover":{[`${o}-item`]:{"&-title, &-subtitle, &-description":{color:e.colorPrimary}}}},[`&:not(${o}-item-process)`]:{[`& > ${o}-item-container[role='button']:hover`]:{[`${o}-item`]:{"&-icon":{borderColor:e.colorPrimary,[`${o}-icon`]:{color:e.colorPrimary}}}}}}},[`&${o}-horizontal:not(${o}-label-vertical)`]:{[`${o}-item`]:{paddingInlineStart:e.padding,whiteSpace:"nowrap","&:first-child":{paddingInlineStart:0},[`&:last-child ${o}-item-title`]:{paddingInlineEnd:0},"&-tail":{display:"none"},"&-description":{maxWidth:e.descriptionMaxWidth,whiteSpace:"normal"}}}}},Is=e=>{let{componentCls:o}=e;return {[o]:{...Pe(e),display:"flex",width:"100%",fontSize:0,textAlign:"initial",...ws(e),...Rs(e),...Yr(e),...an(e),...sn(e),...Qr(e),...en(e),...rn(e),...on(e),...nn(e),...tn(e),...Jr(e)}}},Ms=e=>({titleLineHeight:e.controlHeight,customIconSize:e.controlHeight,customIconTop:0,customIconFontSize:e.controlHeightSM,iconSize:e.controlHeight,iconTop:-0.5,iconFontSize:e.fontSize,iconSizeSM:e.fontSizeHeading3,dotSize:e.controlHeight/4,dotCurrentSize:e.controlHeightLG/4,navArrowColor:e.colorTextDisabled,navContentMaxWidth:"auto",descriptionMaxWidth:140,waitIconColor:e.wireframe?e.colorTextDisabled:e.colorTextLabel,waitIconBgColor:e.wireframe?e.colorBgContainer:e.colorFillContent,waitIconBorderColor:e.wireframe?e.colorTextDisabled:"transparent",finishIconBgColor:e.wireframe?e.colorBgContainer:e.controlItemBgActive,finishIconBorderColor:e.wireframe?e.colorPrimary:e.controlItemBgActive}),ln=J("Steps",e=>{let{colorTextDisabled:o,controlHeightLG:t,colorTextLightSolid:r,colorText:n,colorPrimary:i,colorTextDescription:a,colorTextQuaternary:s,colorError:l,colorBorderSecondary:c,colorSplit:p}=e,m=mergeToken(e,{processIconColor:r,processTitleColor:n,processDescriptionColor:n,processIconBgColor:i,processIconBorderColor:i,processDotColor:i,processTailColor:p,waitTitleColor:a,waitDescriptionColor:a,waitTailColor:p,waitDotColor:o,finishIconColor:i,finishTitleColor:n,finishDescriptionColor:a,finishTailColor:i,finishDotColor:i,errorIconColor:r,errorTitleColor:l,errorDescriptionColor:l,errorTailColor:p,errorIconBgColor:l,errorIconBorderColor:l,errorDotColor:l,stepsNavActiveColor:i,stepsProgressSize:t,inlineDotSize:6,inlineTitleColor:s,inlineTailColor:c});return [Is(m)]},Ms);function Os(e){return e.filter(o=>o)}function Ct(e,o){if(process.env.NODE_ENV==="test"&&$("Menu").deprecated(!o,"Step","items"),e)return e;let t=ks(o).map(r=>{if(h.isValidElement(r)){let{props:n}=r;return {...n}}return null});return Os(t)}var yt=e=>{let{percent:o,size:t,className:r,rootClassName:n,direction:i,items:a,responsive:s=true,current:l=0,children:c,style:p,...m}=e,{xs:d}=lr(s),{getPrefixCls:f,direction:g,steps:x}=h.useContext(M),y=h.useMemo(()=>s&&d?"vertical":i,[d,i]),u=tt(t),C=f("steps",e.prefixCls),[w,A,k]=ln(C),P=e.type==="inline",L=f("",e.iconPrefix),O=Ct(a,c),E=P?void 0:o,S={...x?.style,...p},te=Fr(x?.className,{[`${C}-rtl`]:g==="rtl",[`${C}-with-progress`]:E!==void 0},r,n,A,k),q={finish:h.createElement(ns,{className:`${C}-finish-icon`}),error:h.createElement(as,{className:`${C}-error-icon`})};return w(h.createElement(pn,{icons:q,...m,style:S,current:l,size:u,items:O,itemRender:P?(R,H)=>R.description?h.createElement(go,{title:R.description},H):H:void 0,stepIcon:({node:R,status:H})=>{if(H==="process"&&E!==void 0){let U=u==="small"?32:40;return h.createElement("div",{className:`${C}-progress-icon`},h.createElement(Zr,{type:"circle",percent:E,size:U,strokeWidth:4,format:()=>null}),R)}return R},direction:y,prefixCls:C,iconPrefix:L,className:te}))};yt.Step=pn.Step;process.env.NODE_ENV!=="production"&&(yt.displayName="Steps");var pg=yt;export{pg as default};
@@ -0,0 +1,5 @@
1
+ import type { CSSObject } from '@ant-design/cssinjs';
2
+ import type { StepsToken } from '.';
3
+ import type { GenerateStyle } from '../../theme/internal';
4
+ declare const genStepsCustomIconStyle: GenerateStyle<StepsToken, CSSObject>;
5
+ export default genStepsCustomIconStyle;
@@ -0,0 +1 @@
1
+ import {unit}from'@ant-design/cssinjs';var m=o=>{let{componentCls:t,customIconTop:n,customIconSize:e,customIconFontSize:i}=o;return {[`${t}-item-custom`]:{[`> ${t}-item-container > ${t}-item-icon`]:{height:"auto",background:"none",border:0,[`> ${t}-icon`]:{top:n,width:e,height:e,fontSize:i,lineHeight:unit(e)}}},[`&:not(${t}-vertical)`]:{[`${t}-item-custom`]:{[`${t}-item-icon`]:{width:"auto",background:"none"}}}}},s=m;export{s as default};
@@ -0,0 +1,5 @@
1
+ import type { CSSObject } from '@ant-design/cssinjs';
2
+ import type { StepsToken } from '.';
3
+ import type { GenerateStyle } from '../../theme/internal';
4
+ declare const genHorizontalStyle: GenerateStyle<StepsToken, CSSObject>;
5
+ export default genHorizontalStyle;
@@ -0,0 +1 @@
1
+ var o=e=>{let{componentCls:t}=e,n=`${t}-item`;return {[`${t}-horizontal`]:{[`${n}-tail`]:{transform:"translateY(-50%)"}}}},r=o;export{r as default};