@regenbio/regenbio-components-react 1.2.14 → 1.2.16

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 (901) hide show
  1. package/.codecov.yml +6 -0
  2. package/.dumi/app.tsx +1 -0
  3. package/.dumi/tsconfig.json +4 -0
  4. package/.dumirc.ts +426 -0
  5. package/.eslintignore +12 -0
  6. package/.eslintrc.js +6 -0
  7. package/.fatherrc.base.ts +23 -0
  8. package/.github/ISSUE_TEMPLATE/bug_report.md +49 -0
  9. package/.github/ISSUE_TEMPLATE/feature_request.md +41 -0
  10. package/.github/ISSUE_TEMPLATE/question.md +29 -0
  11. package/.github/dependabot.yml +11 -0
  12. package/.github/workflows/build.yml +27 -0
  13. package/.github/workflows/codeql.yml +41 -0
  14. package/.github/workflows/coverage.yml +31 -0
  15. package/.github/workflows/issue-labeled.yml +37 -0
  16. package/.github/workflows/issue-open-check.yml +34 -0
  17. package/.github/workflows/pkg.pr.new.yml +37 -0
  18. package/.github/workflows/preview-build.yml +46 -0
  19. package/.github/workflows/preview-deploy.yml +92 -0
  20. package/.github/workflows/preview-start.yml +18 -0
  21. package/.github/workflows/rebase.yml +17 -0
  22. package/.prettierignore +9 -0
  23. package/.prettierrc.js +7 -0
  24. package/CONTRIBUTING.md +77 -0
  25. package/LICENSE.md +7 -0
  26. package/README.es-PR.md +199 -0
  27. package/README.md +203 -0
  28. package/README.zh-CN.md +203 -0
  29. package/docs/changelog.en-US.md +1115 -0
  30. package/docs/changelog.md +1136 -0
  31. package/docs/components/customization-value-type.tsx +222 -0
  32. package/docs/components/schema.$tab-api.md +8 -0
  33. package/docs/components/schema.en-US.md +477 -0
  34. package/docs/components/schema.md +477 -0
  35. package/docs/components/valueEnum-map.tsx +45 -0
  36. package/docs/components/valueType.tsx +299 -0
  37. package/docs/components.en-US.md +183 -0
  38. package/docs/components.md +78 -0
  39. package/docs/docs/faq.en-US.md +75 -0
  40. package/docs/docs/faq.md +75 -0
  41. package/docs/docs/index.en-US.md +53 -0
  42. package/docs/docs/index.md +56 -0
  43. package/docs/docs/intro.en-US.md +125 -0
  44. package/docs/docs/intro.md +126 -0
  45. package/docs/index.en-US.md +87 -0
  46. package/docs/index.md +56 -0
  47. package/docs/playground/index.en-US.md +14 -0
  48. package/docs/playground/index.md +14 -0
  49. package/docs/playground/pro-descriptions.en-US.md +10 -0
  50. package/docs/playground/pro-descriptions.md +10 -0
  51. package/docs/playground/pro-form.en-US.md +18 -0
  52. package/docs/playground/pro-form.md +19 -0
  53. package/docs/playground/pro-layout.en-US.md +16 -0
  54. package/docs/playground/pro-layout.md +17 -0
  55. package/docs/playground/pro-table.en-US.md +11 -0
  56. package/docs/playground/pro-table.md +11 -0
  57. package/lerna.json +21 -0
  58. package/package.json +164 -36
  59. package/packages/card/.fatherrc.ts +5 -0
  60. package/packages/card/CHANGELOG.md +1489 -0
  61. package/packages/card/README.md +19 -0
  62. package/packages/card/package.json +61 -0
  63. package/packages/card/src/ProCard.tsx +29 -0
  64. package/packages/card/src/components/Actions/index.tsx +40 -0
  65. package/packages/card/src/components/Actions/style.ts +102 -0
  66. package/packages/card/src/components/Card/index.tsx +293 -0
  67. package/packages/card/src/components/Card/style.ts +314 -0
  68. package/packages/card/src/components/CheckCard/Group.tsx +474 -0
  69. package/packages/card/src/components/CheckCard/demos/avatar.tsx +16 -0
  70. package/packages/card/src/components/CheckCard/demos/basic.tsx +18 -0
  71. package/packages/card/src/components/CheckCard/demos/compose.tsx +28 -0
  72. package/packages/card/src/components/CheckCard/demos/custom.tsx +9 -0
  73. package/packages/card/src/components/CheckCard/demos/defaultChecked.tsx +12 -0
  74. package/packages/card/src/components/CheckCard/demos/description.tsx +35 -0
  75. package/packages/card/src/components/CheckCard/demos/disabled.tsx +34 -0
  76. package/packages/card/src/components/CheckCard/demos/extra.tsx +41 -0
  77. package/packages/card/src/components/CheckCard/demos/form.tsx +58 -0
  78. package/packages/card/src/components/CheckCard/demos/grid.tsx +30 -0
  79. package/packages/card/src/components/CheckCard/demos/group.tsx +56 -0
  80. package/packages/card/src/components/CheckCard/demos/image.tsx +20 -0
  81. package/packages/card/src/components/CheckCard/demos/list.tsx +83 -0
  82. package/packages/card/src/components/CheckCard/demos/loading.tsx +3 -0
  83. package/packages/card/src/components/CheckCard/demos/multiple.tsx +51 -0
  84. package/packages/card/src/components/CheckCard/demos/single.tsx +23 -0
  85. package/packages/card/src/components/CheckCard/demos/size.tsx +23 -0
  86. package/packages/card/src/components/CheckCard/demos/title.tsx +22 -0
  87. package/packages/card/src/components/CheckCard/index.en-US.md +154 -0
  88. package/packages/card/src/components/CheckCard/index.md +154 -0
  89. package/packages/card/src/components/CheckCard/index.tsx +379 -0
  90. package/packages/card/src/components/CheckCard/style.ts +216 -0
  91. package/packages/card/src/components/Divider/index.tsx +42 -0
  92. package/packages/card/src/components/Divider/style.ts +48 -0
  93. package/packages/card/src/components/Loading/index.tsx +64 -0
  94. package/packages/card/src/components/Loading/style.ts +55 -0
  95. package/packages/card/src/components/Operation/index.tsx +38 -0
  96. package/packages/card/src/components/Operation/style.ts +33 -0
  97. package/packages/card/src/components/Statistic/index.tsx +129 -0
  98. package/packages/card/src/components/Statistic/style.ts +110 -0
  99. package/packages/card/src/components/StatisticCard/demos/basic.tsx +40 -0
  100. package/packages/card/src/components/StatisticCard/demos/chart.tsx +20 -0
  101. package/packages/card/src/components/StatisticCard/demos/fomula.tsx +37 -0
  102. package/packages/card/src/components/StatisticCard/demos/footer.tsx +42 -0
  103. package/packages/card/src/components/StatisticCard/demos/group-chart.tsx +65 -0
  104. package/packages/card/src/components/StatisticCard/demos/group.tsx +57 -0
  105. package/packages/card/src/components/StatisticCard/demos/horizontal-left.tsx +31 -0
  106. package/packages/card/src/components/StatisticCard/demos/horizontal.tsx +31 -0
  107. package/packages/card/src/components/StatisticCard/demos/icon.tsx +77 -0
  108. package/packages/card/src/components/StatisticCard/demos/layout.tsx +90 -0
  109. package/packages/card/src/components/StatisticCard/demos/status.tsx +46 -0
  110. package/packages/card/src/components/StatisticCard/demos/tabs-statistic.tsx +55 -0
  111. package/packages/card/src/components/StatisticCard/demos/tabs.tsx +55 -0
  112. package/packages/card/src/components/StatisticCard/demos/total-layout.tsx +136 -0
  113. package/packages/card/src/components/StatisticCard/demos/total.tsx +58 -0
  114. package/packages/card/src/components/StatisticCard/demos/trend.tsx +15 -0
  115. package/packages/card/src/components/StatisticCard/index.en-US.md +152 -0
  116. package/packages/card/src/components/StatisticCard/index.md +152 -0
  117. package/packages/card/src/components/StatisticCard/index.tsx +107 -0
  118. package/packages/card/src/components/StatisticCard/style.ts +48 -0
  119. package/packages/card/src/components/TabPane/index.tsx +94 -0
  120. package/packages/card/src/components/card.en-US.md +219 -0
  121. package/packages/card/src/components/card.md +212 -0
  122. package/packages/card/src/demos/actions.tsx +59 -0
  123. package/packages/card/src/demos/basic.tsx +54 -0
  124. package/packages/card/src/demos/bordered.tsx +15 -0
  125. package/packages/card/src/demos/collapsible.tsx +110 -0
  126. package/packages/card/src/demos/colspan.tsx +80 -0
  127. package/packages/card/src/demos/divider.tsx +36 -0
  128. package/packages/card/src/demos/group.tsx +19 -0
  129. package/packages/card/src/demos/gutter.tsx +29 -0
  130. package/packages/card/src/demos/headerBordered.tsx +15 -0
  131. package/packages/card/src/demos/headless.tsx +5 -0
  132. package/packages/card/src/demos/hoverable.tsx +11 -0
  133. package/packages/card/src/demos/inner.tsx +32 -0
  134. package/packages/card/src/demos/layout.tsx +18 -0
  135. package/packages/card/src/demos/loading.tsx +28 -0
  136. package/packages/card/src/demos/multipleLine.tsx +43 -0
  137. package/packages/card/src/demos/responsive.tsx +72 -0
  138. package/packages/card/src/demos/split.tsx +46 -0
  139. package/packages/card/src/demos/split2.tsx +30 -0
  140. package/packages/card/src/demos/split23.tsx +14 -0
  141. package/packages/card/src/demos/steps-v.tsx +59 -0
  142. package/packages/card/src/demos/tabs-card.tsx +18 -0
  143. package/packages/card/src/demos/tabs.tsx +56 -0
  144. package/packages/card/src/index.tsx +30 -0
  145. package/packages/card/src/typing.ts +100 -0
  146. package/packages/card/tsconfig.json +21 -0
  147. package/packages/components/.fatherrc.ts +15 -0
  148. package/packages/components/CHANGELOG.md +841 -0
  149. package/packages/components/README.md +19 -0
  150. package/packages/components/package.json +62 -0
  151. package/packages/components/src/index.tsx +12 -0
  152. package/packages/components/tsconfig.json +32 -0
  153. package/packages/descriptions/.fatherrc.ts +5 -0
  154. package/packages/descriptions/CHANGELOG.md +1740 -0
  155. package/packages/descriptions/README.md +53 -0
  156. package/packages/descriptions/package.json +60 -0
  157. package/packages/descriptions/src/components/descriptions.en-US.md +168 -0
  158. package/packages/descriptions/src/components/descriptions.md +173 -0
  159. package/packages/descriptions/src/demos/arrayDataIndex.tsx +66 -0
  160. package/packages/descriptions/src/demos/base.demo-test.tsx +36 -0
  161. package/packages/descriptions/src/demos/base.tsx +115 -0
  162. package/packages/descriptions/src/demos/columns.tsx +127 -0
  163. package/packages/descriptions/src/demos/customization-value-type.tsx +166 -0
  164. package/packages/descriptions/src/demos/dynamic-descriptions.tsx +319 -0
  165. package/packages/descriptions/src/demos/editable.tsx +138 -0
  166. package/packages/descriptions/src/demos/format.tsx +62 -0
  167. package/packages/descriptions/src/demos/request.tsx +37 -0
  168. package/packages/descriptions/src/demos/use-data-source.tsx +78 -0
  169. package/packages/descriptions/src/index.tsx +676 -0
  170. package/packages/descriptions/src/useFetchData.tsx +93 -0
  171. package/packages/descriptions/tsconfig.json +26 -0
  172. package/packages/field/.fatherrc.ts +5 -0
  173. package/packages/field/CHANGELOG.md +2017 -0
  174. package/packages/field/README.md +17 -0
  175. package/packages/field/package.json +56 -0
  176. package/packages/field/src/FieldHOC/index.tsx +55 -0
  177. package/packages/field/src/components/Cascader/index.tsx +167 -0
  178. package/packages/field/src/components/Checkbox/index.tsx +149 -0
  179. package/packages/field/src/components/Code/index.tsx +78 -0
  180. package/packages/field/src/components/ColorPicker/index.tsx +117 -0
  181. package/packages/field/src/components/ColorPicker/old.tsx +121 -0
  182. package/packages/field/src/components/DatePicker/index.tsx +143 -0
  183. package/packages/field/src/components/Digit/index.tsx +93 -0
  184. package/packages/field/src/components/DigitRange/index.tsx +150 -0
  185. package/packages/field/src/components/FromNow/index.tsx +67 -0
  186. package/packages/field/src/components/Image/index.tsx +61 -0
  187. package/packages/field/src/components/IndexColumn/index.tsx +54 -0
  188. package/packages/field/src/components/Money/index.tsx +454 -0
  189. package/packages/field/src/components/Options/index.tsx +89 -0
  190. package/packages/field/src/components/Password/index.tsx +71 -0
  191. package/packages/field/src/components/Percent/index.tsx +109 -0
  192. package/packages/field/src/components/Percent/util.ts +26 -0
  193. package/packages/field/src/components/Progress/index.tsx +81 -0
  194. package/packages/field/src/components/Radio/index.tsx +128 -0
  195. package/packages/field/src/components/RangePicker/index.tsx +166 -0
  196. package/packages/field/src/components/Rate/index.tsx +36 -0
  197. package/packages/field/src/components/Second/index.tsx +88 -0
  198. package/packages/field/src/components/Segmented/index.tsx +93 -0
  199. package/packages/field/src/components/Select/LightSelect/index.tsx +286 -0
  200. package/packages/field/src/components/Select/SearchSelect/index.tsx +334 -0
  201. package/packages/field/src/components/Select/index.tsx +562 -0
  202. package/packages/field/src/components/Slider/index.tsx +42 -0
  203. package/packages/field/src/components/Status/index.tsx +47 -0
  204. package/packages/field/src/components/Switch/index.tsx +77 -0
  205. package/packages/field/src/components/Text/index.tsx +68 -0
  206. package/packages/field/src/components/TextArea/index.tsx +53 -0
  207. package/packages/field/src/components/TextArea/readonly.tsx +46 -0
  208. package/packages/field/src/components/TimePicker/index.tsx +261 -0
  209. package/packages/field/src/components/TreeSelect/index.tsx +258 -0
  210. package/packages/field/src/components/field.md +42 -0
  211. package/packages/field/src/demos/base.tsx +431 -0
  212. package/packages/field/src/demos/base_test.tsx +509 -0
  213. package/packages/field/src/demos/search-value-autoClearSearchValue.tsx +41 -0
  214. package/packages/field/src/demos/search-value.tsx +96 -0
  215. package/packages/field/src/demos/select-request.tsx +30 -0
  216. package/packages/field/src/demos/tree-select-search-value.tsx +151 -0
  217. package/packages/field/src/index.tsx +678 -0
  218. package/packages/field/tsconfig.json +22 -0
  219. package/packages/form/.fatherrc.ts +5 -0
  220. package/packages/form/CHANGELOG.md +2781 -0
  221. package/packages/form/README.md +15 -0
  222. package/packages/form/package.json +70 -0
  223. package/packages/form/src/BaseForm/BaseForm.tsx +839 -0
  224. package/packages/form/src/BaseForm/EditOrReadOnlyContext.ts +7 -0
  225. package/packages/form/src/BaseForm/LightWrapper/index.tsx +159 -0
  226. package/packages/form/src/BaseForm/LightWrapper/style.ts +31 -0
  227. package/packages/form/src/BaseForm/createField.tsx +384 -0
  228. package/packages/form/src/BaseForm/index.ts +3 -0
  229. package/packages/form/src/FieldContext.tsx +39 -0
  230. package/packages/form/src/components/Captcha/index.tsx +156 -0
  231. package/packages/form/src/components/Cascader/index.tsx +36 -0
  232. package/packages/form/src/components/Checkbox/index.tsx +90 -0
  233. package/packages/form/src/components/ColorPicker/index.tsx +47 -0
  234. package/packages/form/src/components/DateMonthRangePicker/index.tsx +38 -0
  235. package/packages/form/src/components/DatePicker/DatePicker.tsx +35 -0
  236. package/packages/form/src/components/DatePicker/MonthPicker.tsx +35 -0
  237. package/packages/form/src/components/DatePicker/QuarterPicker.tsx +35 -0
  238. package/packages/form/src/components/DatePicker/WeekPicker.tsx +35 -0
  239. package/packages/form/src/components/DatePicker/YearPicker.tsx +35 -0
  240. package/packages/form/src/components/DatePicker/index.tsx +22 -0
  241. package/packages/form/src/components/DateQuarterRangePicker/index.tsx +39 -0
  242. package/packages/form/src/components/DateRangePicker/index.tsx +39 -0
  243. package/packages/form/src/components/DateTimePicker/index.tsx +36 -0
  244. package/packages/form/src/components/DateTimeRangePicker/index.tsx +39 -0
  245. package/packages/form/src/components/DateWeekRangePicker/index.tsx +38 -0
  246. package/packages/form/src/components/DateYearRangePicker/index.tsx +38 -0
  247. package/packages/form/src/components/Dependency/demos/dependency.tsx +112 -0
  248. package/packages/form/src/components/Dependency/demos/dependency2.tsx +106 -0
  249. package/packages/form/src/components/Dependency/index.en-US.md +54 -0
  250. package/packages/form/src/components/Dependency/index.md +52 -0
  251. package/packages/form/src/components/Dependency/index.tsx +111 -0
  252. package/packages/form/src/components/Digit/index.tsx +43 -0
  253. package/packages/form/src/components/DigitRange/index.tsx +51 -0
  254. package/packages/form/src/components/Field/index.tsx +144 -0
  255. package/packages/form/src/components/FieldSet/demos/captCha.tsx +67 -0
  256. package/packages/form/src/components/FieldSet/demos/components-other-readonly.tsx +465 -0
  257. package/packages/form/src/components/FieldSet/demos/components-other.tsx +336 -0
  258. package/packages/form/src/components/FieldSet/demos/datatime.tsx +89 -0
  259. package/packages/form/src/components/FieldSet/demos/fieldSet-light.tsx +58 -0
  260. package/packages/form/src/components/FieldSet/demos/form-fieldset.tsx +106 -0
  261. package/packages/form/src/components/FieldSet/demos/pro-form-captCha.tsx +70 -0
  262. package/packages/form/src/components/FieldSet/demos/search-select.tsx +90 -0
  263. package/packages/form/src/components/FieldSet/demos/upload.tsx +35 -0
  264. package/packages/form/src/components/FieldSet/index.en-US.md +529 -0
  265. package/packages/form/src/components/FieldSet/index.md +680 -0
  266. package/packages/form/src/components/FieldSet/index.tsx +151 -0
  267. package/packages/form/src/components/FormItem/index.tsx +445 -0
  268. package/packages/form/src/components/FormItemRender/index.tsx +219 -0
  269. package/packages/form/src/components/Group/demos/base-use.tsx +93 -0
  270. package/packages/form/src/components/Group/demos/countLimit.tsx +57 -0
  271. package/packages/form/src/components/Group/demos/customize.tsx +294 -0
  272. package/packages/form/src/components/Group/demos/dependency.tsx +70 -0
  273. package/packages/form/src/components/Group/demos/horizontal-layout.tsx +73 -0
  274. package/packages/form/src/components/Group/demos/list-tooltip.tsx +69 -0
  275. package/packages/form/src/components/Group/demos/list.tsx +127 -0
  276. package/packages/form/src/components/Group/demos/nested-list.tsx +66 -0
  277. package/packages/form/src/components/Group/demos/pro-form-list.tsx +126 -0
  278. package/packages/form/src/components/Group/index.en-US.md +326 -0
  279. package/packages/form/src/components/Group/index.md +373 -0
  280. package/packages/form/src/components/Group/index.tsx +182 -0
  281. package/packages/form/src/components/Group/style.ts +55 -0
  282. package/packages/form/src/components/List/ListContainer.tsx +187 -0
  283. package/packages/form/src/components/List/ListItem.tsx +569 -0
  284. package/packages/form/src/components/List/index.tsx +323 -0
  285. package/packages/form/src/components/List/style.ts +89 -0
  286. package/packages/form/src/components/LoginForm/demos/login-form-page.tsx +283 -0
  287. package/packages/form/src/components/LoginForm/demos/login-form.tsx +190 -0
  288. package/packages/form/src/components/LoginForm/index.en-US.md +45 -0
  289. package/packages/form/src/components/LoginForm/index.md +45 -0
  290. package/packages/form/src/components/ModalForm/demos/drawer-form-nested.tsx +265 -0
  291. package/packages/form/src/components/ModalForm/demos/drawer-form.tsx +129 -0
  292. package/packages/form/src/components/ModalForm/demos/modal-form-reset.tsx +112 -0
  293. package/packages/form/src/components/ModalForm/demos/modal-form-submitter.tsx +143 -0
  294. package/packages/form/src/components/ModalForm/demos/modal-form.tsx +112 -0
  295. package/packages/form/src/components/ModalForm/demos/visible-on-visible-change.tsx +187 -0
  296. package/packages/form/src/components/ModalForm/index.en-US.md +70 -0
  297. package/packages/form/src/components/ModalForm/index.md +68 -0
  298. package/packages/form/src/components/Money/index.tsx +47 -0
  299. package/packages/form/src/components/QueryFilter/demos/light-filter-bordered.tsx +149 -0
  300. package/packages/form/src/components/QueryFilter/demos/light-filter-collapse.tsx +28 -0
  301. package/packages/form/src/components/QueryFilter/demos/light-filter-footer.tsx +88 -0
  302. package/packages/form/src/components/QueryFilter/demos/light-filter-placement.tsx +89 -0
  303. package/packages/form/src/components/QueryFilter/demos/light-filter-test.tsx +92 -0
  304. package/packages/form/src/components/QueryFilter/demos/light-filter.tsx +215 -0
  305. package/packages/form/src/components/QueryFilter/demos/query-filter-collapsed.tsx +18 -0
  306. package/packages/form/src/components/QueryFilter/demos/query-filter-defaultColsNumber.tsx +18 -0
  307. package/packages/form/src/components/QueryFilter/demos/query-filter-test.tsx +158 -0
  308. package/packages/form/src/components/QueryFilter/demos/query-filter-vertical.tsx +44 -0
  309. package/packages/form/src/components/QueryFilter/demos/query-filter.tsx +31 -0
  310. package/packages/form/src/components/QueryFilter/demos/search-filter.tsx +126 -0
  311. package/packages/form/src/components/QueryFilter/index.en-US.md +93 -0
  312. package/packages/form/src/components/QueryFilter/index.md +90 -0
  313. package/packages/form/src/components/Radio/index.tsx +89 -0
  314. package/packages/form/src/components/Rate/index.tsx +28 -0
  315. package/packages/form/src/components/SchemaForm/demos/ModalAndDrawerForm.tsx +68 -0
  316. package/packages/form/src/components/SchemaForm/demos/customization-value-type.tsx +174 -0
  317. package/packages/form/src/components/SchemaForm/demos/dependencies.tsx +125 -0
  318. package/packages/form/src/components/SchemaForm/demos/dependency.tsx +90 -0
  319. package/packages/form/src/components/SchemaForm/demos/dynamic-rerender.tsx +127 -0
  320. package/packages/form/src/components/SchemaForm/demos/embed.tsx +121 -0
  321. package/packages/form/src/components/SchemaForm/demos/form-list-required.tsx +142 -0
  322. package/packages/form/src/components/SchemaForm/demos/schema.tsx +311 -0
  323. package/packages/form/src/components/SchemaForm/demos/steps-form.tsx +203 -0
  324. package/packages/form/src/components/SchemaForm/demos/valueType.tsx +150 -0
  325. package/packages/form/src/components/SchemaForm/index.en-US.md +92 -0
  326. package/packages/form/src/components/SchemaForm/index.md +84 -0
  327. package/packages/form/src/components/SchemaForm/index.tsx +241 -0
  328. package/packages/form/src/components/SchemaForm/layoutType/Embed.tsx +3 -0
  329. package/packages/form/src/components/SchemaForm/layoutType/StepsForm.tsx +54 -0
  330. package/packages/form/src/components/SchemaForm/layoutType/index.ts +2 -0
  331. package/packages/form/src/components/SchemaForm/typing.ts +171 -0
  332. package/packages/form/src/components/SchemaForm/valueType/dependency.tsx +34 -0
  333. package/packages/form/src/components/SchemaForm/valueType/divider.tsx +13 -0
  334. package/packages/form/src/components/SchemaForm/valueType/field.tsx +91 -0
  335. package/packages/form/src/components/SchemaForm/valueType/formList.tsx +27 -0
  336. package/packages/form/src/components/SchemaForm/valueType/formSet.tsx +27 -0
  337. package/packages/form/src/components/SchemaForm/valueType/group.tsx +22 -0
  338. package/packages/form/src/components/SchemaForm/valueType/ignore.tsx +13 -0
  339. package/packages/form/src/components/SchemaForm/valueType/index.tsx +46 -0
  340. package/packages/form/src/components/Segmented/index.tsx +36 -0
  341. package/packages/form/src/components/Select/index.tsx +173 -0
  342. package/packages/form/src/components/Slider/index.tsx +62 -0
  343. package/packages/form/src/components/StepsForm/demos/add-or-edit-step-form.tsx +90 -0
  344. package/packages/form/src/components/StepsForm/demos/customize-steps-from.tsx +176 -0
  345. package/packages/form/src/components/StepsForm/demos/modal-step-form.tsx +153 -0
  346. package/packages/form/src/components/StepsForm/demos/multi-card-step-form.tsx +201 -0
  347. package/packages/form/src/components/StepsForm/demos/steps-form-vertical.tsx +153 -0
  348. package/packages/form/src/components/StepsForm/demos/steps-from.tsx +157 -0
  349. package/packages/form/src/components/StepsForm/index.en-US.md +50 -0
  350. package/packages/form/src/components/StepsForm/index.md +56 -0
  351. package/packages/form/src/components/Submitter/index.tsx +144 -0
  352. package/packages/form/src/components/Switch/index.tsx +45 -0
  353. package/packages/form/src/components/Text/index.tsx +176 -0
  354. package/packages/form/src/components/TextArea/index.tsx +27 -0
  355. package/packages/form/src/components/TimePicker/index.tsx +72 -0
  356. package/packages/form/src/components/TreeSelect/index.tsx +49 -0
  357. package/packages/form/src/components/UploadButton/index.tsx +133 -0
  358. package/packages/form/src/components/UploadDragger/index.tsx +134 -0
  359. package/packages/form/src/components/form.en-US.md +320 -0
  360. package/packages/form/src/components/form.md +480 -0
  361. package/packages/form/src/components/index.ts +67 -0
  362. package/packages/form/src/demos/antd.modify.tsx +62 -0
  363. package/packages/form/src/demos/antd.nest.tsx +56 -0
  364. package/packages/form/src/demos/antd.tsx +103 -0
  365. package/packages/form/src/demos/base-test.tsx +256 -0
  366. package/packages/form/src/demos/base.tsx +334 -0
  367. package/packages/form/src/demos/components-test.tsx +64 -0
  368. package/packages/form/src/demos/config-provider.tsx +67 -0
  369. package/packages/form/src/demos/dependency.tsx +85 -0
  370. package/packages/form/src/demos/form-control-render.tsx +81 -0
  371. package/packages/form/src/demos/form-item-render.tsx +164 -0
  372. package/packages/form/src/demos/form-layout-grid.tsx +130 -0
  373. package/packages/form/src/demos/form-layout.tsx +97 -0
  374. package/packages/form/src/demos/formRef.tsx +98 -0
  375. package/packages/form/src/demos/label-col.tsx +48 -0
  376. package/packages/form/src/demos/labelInValue.tsx +34 -0
  377. package/packages/form/src/demos/layout-change.tsx +347 -0
  378. package/packages/form/src/demos/layout-footer.tsx +168 -0
  379. package/packages/form/src/demos/linkage-customization.tsx +179 -0
  380. package/packages/form/src/demos/modalform-test.tsx +121 -0
  381. package/packages/form/src/demos/money.tsx +139 -0
  382. package/packages/form/src/demos/params-formref.tsx +36 -0
  383. package/packages/form/src/demos/pro-form-dependency.debug.tsx +95 -0
  384. package/packages/form/src/demos/pro-form-editableTable.tsx +148 -0
  385. package/packages/form/src/demos/sync-to-url.tsx +68 -0
  386. package/packages/form/src/demos/typings.d.ts +5 -0
  387. package/packages/form/src/helpers/grid.tsx +96 -0
  388. package/packages/form/src/helpers/index.ts +1 -0
  389. package/packages/form/src/index.tsx +56 -0
  390. package/packages/form/src/layouts/DrawerForm/index.tsx +386 -0
  391. package/packages/form/src/layouts/DrawerForm/style.ts +42 -0
  392. package/packages/form/src/layouts/LightFilter/index.tsx +337 -0
  393. package/packages/form/src/layouts/LightFilter/style.ts +64 -0
  394. package/packages/form/src/layouts/LoginForm/index.tsx +153 -0
  395. package/packages/form/src/layouts/LoginForm/style.ts +89 -0
  396. package/packages/form/src/layouts/LoginFormPage/index.tsx +231 -0
  397. package/packages/form/src/layouts/LoginFormPage/style.ts +154 -0
  398. package/packages/form/src/layouts/ModalForm/index.tsx +296 -0
  399. package/packages/form/src/layouts/ProForm/index.tsx +44 -0
  400. package/packages/form/src/layouts/QueryFilter/Actions.tsx +104 -0
  401. package/packages/form/src/layouts/QueryFilter/index.tsx +624 -0
  402. package/packages/form/src/layouts/QueryFilter/style.ts +61 -0
  403. package/packages/form/src/layouts/StepsForm/StepForm.tsx +89 -0
  404. package/packages/form/src/layouts/StepsForm/index.tsx +569 -0
  405. package/packages/form/src/layouts/StepsForm/style.ts +43 -0
  406. package/packages/form/src/layouts/index.ts +19 -0
  407. package/packages/form/src/typing.ts +178 -0
  408. package/packages/form/tsconfig.json +24 -0
  409. package/packages/layout/.fatherrc.ts +5 -0
  410. package/packages/layout/CHANGELOG.md +2188 -0
  411. package/packages/layout/README.md +64 -0
  412. package/packages/layout/package.json +71 -0
  413. package/packages/layout/src/ProLayout.tsx +918 -0
  414. package/packages/layout/src/WrapContent.tsx +41 -0
  415. package/packages/layout/src/assert/Logo.tsx +80 -0
  416. package/packages/layout/src/components/AppsLogoComponents/AppsLogo.tsx +15 -0
  417. package/packages/layout/src/components/AppsLogoComponents/DefaultContent.tsx +64 -0
  418. package/packages/layout/src/components/AppsLogoComponents/SimpleContent.tsx +93 -0
  419. package/packages/layout/src/components/AppsLogoComponents/index.tsx +132 -0
  420. package/packages/layout/src/components/AppsLogoComponents/style/default.ts +78 -0
  421. package/packages/layout/src/components/AppsLogoComponents/style/index.ts +71 -0
  422. package/packages/layout/src/components/AppsLogoComponents/style/simple.ts +93 -0
  423. package/packages/layout/src/components/AppsLogoComponents/types.d.ts +10 -0
  424. package/packages/layout/src/components/CollapsedIcon/index.tsx +20 -0
  425. package/packages/layout/src/components/CollapsedIcon/style.ts +58 -0
  426. package/packages/layout/src/components/Footer.tsx +47 -0
  427. package/packages/layout/src/components/FooterToolbar/index.tsx +123 -0
  428. package/packages/layout/src/components/FooterToolbar/style/index.ts +56 -0
  429. package/packages/layout/src/components/FooterToolbar/style/stylish.ts +29 -0
  430. package/packages/layout/src/components/GlobalFooter/index.tsx +70 -0
  431. package/packages/layout/src/components/GlobalFooter/style.ts +46 -0
  432. package/packages/layout/src/components/GlobalHeader/ActionsContent.tsx +150 -0
  433. package/packages/layout/src/components/GlobalHeader/index.tsx +184 -0
  434. package/packages/layout/src/components/GlobalHeader/rightContentStyle.ts +74 -0
  435. package/packages/layout/src/components/GlobalHeader/style.ts +75 -0
  436. package/packages/layout/src/components/GridContent/index.tsx +54 -0
  437. package/packages/layout/src/components/GridContent/style.ts +29 -0
  438. package/packages/layout/src/components/Header/index.tsx +170 -0
  439. package/packages/layout/src/components/Header/style/header.ts +70 -0
  440. package/packages/layout/src/components/Header/style/stylish.ts +34 -0
  441. package/packages/layout/src/components/Help/AsyncContentPanel.tsx +62 -0
  442. package/packages/layout/src/components/Help/HelpProvide.tsx +187 -0
  443. package/packages/layout/src/components/Help/ProHelpContentPanel.tsx +162 -0
  444. package/packages/layout/src/components/Help/ProHelpDrawer.tsx +54 -0
  445. package/packages/layout/src/components/Help/ProHelpModal.tsx +51 -0
  446. package/packages/layout/src/components/Help/ProHelpPanel.tsx +310 -0
  447. package/packages/layout/src/components/Help/ProHelpPopover.tsx +78 -0
  448. package/packages/layout/src/components/Help/RenderContentPanel.tsx +156 -0
  449. package/packages/layout/src/components/Help/Search.tsx +172 -0
  450. package/packages/layout/src/components/Help/index.tsx +78 -0
  451. package/packages/layout/src/components/Help/style.ts +109 -0
  452. package/packages/layout/src/components/PageContainer/demos/basic.tsx +96 -0
  453. package/packages/layout/src/components/PageContainer/demos/fixHeader.tsx +59 -0
  454. package/packages/layout/src/components/PageContainer/demos/hideBreadMenu.tsx +38 -0
  455. package/packages/layout/src/components/PageContainer/demos/loading.tsx +144 -0
  456. package/packages/layout/src/components/PageContainer/demos/token.tsx +71 -0
  457. package/packages/layout/src/components/PageContainer/index.en-US.md +104 -0
  458. package/packages/layout/src/components/PageContainer/index.md +125 -0
  459. package/packages/layout/src/components/PageContainer/index.tsx +506 -0
  460. package/packages/layout/src/components/PageContainer/style/index.ts +137 -0
  461. package/packages/layout/src/components/PageContainer/style/stylish.ts +29 -0
  462. package/packages/layout/src/components/PageHeader/demo/actions.en-US.md +78 -0
  463. package/packages/layout/src/components/PageHeader/demo/actions.md +78 -0
  464. package/packages/layout/src/components/PageHeader/demo/basic.en-US.md +30 -0
  465. package/packages/layout/src/components/PageHeader/demo/basic.md +30 -0
  466. package/packages/layout/src/components/PageHeader/demo/breadcrumb.en-US.md +39 -0
  467. package/packages/layout/src/components/PageHeader/demo/breadcrumb.md +39 -0
  468. package/packages/layout/src/components/PageHeader/demo/content.en-US.md +206 -0
  469. package/packages/layout/src/components/PageHeader/demo/content.md +206 -0
  470. package/packages/layout/src/components/PageHeader/demo/ghost.en-US.md +52 -0
  471. package/packages/layout/src/components/PageHeader/demo/ghost.md +52 -0
  472. package/packages/layout/src/components/PageHeader/demo/responsive.en-US.md +114 -0
  473. package/packages/layout/src/components/PageHeader/demo/responsive.md +114 -0
  474. package/packages/layout/src/components/PageHeader/index.en-US.md +39 -0
  475. package/packages/layout/src/components/PageHeader/index.md +39 -0
  476. package/packages/layout/src/components/PageHeader/index.tsx +276 -0
  477. package/packages/layout/src/components/PageHeader/style/index.ts +180 -0
  478. package/packages/layout/src/components/PageLoading/index.tsx +18 -0
  479. package/packages/layout/src/components/SettingDrawer/BlockCheckbox.tsx +60 -0
  480. package/packages/layout/src/components/SettingDrawer/LayoutChange.tsx +122 -0
  481. package/packages/layout/src/components/SettingDrawer/RegionalChange.tsx +45 -0
  482. package/packages/layout/src/components/SettingDrawer/ThemeColor.tsx +68 -0
  483. package/packages/layout/src/components/SettingDrawer/icon/group.tsx +108 -0
  484. package/packages/layout/src/components/SettingDrawer/icon/sub.tsx +163 -0
  485. package/packages/layout/src/components/SettingDrawer/index.tsx +602 -0
  486. package/packages/layout/src/components/SettingDrawer/style/index.ts +149 -0
  487. package/packages/layout/src/components/SiderMenu/Arrow.tsx +15 -0
  488. package/packages/layout/src/components/SiderMenu/BaseMenu.tsx +741 -0
  489. package/packages/layout/src/components/SiderMenu/SiderMenu.tsx +541 -0
  490. package/packages/layout/src/components/SiderMenu/index.tsx +101 -0
  491. package/packages/layout/src/components/SiderMenu/style/index.ts +219 -0
  492. package/packages/layout/src/components/SiderMenu/style/menu.ts +177 -0
  493. package/packages/layout/src/components/SiderMenu/style/stylish.ts +33 -0
  494. package/packages/layout/src/components/TopNavHeader/index.tsx +202 -0
  495. package/packages/layout/src/components/TopNavHeader/style.ts +88 -0
  496. package/packages/layout/src/components/WaterMark/demos/custom.tsx +133 -0
  497. package/packages/layout/src/components/WaterMark/demos/frontend.tsx +135 -0
  498. package/packages/layout/src/components/WaterMark/demos/image.tsx +40 -0
  499. package/packages/layout/src/components/WaterMark/demos/text.tsx +8 -0
  500. package/packages/layout/src/components/WaterMark/demos/textRows.tsx +8 -0
  501. package/packages/layout/src/components/WaterMark/index.en-US.md +80 -0
  502. package/packages/layout/src/components/WaterMark/index.md +80 -0
  503. package/packages/layout/src/components/WaterMark/index.tsx +212 -0
  504. package/packages/layout/src/components/layout.$tab-api.md +120 -0
  505. package/packages/layout/src/components/layout.en-US.$tab-api.md +76 -0
  506. package/packages/layout/src/components/layout.en-US.md +465 -0
  507. package/packages/layout/src/components/layout.md +474 -0
  508. package/packages/layout/src/context/RouteContext.tsx +36 -0
  509. package/packages/layout/src/defaultSettings.ts +143 -0
  510. package/packages/layout/src/demos/AlwaysDefaultOpenAllMenu.tsx +88 -0
  511. package/packages/layout/src/demos/BreadcrumbsRepeat.tsx +57 -0
  512. package/packages/layout/src/demos/DefaultOpenAllMenu.tsx +26 -0
  513. package/packages/layout/src/demos/IconFont.tsx +39 -0
  514. package/packages/layout/src/demos/MenuGroup.tsx +24 -0
  515. package/packages/layout/src/demos/MultipleMenuOnePath.tsx +199 -0
  516. package/packages/layout/src/demos/Nested.tsx +65 -0
  517. package/packages/layout/src/demos/TopmenuNested.tsx +35 -0
  518. package/packages/layout/src/demos/_defaultProps.tsx +152 -0
  519. package/packages/layout/src/demos/antd@4MenuIconFormServe.tsx +67 -0
  520. package/packages/layout/src/demos/api.tsx +149 -0
  521. package/packages/layout/src/demos/appList-group-simple.tsx +104 -0
  522. package/packages/layout/src/demos/appList-group.tsx +131 -0
  523. package/packages/layout/src/demos/async-load-help.tsx +336 -0
  524. package/packages/layout/src/demos/background-context.tsx +146 -0
  525. package/packages/layout/src/demos/base.tsx +456 -0
  526. package/packages/layout/src/demos/classicMode.tsx +212 -0
  527. package/packages/layout/src/demos/collapsedShowTitle.tsx +155 -0
  528. package/packages/layout/src/demos/complexMenu.ts +101 -0
  529. package/packages/layout/src/demos/config-provider.tsx +153 -0
  530. package/packages/layout/src/demos/customMenu.ts +23 -0
  531. package/packages/layout/src/demos/customSider.tsx +140 -0
  532. package/packages/layout/src/demos/customize-collapsed.tsx +98 -0
  533. package/packages/layout/src/demos/customizeMenu.tsx +62 -0
  534. package/packages/layout/src/demos/dark.tsx +127 -0
  535. package/packages/layout/src/demos/debug-demo.tsx +154 -0
  536. package/packages/layout/src/demos/designMenuCss.tsx +204 -0
  537. package/packages/layout/src/demos/designSiderMenu.tsx +105 -0
  538. package/packages/layout/src/demos/draggableHelp.tsx +349 -0
  539. package/packages/layout/src/demos/dynamic-settings.tsx +155 -0
  540. package/packages/layout/src/demos/dynamicMenu.tsx +71 -0
  541. package/packages/layout/src/demos/error-boundaries.tsx +156 -0
  542. package/packages/layout/src/demos/footer-global-tools.tsx +211 -0
  543. package/packages/layout/src/demos/footer.tsx +31 -0
  544. package/packages/layout/src/demos/ghost.tsx +51 -0
  545. package/packages/layout/src/demos/help.tsx +683 -0
  546. package/packages/layout/src/demos/hideMenu.tsx +29 -0
  547. package/packages/layout/src/demos/immersive-navigation-top.tsx +106 -0
  548. package/packages/layout/src/demos/immersive-navigation.tsx +139 -0
  549. package/packages/layout/src/demos/menu-group.tsx +138 -0
  550. package/packages/layout/src/demos/mixMode.tsx +148 -0
  551. package/packages/layout/src/demos/morse_debug.tsx +234 -0
  552. package/packages/layout/src/demos/pageSimplify.tsx +153 -0
  553. package/packages/layout/src/demos/proHelpModal.tsx +367 -0
  554. package/packages/layout/src/demos/searchMenu.tsx +90 -0
  555. package/packages/layout/src/demos/siderMode.tsx +82 -0
  556. package/packages/layout/src/demos/siteMenu.tsx +148 -0
  557. package/packages/layout/src/demos/splitMenus.tsx +123 -0
  558. package/packages/layout/src/demos/theme.tsx +159 -0
  559. package/packages/layout/src/demos/top-breadcrumb.tsx +68 -0
  560. package/packages/layout/src/demos/topMode.tsx +351 -0
  561. package/packages/layout/src/getPageTitle.ts +138 -0
  562. package/packages/layout/src/index.tsx +93 -0
  563. package/packages/layout/src/locales/en-US/settingDrawer.ts +45 -0
  564. package/packages/layout/src/locales/en-US.ts +5 -0
  565. package/packages/layout/src/locales/index.ts +33 -0
  566. package/packages/layout/src/locales/it-IT/settingDrawer.ts +37 -0
  567. package/packages/layout/src/locales/it-IT.ts +5 -0
  568. package/packages/layout/src/locales/ko-KR/settingDrawer.ts +41 -0
  569. package/packages/layout/src/locales/ko-KR.ts +5 -0
  570. package/packages/layout/src/locales/zh-CN/settingDrawer.ts +45 -0
  571. package/packages/layout/src/locales/zh-CN.ts +5 -0
  572. package/packages/layout/src/locales/zh-TW/settingDrawer.ts +37 -0
  573. package/packages/layout/src/locales/zh-TW.ts +5 -0
  574. package/packages/layout/src/style/index.ts +280 -0
  575. package/packages/layout/src/typing.ts +77 -0
  576. package/packages/layout/src/utils/getBreadcrumbProps.tsx +204 -0
  577. package/packages/layout/src/utils/getMenuData.ts +42 -0
  578. package/packages/layout/src/utils/pathTools.ts +10 -0
  579. package/packages/layout/src/utils/useCurrentMenuLayoutProps.ts +36 -0
  580. package/packages/layout/src/utils/utils.ts +66 -0
  581. package/packages/layout/tsconfig.json +23 -0
  582. package/packages/list/.fatherrc.ts +5 -0
  583. package/packages/list/CHANGELOG.md +1840 -0
  584. package/packages/list/README.md +49 -0
  585. package/packages/list/package.json +62 -0
  586. package/packages/list/src/Item.tsx +389 -0
  587. package/packages/list/src/ListView.tsx +327 -0
  588. package/packages/list/src/components/list.en-US.md +147 -0
  589. package/packages/list/src/components/list.md +149 -0
  590. package/packages/list/src/constants.ts +17 -0
  591. package/packages/list/src/demos/ToolBar.tsx +195 -0
  592. package/packages/list/src/demos/base.tsx +85 -0
  593. package/packages/list/src/demos/card-list.tsx +117 -0
  594. package/packages/list/src/demos/editable.tsx +89 -0
  595. package/packages/list/src/demos/expand.tsx +92 -0
  596. package/packages/list/src/demos/filter.tsx +125 -0
  597. package/packages/list/src/demos/layout.tsx +95 -0
  598. package/packages/list/src/demos/pagination.tsx +64 -0
  599. package/packages/list/src/demos/search.tsx +123 -0
  600. package/packages/list/src/demos/selectedRow.tsx +86 -0
  601. package/packages/list/src/demos/size.tsx +126 -0
  602. package/packages/list/src/demos/special.tsx +109 -0
  603. package/packages/list/src/demos/testConfigProvider.tsx +66 -0
  604. package/packages/list/src/index.tsx +251 -0
  605. package/packages/list/src/style/index.ts +283 -0
  606. package/packages/list/tsconfig.json +33 -0
  607. package/packages/provider/.fatherrc.ts +5 -0
  608. package/packages/provider/CHANGELOG.md +824 -0
  609. package/packages/provider/README.md +19 -0
  610. package/packages/provider/package.json +58 -0
  611. package/packages/provider/src/index.tsx +484 -0
  612. package/packages/provider/src/intl.ts +183 -0
  613. package/packages/provider/src/locale/ar_EG.tsx +71 -0
  614. package/packages/provider/src/locale/ca_ES.tsx +71 -0
  615. package/packages/provider/src/locale/cs_CZ.tsx +74 -0
  616. package/packages/provider/src/locale/de_DE.tsx +71 -0
  617. package/packages/provider/src/locale/en_GB.tsx +73 -0
  618. package/packages/provider/src/locale/en_US.tsx +75 -0
  619. package/packages/provider/src/locale/es_ES.tsx +71 -0
  620. package/packages/provider/src/locale/fa_IR.tsx +71 -0
  621. package/packages/provider/src/locale/fr_FR.tsx +71 -0
  622. package/packages/provider/src/locale/he_IL.tsx +74 -0
  623. package/packages/provider/src/locale/hr_HR.tsx +71 -0
  624. package/packages/provider/src/locale/id_ID.tsx +71 -0
  625. package/packages/provider/src/locale/it_IT.tsx +71 -0
  626. package/packages/provider/src/locale/ja_JP.tsx +71 -0
  627. package/packages/provider/src/locale/ko_KR.tsx +71 -0
  628. package/packages/provider/src/locale/mn_MN.tsx +71 -0
  629. package/packages/provider/src/locale/ms_MY.tsx +71 -0
  630. package/packages/provider/src/locale/nl_NL.tsx +74 -0
  631. package/packages/provider/src/locale/pl_PL.tsx +71 -0
  632. package/packages/provider/src/locale/pt_BR.tsx +71 -0
  633. package/packages/provider/src/locale/ro_RO.tsx +74 -0
  634. package/packages/provider/src/locale/ru_RU.tsx +71 -0
  635. package/packages/provider/src/locale/sk_SK.tsx +74 -0
  636. package/packages/provider/src/locale/sr_RS.tsx +71 -0
  637. package/packages/provider/src/locale/sv_SE.tsx +74 -0
  638. package/packages/provider/src/locale/th_TH.tsx +74 -0
  639. package/packages/provider/src/locale/tr_TR.tsx +71 -0
  640. package/packages/provider/src/locale/uk_UA.tsx +74 -0
  641. package/packages/provider/src/locale/uz_UZ.tsx +71 -0
  642. package/packages/provider/src/locale/vi_VN.tsx +71 -0
  643. package/packages/provider/src/locale/zh_CN.tsx +74 -0
  644. package/packages/provider/src/locale/zh_TW.tsx +74 -0
  645. package/packages/provider/src/typing/layoutToken.ts +175 -0
  646. package/packages/provider/src/useStyle/index.ts +141 -0
  647. package/packages/provider/src/useStyle/token.ts +412 -0
  648. package/packages/provider/src/utils/merge.ts +28 -0
  649. package/packages/provider/tsconfig.json +18 -0
  650. package/packages/skeleton/.fatherrc.ts +5 -0
  651. package/packages/skeleton/CHANGELOG.md +253 -0
  652. package/packages/skeleton/README.md +19 -0
  653. package/packages/skeleton/package.json +54 -0
  654. package/packages/skeleton/src/components/Descriptions/index.tsx +328 -0
  655. package/packages/skeleton/src/components/List/index.tsx +310 -0
  656. package/packages/skeleton/src/components/Result/index.tsx +54 -0
  657. package/packages/skeleton/src/components/skeleton.en-US.md +49 -0
  658. package/packages/skeleton/src/components/skeleton.md +41 -0
  659. package/packages/skeleton/src/demos/descriptions.tsx +14 -0
  660. package/packages/skeleton/src/demos/list.static.tsx +12 -0
  661. package/packages/skeleton/src/demos/list.tsx +12 -0
  662. package/packages/skeleton/src/demos/result.tsx +12 -0
  663. package/packages/skeleton/src/index.tsx +48 -0
  664. package/packages/skeleton/tsconfig.json +18 -0
  665. package/packages/table/.fatherrc.ts +5 -0
  666. package/packages/table/CHANGELOG.md +2622 -0
  667. package/packages/table/README.md +167 -0
  668. package/packages/table/package.json +75 -0
  669. package/packages/table/src/Store/Provide.tsx +261 -0
  670. package/packages/table/src/Table.tsx +1043 -0
  671. package/packages/table/src/components/Alert/index.tsx +96 -0
  672. package/packages/table/src/components/Alert/style.ts +45 -0
  673. package/packages/table/src/components/ColumnSetting/index.tsx +535 -0
  674. package/packages/table/src/components/ColumnSetting/style.ts +104 -0
  675. package/packages/table/src/components/DragSortTable/demos/drag-sort-table.tsx +164 -0
  676. package/packages/table/src/components/DragSortTable/demos/drag.tsx +74 -0
  677. package/packages/table/src/components/DragSortTable/index.en-US.md +28 -0
  678. package/packages/table/src/components/DragSortTable/index.md +26 -0
  679. package/packages/table/src/components/DragSortTable/index.tsx +112 -0
  680. package/packages/table/src/components/DragSortTable/style.ts +35 -0
  681. package/packages/table/src/components/Dropdown/index.tsx +86 -0
  682. package/packages/table/src/components/EditableTable/CellEditorTable.tsx +67 -0
  683. package/packages/table/src/components/EditableTable/RowEditorTable.tsx +60 -0
  684. package/packages/table/src/components/EditableTable/demos/basic.tsx +219 -0
  685. package/packages/table/src/components/EditableTable/demos/cell-editor-table.tsx +101 -0
  686. package/packages/table/src/components/EditableTable/demos/children.tsx +202 -0
  687. package/packages/table/src/components/EditableTable/demos/custom.tsx +257 -0
  688. package/packages/table/src/components/EditableTable/demos/form-item.tsx +254 -0
  689. package/packages/table/src/components/EditableTable/demos/form-linkage.tsx +259 -0
  690. package/packages/table/src/components/EditableTable/demos/real-time-editing.tsx +155 -0
  691. package/packages/table/src/components/EditableTable/demos/row-editor-table.tsx +100 -0
  692. package/packages/table/src/components/EditableTable/index.en-US.md +303 -0
  693. package/packages/table/src/components/EditableTable/index.md +303 -0
  694. package/packages/table/src/components/EditableTable/index.tsx +562 -0
  695. package/packages/table/src/components/Form/FormRender.tsx +262 -0
  696. package/packages/table/src/components/Form/index.tsx +194 -0
  697. package/packages/table/src/components/ListToolBar/HeaderMenu.tsx +132 -0
  698. package/packages/table/src/components/ListToolBar/index.tsx +420 -0
  699. package/packages/table/src/components/ListToolBar/style.ts +127 -0
  700. package/packages/table/src/components/ToolBar/DensityIcon.tsx +47 -0
  701. package/packages/table/src/components/ToolBar/FullscreenIcon.tsx +29 -0
  702. package/packages/table/src/components/ToolBar/index.tsx +419 -0
  703. package/packages/table/src/components/table.$tab-api.md +243 -0
  704. package/packages/table/src/components/table.en-US.$tab-api.md +210 -0
  705. package/packages/table/src/components/table.en-US.md +333 -0
  706. package/packages/table/src/components/table.md +338 -0
  707. package/packages/table/src/demos/ListToolBar/basic.tsx +124 -0
  708. package/packages/table/src/demos/ListToolBar/menu.tsx +148 -0
  709. package/packages/table/src/demos/ListToolBar/multipleLine.tsx +139 -0
  710. package/packages/table/src/demos/ListToolBar/no-title.tsx +108 -0
  711. package/packages/table/src/demos/ListToolBar/tabs.tsx +176 -0
  712. package/packages/table/src/demos/batchOption.tsx +180 -0
  713. package/packages/table/src/demos/card-title.tsx +93 -0
  714. package/packages/table/src/demos/columns-setting-custom-icon.tsx +55 -0
  715. package/packages/table/src/demos/columnsStateMap.tsx +113 -0
  716. package/packages/table/src/demos/config-provider.tsx +139 -0
  717. package/packages/table/src/demos/crud.tsx +168 -0
  718. package/packages/table/src/demos/customization-value-type.tsx +174 -0
  719. package/packages/table/src/demos/dataSource.tsx +178 -0
  720. package/packages/table/src/demos/dateFormatter.tsx +130 -0
  721. package/packages/table/src/demos/dynamic-columns-state.tsx +151 -0
  722. package/packages/table/src/demos/dynamic-settings.tsx +723 -0
  723. package/packages/table/src/demos/edittable-rules.tsx +106 -0
  724. package/packages/table/src/demos/error-boundaries-false.tsx +81 -0
  725. package/packages/table/src/demos/error-boundaries.tsx +201 -0
  726. package/packages/table/src/demos/form.tsx +82 -0
  727. package/packages/table/src/demos/intl.tsx +119 -0
  728. package/packages/table/src/demos/lightfilter.tsx +81 -0
  729. package/packages/table/src/demos/linkage_form.tsx +175 -0
  730. package/packages/table/src/demos/listToolBar.tsx +184 -0
  731. package/packages/table/src/demos/no-option.tsx +113 -0
  732. package/packages/table/src/demos/no-title.tsx +167 -0
  733. package/packages/table/src/demos/normal.tsx +124 -0
  734. package/packages/table/src/demos/open-rules.tsx +187 -0
  735. package/packages/table/src/demos/pollinga.tsx +129 -0
  736. package/packages/table/src/demos/renderTable.tsx +159 -0
  737. package/packages/table/src/demos/rtl_table.tsx +137 -0
  738. package/packages/table/src/demos/search.tsx +46 -0
  739. package/packages/table/src/demos/search_option.tsx +66 -0
  740. package/packages/table/src/demos/single-test.tsx +254 -0
  741. package/packages/table/src/demos/single.tsx +242 -0
  742. package/packages/table/src/demos/split.tsx +200 -0
  743. package/packages/table/src/demos/table-nested.tsx +162 -0
  744. package/packages/table/src/demos/theme.tsx +235 -0
  745. package/packages/table/src/demos/valueType.tsx +136 -0
  746. package/packages/table/src/demos/valueTypeDate.tsx +138 -0
  747. package/packages/table/src/demos/valueTypeNumber.tsx +117 -0
  748. package/packages/table/src/demos/valueType_select.tsx +188 -0
  749. package/packages/table/src/index.tsx +96 -0
  750. package/packages/table/src/style/index.ts +178 -0
  751. package/packages/table/src/typing.ts +585 -0
  752. package/packages/table/src/useFetchData.tsx +464 -0
  753. package/packages/table/src/utils/cellRenderToFromItem.tsx +360 -0
  754. package/packages/table/src/utils/columnRender.tsx +220 -0
  755. package/packages/table/src/utils/columnSort.ts +26 -0
  756. package/packages/table/src/utils/genProColumnToColumn.tsx +192 -0
  757. package/packages/table/src/utils/index.ts +224 -0
  758. package/packages/table/src/utils/useDragSort.tsx +210 -0
  759. package/packages/table/tsconfig.json +26 -0
  760. package/packages/utils/.fatherrc.ts +5 -0
  761. package/packages/utils/CHANGELOG.md +1747 -0
  762. package/packages/utils/README.md +19 -0
  763. package/packages/utils/package.json +65 -0
  764. package/packages/utils/src/compareVersions/coverToNewToken.ts +44 -0
  765. package/packages/utils/src/compareVersions/index.ts +84 -0
  766. package/packages/utils/src/compareVersions/menuOverlayCompatible.tsx +20 -0
  767. package/packages/utils/src/compareVersions/openVisibleCompatible.ts +25 -0
  768. package/packages/utils/src/compatible/compatibleBorder.ts +21 -0
  769. package/packages/utils/src/components/DropdownFooter/index.tsx +79 -0
  770. package/packages/utils/src/components/DropdownFooter/style.ts +30 -0
  771. package/packages/utils/src/components/ErrorBoundary/index.tsx +37 -0
  772. package/packages/utils/src/components/FieldLabel/index.tsx +222 -0
  773. package/packages/utils/src/components/FieldLabel/style.ts +121 -0
  774. package/packages/utils/src/components/FilterDropdown/index.tsx +100 -0
  775. package/packages/utils/src/components/FilterDropdown/style.ts +28 -0
  776. package/packages/utils/src/components/InlineErrorFormItem/index.tsx +196 -0
  777. package/packages/utils/src/components/InlineErrorFormItem/style.ts +76 -0
  778. package/packages/utils/src/components/LabelIconTip/index.tsx +63 -0
  779. package/packages/utils/src/components/LabelIconTip/style.ts +49 -0
  780. package/packages/utils/src/components/ProFormContext/index.tsx +45 -0
  781. package/packages/utils/src/conversionMomentValue/index.ts +203 -0
  782. package/packages/utils/src/dateArrayFormatter/index.tsx +60 -0
  783. package/packages/utils/src/genCopyable/index.tsx +71 -0
  784. package/packages/utils/src/getFieldPropsOrFormItemProps/index.tsx +22 -0
  785. package/packages/utils/src/hooks/useDebounceFn/index.ts +47 -0
  786. package/packages/utils/src/hooks/useDebounceValue/index.ts +32 -0
  787. package/packages/utils/src/hooks/useDeepCompareEffect/index.ts +42 -0
  788. package/packages/utils/src/hooks/useDeepCompareMemo/index.ts +22 -0
  789. package/packages/utils/src/hooks/useDocumentTitle/index.ts +19 -0
  790. package/packages/utils/src/hooks/useFetchData/index.tsx +60 -0
  791. package/packages/utils/src/hooks/useForceRender/index.ts +9 -0
  792. package/packages/utils/src/hooks/useLatest/index.ts +10 -0
  793. package/packages/utils/src/hooks/usePrevious/index.ts +11 -0
  794. package/packages/utils/src/hooks/useReactiveRef/index.ts +21 -0
  795. package/packages/utils/src/hooks/useRefCallback/index.ts +42 -0
  796. package/packages/utils/src/hooks/useRefFunction/index.ts +11 -0
  797. package/packages/utils/src/index.tsx +158 -0
  798. package/packages/utils/src/isBrowser/index.ts +24 -0
  799. package/packages/utils/src/isDeepEqualReact/index.ts +96 -0
  800. package/packages/utils/src/isDropdownValueType/index.ts +13 -0
  801. package/packages/utils/src/isImg/index.ts +4 -0
  802. package/packages/utils/src/isNil/index.ts +2 -0
  803. package/packages/utils/src/isUrl/index.ts +17 -0
  804. package/packages/utils/src/merge/index.ts +38 -0
  805. package/packages/utils/src/nanoid/index.ts +41 -0
  806. package/packages/utils/src/omitBoolean/index.ts +11 -0
  807. package/packages/utils/src/omitUndefined/index.ts +18 -0
  808. package/packages/utils/src/omitUndefinedAndEmptyArr/index.ts +15 -0
  809. package/packages/utils/src/parseValueToMoment/index.ts +39 -0
  810. package/packages/utils/src/pickProFormItemProps/index.tsx +44 -0
  811. package/packages/utils/src/pickProProps/index.tsx +16 -0
  812. package/packages/utils/src/proFieldParsingText/index.tsx +142 -0
  813. package/packages/utils/src/runFunction/index.ts +7 -0
  814. package/packages/utils/src/stringify/index.ts +13 -0
  815. package/packages/utils/src/transformKeySubmitValue/index.ts +207 -0
  816. package/packages/utils/src/typing.ts +767 -0
  817. package/packages/utils/src/useEditableArray/index.tsx +1134 -0
  818. package/packages/utils/src/useEditableMap/index.tsx +236 -0
  819. package/packages/utils/src/useMediaQuery/index.ts +109 -0
  820. package/packages/utils/src/useMediaQuery/query.ts +19 -0
  821. package/packages/utils/src/useMountMergeState/index.ts +3 -0
  822. package/packages/utils/tsconfig.json +21 -0
  823. package/pnpm-workspace.yaml +2 -0
  824. package/public/CNAME +1 -0
  825. package/public/favicon.ico +0 -0
  826. package/public/icon.png +0 -0
  827. package/public/sitemap.xml +458 -0
  828. package/scripts/bootstrap.js +108 -0
  829. package/scripts/changelogs.js +10 -0
  830. package/scripts/checkDeps.js +166 -0
  831. package/scripts/checkPublish.js +10 -0
  832. package/scripts/createRelease.js +125 -0
  833. package/scripts/gen_version.js +34 -0
  834. package/scripts/generateSizeLimit.js +38 -0
  835. package/scripts/issue.js +91 -0
  836. package/scripts/preDeploy.js +18 -0
  837. package/scripts/readApi.mjs +145 -0
  838. package/scripts/release.js +184 -0
  839. package/scripts/replaceEs.js +22 -0
  840. package/scripts/replaceLib.js +22 -0
  841. package/scripts/replaceLodash.js +21 -0
  842. package/scripts/syncTNPM.js +19 -0
  843. package/scripts/utils/exec.js +23 -0
  844. package/scripts/utils/getPackages.js +8 -0
  845. package/scripts/utils/isNextVersion.js +7 -0
  846. package/scripts/verifyCommit.js +28 -0
  847. package/tsconfig.json +39 -9
  848. package/typings.d.ts +6 -0
  849. package/vercel.json +7 -0
  850. package/vitest.config.ts +48 -0
  851. package/.idea/modules.xml +0 -8
  852. package/.idea/test-components.iml +0 -12
  853. package/.idea/vcs.xml +0 -6
  854. package/build/components/ActionBar/index.d.ts +0 -17
  855. package/build/components/ActionBar/type.d.ts +0 -82
  856. package/build/components/DataChart/index.d.ts +0 -7
  857. package/build/components/DataChart/type.d.ts +0 -50
  858. package/build/components/DataTable/index.d.ts +0 -9
  859. package/build/components/DataTable/locales/en-US.d.ts +0 -4
  860. package/build/components/DataTable/locales/zh-CN.d.ts +0 -4
  861. package/build/components/DataTable/type.d.ts +0 -117
  862. package/build/components/DragTable/index.d.ts +0 -9
  863. package/build/components/DragTable/type.d.ts +0 -22
  864. package/build/components/FileTag/index.d.ts +0 -9
  865. package/build/components/FileTag/locales/en-US.d.ts +0 -5
  866. package/build/components/FileTag/locales/zh-CN.d.ts +0 -5
  867. package/build/components/FileTag/type.d.ts +0 -35
  868. package/build/components/HtmlRender/index.d.ts +0 -10
  869. package/build/components/HtmlRender/type.d.ts +0 -13
  870. package/build/components/IconRender/index.d.ts +0 -9
  871. package/build/components/IconRender/type.d.ts +0 -9
  872. package/build/components/ThemeListener/index.d.ts +0 -10
  873. package/build/components/ThemeListener/type.d.ts +0 -10
  874. package/build/components/ThemeSetter/index.d.ts +0 -9
  875. package/build/components/UserCard/index.d.ts +0 -9
  876. package/build/components/UserCard/locales/en-US.d.ts +0 -10
  877. package/build/components/UserCard/locales/zh-CN.d.ts +0 -10
  878. package/build/components/UserCard/type.d.ts +0 -52
  879. package/build/components/UserSelector/index.d.ts +0 -8
  880. package/build/components/UserSelector/locales/en-US.d.ts +0 -5
  881. package/build/components/UserSelector/locales/zh-CN.d.ts +0 -5
  882. package/build/components/UserSelector/type.d.ts +0 -60
  883. package/build/index.d.ts +0 -78
  884. package/build/index.js +0 -28
  885. package/build/index.js.LICENSE.txt +0 -1733
  886. package/build/locales/en-US.d.ts +0 -20
  887. package/build/locales/zh-CN.d.ts +0 -20
  888. package/build/services/constants/commonConstant.d.ts +0 -6
  889. package/build/services/constants/dbConstant.d.ts +0 -4
  890. package/build/services/constants/iconConstant.d.ts +0 -4
  891. package/build/services/constants/locales/en-US.d.ts +0 -8
  892. package/build/services/constants/locales/zh-CN.d.ts +0 -8
  893. package/build/services/enums/eventEnum.d.ts +0 -10
  894. package/build/services/enums/storageEnum.d.ts +0 -10
  895. package/build/services/types/commonType.d.ts +0 -42
  896. package/build/services/utils/dbUtil.d.ts +0 -5
  897. package/build/services/utils/eventUtil.d.ts +0 -5
  898. package/build/services/utils/objectUtil.d.ts +0 -5
  899. package/build/services/utils/renderUtil.d.ts +0 -6
  900. package/build/services/utils/resourceUtil.d.ts +0 -12
  901. package/build/services/utils/storageUtil.d.ts +0 -5
@@ -0,0 +1,1115 @@
1
+ ## @ant-design/pro-components@2.8.2
2
+
3
+ `2024-11-14`
4
+
5
+ - fix(table): React does not recognize the `showCount` prop on a DOM element. (#8856). [#8856](https://github.com/ant-design/pro-components/pull/#8856) [@leshalv](https://github.com/leshalv)
6
+
7
+ ## @ant-design/pro-components@2.8.0
8
+
9
+ `2024-10-17`
10
+
11
+ - fix(components):修复 ts 定义导致列名获取不到的问题 (#8795). [#8795](https://github.com/ant-design/pro-components/pull/#8795) [@qnnp-me](https://github.com/qnnp-me)
12
+ - fix(form): field 为 checkbox 时设置了 fieldNames 后控制器报错的问题 React does not recognize the `fieldNames` prop on a DOM element (#8785). [#8785](https://github.com/ant-design/pro-components/pull/#8785) [@echoyl](https://github.com/echoyl)
13
+
14
+ ## @ant-design/pro-components@2.7.19
15
+
16
+ - fix(layout): downgrade path-to-regexp to version 8.0.0 (#8732)
17
+ - fix(layout): missing appListRender props (#8731) @Beeant
18
+
19
+ ## @ant-design/pro-components@2.7.18
20
+
21
+ - refactor(layout): update path-to-regexp to version 8.1.0 (#8725)
22
+
23
+ ## @ant-design/pro-components@2.7.16
24
+
25
+ `2024-09-05`
26
+
27
+ - feat(layout): add menuTextRender props. [1d65e22](https://github.com/ant-design/pro-components/commit/1d65e22)
28
+ - fix(form): props title is not assignable to type ReactNode (#8682). [#8682](https://github.com/ant-design/pro-components/pull/#8682) [@jiAng](https://github.com/jiAng)
29
+ - feat(Form): FormRef support forward nativeElement (#8632). [#8632](https://github.com/ant-design/pro-components/pull/#8632) [@红](https://github.com/红)
30
+ - fix(field): keyboard events of search input in LightSelect (#8629). [#8629](https://github.com/ant-design/pro-components/pull/#8629) [@Anzimu](https://github.com/Anzimu)
31
+
32
+ ## @ant-design/pro-components@2.7.15
33
+
34
+ `2024-08-05`
35
+
36
+ - fix(form): pass the OptionType type of ProFormSelect to the inner Select (#8568). [#8568](https://github.com/ant-design/pro-components/pull/#8568) [@dreammaker7](https://github.com/dreammaker7)
37
+ - fix(form): correct line height in list action (#8584). [#8584](https://github.com/ant-design/pro-components/pull/#8584) [@drizzlesconsin](https://github.com/drizzlesconsin)
38
+ - feat(form): export ProFormTreeSelectProps (#8589). [#8589](https://github.com/ant-design/pro-components/pull/#8589) [@fnoopv](https://github.com/fnoopv)
39
+ - fix(table): don't spread key to children (#8588). [#8588](https://github.com/ant-design/pro-components/pull/#8588) [@fnoopv](https://github.com/fnoopv)
40
+ - feat(field): add localizedFormat plugin to dayjs (#8582). [#8582](https://github.com/ant-design/pro-components/pull/#8582) [@lynette-li](https://github.com/lynette-li)
41
+
42
+ ## @ant-design/pro-components@2.7.12
43
+
44
+ `2024-07-15`
45
+
46
+ - fix(form): Digit support stringMode. [5075113](https://github.com/ant-design/pro-components/commit/5075113)
47
+ - fix(form): fix FormList size=small, icon is default size error. [d797fa7](https://github.com/ant-design/pro-components/commit/d797fa7)
48
+ - fix(table): fix canel editort no work error. [2b60fe5](https://github.com/ant-design/pro-components/commit/2b60fe5)
49
+ - fix(table): 解决 ProTable.editable.actionRender 无法获取最新 state 快照的问题(第二种改法) (#8549). [#8549](https://github.com/ant-design/pro-components/pull/#8549) [@ShuangxingYang](https://github.com/ShuangxingYang)
50
+
51
+ ## @ant-design/pro-components@2.7.11
52
+
53
+ `2024-06-21`
54
+
55
+ - fix(layout): PageHeader style and breadcrumb.routes prop (#8491). [#8491](https://github.com/ant-design/pro-components/pull/#8491) [@ChuChencheng](https://github.com/ChuChencheng)
56
+ - fix(form): formItem help render type (#8482). [#8482](https://github.com/ant-design/pro-components/pull/#8482) [@yunho1017](https://github.com/yunho1017)
57
+
58
+ ## @ant-design/pro-components@2.7.10
59
+
60
+ `2024-06-08`
61
+
62
+ - feat(form): add form item help render type (#8462). [#8462](https://github.com/ant-design/pro-components/pull/#8462) [@Yuno](https://github.com/Yuno)
63
+ - feat(form): the second field supports negative numbers (#8449). [#8449](https://github.com/ant-design/pro-components/pull/#8449) [@Geng](https://github.com/Geng)
64
+ - fix(form):ProFormTimePicker.RangePicker 获取时间区间,当 name 超过两层时,值为日期+时间格式. [0ce8bcd](https://github.com/ant-design/pro-components/commit/0ce8bcd)
65
+ - fix(form): 修复 openChange 打开时不触发问题 (#8403). [#8403](https://github.com/ant-design/pro-components/pull/#8403) [@beautiful-boyyy](https://github.com/beautiful-boyyy)
66
+
67
+ ## @ant-design/pro-components@2.7.3
68
+
69
+ `2024-04-19`
70
+
71
+ - feat(card): CheckCard support children cards (#8325). [#8325](https://github.com/chenshuai2144/pro-components/pull/#8325) [@陈帅](https://github.com/陈帅)
72
+
73
+ ## @ant-design/pro-components@2.7.0
74
+
75
+ `2024-03-27`
76
+
77
+ - fix(form): DrawerForm ssr 错误 : window is not defined (#8244). [#8244](https://github.com/ant-design/pro-components/pull/#8244) [@edram](https://github.com/edram)
78
+ - fix(table): densityLarger 中文简体和繁体国际化,文案问题修改 (#8241). [#8241](https://github.com/ant-design/pro-components/pull/#8241) [@lk0606](https://github.com/lk0606)
79
+ - feat(card): ProCard support colStyle. [bfcf8aa](https://github.com/ant-design/pro-components/commit/bfcf8aa)
80
+
81
+ ## @ant-design/pro-components@2.6.52
82
+
83
+ `2024-03-22`
84
+
85
+ - feat(form): ProFormFieldSet support funtion. [efbdab6](https://github.com/ant-design/pro-components/commit/efbdab6)
86
+
87
+ ## @ant-design/pro-components@2.6.51
88
+
89
+ `2024-03-20`
90
+
91
+ - feat(form): ProFormFieldSet support funtion. [efbdab6](https://github.com/ant-design/pro-components/commit/efbdab6)
92
+
93
+ ## @ant-design/pro-components@2.6.50
94
+
95
+ `2024-03-15`
96
+
97
+ - fix(components): remove deprecated tip props. [85de8a2](https://github.com/ant-design/pro-components/commit/85de8a2)
98
+ - fix(components): compatible 5.13.0 border. [ddf0c82](https://github.com/ant-design/pro-components/commit/ddf0c82)
99
+ - fix(form): PasswordStrength support morse options. [3ab9f11](https://github.com/ant-design/pro-components/commit/3ab9f11)
100
+ - fix(list): support add string line. [9ec366d](https://github.com/ant-design/pro-components/commit/9ec366d)
101
+ - feat(table): add click event for icon element (#8167). [#8167](https://github.com/ant-design/pro-components/pull/#8167) [@Been101](https://github.com/Been101)
102
+
103
+ ## @ant-design/pro-components@2.6.49
104
+
105
+ `2024-01-31`
106
+
107
+ - fix(layout): fix bgLayout no work error. [4a21fdf](https://github.com/ant-design/pro-components/commit/4a21fdf)
108
+ - fix(field): fieldProps.options not effective in ProFormSegmented (#8129). [#8129](https://github.com/ant-design/pro-components/pull/#8129) [@ChuChencheng](https://github.com/ChuChencheng)
109
+
110
+ ## @ant-design/pro-components@2.6.47
111
+
112
+ `2024-01-18`
113
+
114
+ - fix(layout): fix bgLayout no work error. [4a21fdf](https://github.com/ant-design/pro-components/commit/4a21fdf)
115
+ - fix(form): fix DrawerForm and ModalForm button error. [7bf4b30](https://github.com/ant-design/pro-components/commit/7bf4b30)
116
+ - fix(form): 修复默认情况下 sumbitter render 和 render 时候 dom 位置不一致的问题 (#8096). [#8096](https://github.com/ant-design/pro-components/pull/#8096) [@Shinji-Li](https://github.com/Shinji-Li)
117
+ - feat(table): column SettingTitle 内容太长时显示省略&弹出 tooltip (#8070). [#8070](https://github.com/ant-design/pro-components/pull/#8070) [@xlboy](https://github.com/xlboy)
118
+
119
+ ## @ant-design/pro-components@2.6.46
120
+
121
+ `2024-01-15`
122
+
123
+ - fix(layout): fix bgLayout no work error. [4a21fdf](https://github.com/ant-design/pro-components/commit/4a21fdf)
124
+ - fix(form): fix ProFormPage submit error. [2260b0d](https://github.com/ant-design/pro-components/commit/2260b0d)
125
+
126
+ ## @ant-design/pro-components@2.6.45
127
+
128
+ `2024-01-15`
129
+
130
+ - fix(layout): if bgImgStyleList is null ,no render bg-list dom. [0b26161](https://github.com/ant-design/pro-components/commit/0b26161)
131
+ - feat(form): 添加 FormItemRender 组件 (#8012). [#8012](https://github.com/ant-design/pro-components/pull/#8012) [@hans000](https://github.com/hans000)
132
+ - fix(form): fix ProFormDateRangePicker readonly no warp error. [b2276c3](https://github.com/ant-design/pro-components/commit/b2276c3)
133
+ - fix(form): 修复 dateFormatter 使用 string 类型提示错误 (#8029). [#8029](https://github.com/ant-design/pro-components/pull/#8029) [@yjhtry](https://github.com/yjhtry)
134
+ - fix(form): add playsInline props. [e1233d1](https://github.com/ant-design/pro-components/commit/e1233d1)
135
+ - fix(form): 修复特殊情况(不使用 ProFormMoney 使用 FieldMoney)下格式化错误的问题 (#8024). [#8024](https://github.com/ant-design/pro-components/pull/#8024) [@ONLY-yours](https://github.com/ONLY-yours)
136
+ - fix(form): 修复特殊情况下多出 moneySymbol 的问题 (#8004). [#8004](https://github.com/ant-design/pro-components/pull/#8004) [@ONLY-yours](https://github.com/ONLY-yours)
137
+ - chore(form): adjust `submitter` dom order (#7988). [#7988](https://github.com/ant-design/pro-components/pull/#7988) [@kungege](https://github.com/kungege)
138
+ - fix(form): remove extra `div` (#7987). [#7987](https://github.com/ant-design/pro-components/pull/#7987) [@kungege](https://github.com/kungege)
139
+ - fix(form): no set maxHeight. [64dc9f7](https://github.com/ant-design/pro-components/commit/64dc9f7)
140
+ - fix(list): 修复 ProFormList 透传部分属性到 FormItem 中导致的 react 警告 (#8051). [#8051](https://github.com/ant-design/pro-components/pull/#8051) [@SANmq](https://github.com/SANmq)
141
+ - fix(table): Record Creator re-render when props change (#8018). [#8018](https://github.com/ant-design/pro-components/pull/#8018) [@bartelemi](https://github.com/bartelemi)
142
+ - fix(table): 修复同时使用 defalutValue 和 Storage 存储的情况下,defalutValue 失效的问题 (#7979). [#7979](https://github.com/ant-design/pro-components/pull/#7979) [@ONLY-yours](https://github.com/ONLY-yours)
143
+
144
+ ## @ant-design/pro-components\@2.6.44
145
+
146
+ `2023-12-12`
147
+
148
+ - fix(layout): pass SiderProps to avatar render function (#7963). [#7963](https://github.com/ant-design/pro-components/pull/#7963) [@jaulz](https://github.com/jaulz)
149
+ - fix(layout): slove DensityIcon setting not work (#7942). [#7942](https://github.com/ant-design/pro-components/pull/#7942) [@ONLY-yours](https://github.com/ONLY-yours)
150
+ - fix(form): fix cjs require statement (#7952). [#7952](https://github.com/ant-design/pro-components/pull/#7952) [@shijistar](https://github.com/shijistar)
151
+ - fix(table): remove unless code (#7954). [#7954](https://github.com/ant-design/pro-components/pull/#7954) [@linxianxi](https://github.com/linxianxi)
152
+ - fix(table): DragSortTable --- Reorder columns by dragging and dropping columns will have issues when the table has fixed columns first (#7936). [#7936](https://github.com/ant-design/pro-components/pull/#7936) [@tanjianyong](https://github.com/tanjianyong)
153
+ - fix(Descriptions): fix emptytext alway set error. [85f1366](https://github.com/ant-design/pro-components/commit/85f1366)
154
+
155
+ ## @ant-design/pro-components\@2.6.42
156
+
157
+ `2023-11-20`
158
+
159
+ - feat(form): ProFormCaptcha onTiming callback (#7908). [#7908](https://github.com/ant-design/pro-components/pull/#7908) [@ModestFun](https://github.com/ModestFun)
160
+ - fix(table): slove editable wrapper by null initvalue (#7900). [#7900](https://github.com/ant-design/pro-components/pull/#7900) [@ONLY-yours](https://github.com/ONLY-yours)
161
+
162
+ ## @ant-design/pro-components\@2.6.41
163
+
164
+ `2023-11-15`
165
+
166
+ - fix(form): fix statusRender no work error. [a94f13e](https://github.com/ant-design/pro-components/commit/a94f13e)
167
+
168
+ ## @ant-design/pro-components\@2.6.40
169
+
170
+ `2023-11-15`
171
+
172
+ - fix(form): PasssWordStrength remove progressDom. [77099e4](https://github.com/ant-design/pro-components/commit/77099e4)
173
+
174
+ ## @ant-design/pro-components\@2.6.39
175
+
176
+ `2023-11-15`
177
+
178
+ - fix(form): PassWord getPercent support status. [7c1bf34](https://github.com/ant-design/pro-components/commit/7c1bf34)
179
+ - fix(form): PasssWord statusRender support value. [5abe403](https://github.com/ant-design/pro-components/commit/5abe403)
180
+ - fix(form): PasssWord use Progress step. [ee6beb6](https://github.com/ant-design/pro-components/commit/ee6beb6)
181
+
182
+ ## @ant-design/pro-components\@2.6.38
183
+
184
+ `2023-11-15`
185
+
186
+ - fix(form): Password support strengthText. [fcade9f](https://github.com/ant-design/pro-components/commit/fcade9f)
187
+
188
+ ## @ant-design/pro-components\@2.6.37
189
+
190
+ `2023-11-15`
191
+
192
+ - fix(form): Password support popoverProps. [39aa69b](https://github.com/ant-design/pro-components/commit/39aa69b)
193
+
194
+ ## @ant-design/pro-components\@2.6.36
195
+
196
+ `2023-11-14`
197
+
198
+ - feat (utils): FieldLabel 的 VALUE_MAX_LENGTH 可以通过参数传入 (#7845) (#7846). [#7845](https://github.com/ant-design/pro-components/pull/#7845) [@Rabbit](https://github.com/Rabbit)
199
+ - fix(layout): fix popupBg no work error. [ea20878](https://github.com/ant-design/pro-components/commit/ea20878)
200
+ - fix(layout): \[antd: Drawer] `bodyStyle` is deprecated waring (#7864). [#7864](https://github.com/ant-design/pro-components/pull/#7864) [@OXXD](https://github.com/OXXD)
201
+ - fix(layout): fix ProLayout did not match error. [cb330f9](https://github.com/ant-design/pro-components/commit/cb330f9)
202
+ - fix(form): fix ProFormMoney customSymbol no work error. [d0f30b8](https://github.com/ant-design/pro-components/commit/d0f30b8)
203
+ - fix (form): 修复 FieldOptions 中子元素换行问题 (#7856). [#7856](https://github.com/ant-design/pro-components/pull/#7856) [@zavven](https://github.com/zavven)
204
+ - style (list): 样式修复 (#7855). [#7855](https://github.com/ant-design/pro-components/pull/#7855) [@xliez](https://github.com/xliez)
205
+ - fix(table): less render function. [b314a37](https://github.com/ant-design/pro-components/commit/b314a37)
206
+ - fix(field): remove useDeepCompareMemo which causing renderFormItem not updated (#7887). [#7887](https://github.com/ant-design/pro-components/pull/#7887) [@mjss](https://github.com/mjss)
207
+ - fix (descriptions): fix ProTable 和 ProDescriptions render 行为不一样的问题. [227d302](https://github.com/ant-design/pro-components/commit/227d302)
208
+ - fix(descriptions): fix save and cancel are not aligned when using Form rules. [ebd1898](https://github.com/ant-design/pro-components/commit/ebd1898)
209
+
210
+ ## @ant-design/pro-components\@2.6.35
211
+
212
+ `2023-11-01`
213
+
214
+ - fix (layout): 修复 Layout 菜单 submenu 和 grounp 混用的时候收起错误. [d99a14d](https://github.com/ant-design/pro-components/commit/d99a14d)
215
+ - fix(form): fix addonWarpStyle no work error. [e5374b7](https://github.com/ant-design/pro-components/commit/e5374b7)
216
+ - fix (table): 修复不能单独展示 filter 的问题. [b77b5d4](https://github.com/ant-design/pro-components/commit/b77b5d4)
217
+
218
+ ## @ant-design/pro-components\@2.6.33
219
+
220
+ `2023-10-26`
221
+
222
+ - revert (layout): 回滚 Layout Menu 的获取逻辑 (#7819). [#7819](https://github.com/ant-design/pro-components/pull/#7819) [@ONLY-yours](https://github.com/ONLY-yours)
223
+ - feat(form):addonBefore warp support style. [5dd732e](https://github.com/ant-design/pro-components/commit/5dd732e)
224
+
225
+ ## @ant-design/pro-components\@2.6.32
226
+
227
+ `2023-10-24`
228
+
229
+ - fix(layout): fix layout menu align error. [24cf799](https://github.com/ant-design/pro-components/commit/24cf799)
230
+ - feat(table): expose `index` in `onDragSortEnd` (#7803). [#7803](https://github.com/ant-design/pro-components/pull/#7803) [@kungege](https://github.com/kungege)
231
+ - fix (card): 移除 stopPropagation,让事件继续冒泡 (#7785). [#7785](https://github.com/ant-design/pro-components/pull/#7785) [@xliez](https://github.com/xliez)
232
+
233
+ ## @ant-design/pro-components\@2.6.31
234
+
235
+ `2023-10-19`
236
+
237
+ - fix(layout): add `title` property to `ProHelp` component (#7795). [#7795](https://github.com/ant-design/pro-components/pull/#7795) [@yuetyeelo2855](https://github.com/yuetyeelo2855)
238
+ - fix (layout): Page Contianer 无 Header 边界情况调整 (#7779). [#7779](https://github.com/ant-design/pro-components/pull/#7779) [@ONLY-yours](https://github.com/ONLY-yours)
239
+ - fix (table): 修复 EditableProTable 实时编辑表格存在 name 属性且有分页的时候,渲染的数据总是为第一页 (#7794). [#7794](https://github.com/ant-design/pro-components/pull/#7794) [@xliez](https://github.com/xliez)
240
+
241
+ ## @ant-design/pro-components\@2.6.29
242
+
243
+ `2023-10-11`
244
+
245
+ - fix (layout): 修复 layout 组件在销毁时,删除了其他不相关的 SWR 缓存 (#7737). [#7737](https://github.com/ant-design/pro-components/pull/#7737) [@febear](https://github.com/febear)
246
+ - fix(form): fix loginPage style error. [80ace22](https://github.com/ant-design/pro-components/commit/80ace22)
247
+ - fix (form): 增加透传给 FormItem 的 style 和 className (#7769). [#7769](https://github.com/ant-design/pro-components/pull/#7769) [@ONLY-yours](https://github.com/ONLY-yours)
248
+ - feat (form): 优化密码只读模式展现形式 (#7736). [#7736](https://github.com/ant-design/pro-components/pull/#7736) [@gamemock](https://github.com/gamemock)
249
+ - fix (form): 首次同步到 url 参数时也执行 syncToUrl (#7741). [#7741](https://github.com/ant-design/pro-components/pull/#7741) [@ldc-37](https://github.com/ldc-37)
250
+
251
+ ## @ant-design/pro-components\@2.6.28
252
+
253
+ `2023-09-26`
254
+
255
+ - feat(form): LoginFormPage support backgroundVideoUrl. [6dc50b0](https://github.com/ant-design/pro-components/commit/6dc50b0)
256
+
257
+ ## @ant-design/pro-components\@2.6.27
258
+
259
+ `2023-09-26`
260
+
261
+ - fix(form): fix Captcha style no work error. [f31381d](https://github.com/ant-design/pro-components/commit/f31381d)
262
+
263
+ ## @ant-design/pro-components\@2.6.26
264
+
265
+ `2023-09-26`
266
+
267
+ - feat(form): support more style config. [b8c3954](https://github.com/ant-design/pro-components/commit/b8c3954)
268
+
269
+ ## @ant-design/pro-components\@2.6.25
270
+
271
+ `2023-09-26`
272
+
273
+ - fix(form): the `onChange` event in `ProFormUploadButton` has been triggered multiple times (#7732). [#7732](https://github.com/ant-design/pro-components/pull/#7732) [@kungege](https://github.com/kungege)
274
+ - feat(form): new LoginFormPage style (#7734). [#7734](https://github.com/ant-design/pro-components/pull/#7734) [@chenshuai2144](https://github.com/chenshuai2144)
275
+ - fix(table): unuse Tab.TabPanel (#7731). [#7731](https://github.com/ant-design/pro-components/pull/#7731) [@leshalv](https://github.com/leshalv)
276
+
277
+ ## @ant-design/pro-components\@2.6.24
278
+
279
+ `2023-09-25`
280
+
281
+ - fix(layout): fix colorBgMenuElevated no extends colorBgHeader error. [d915ed1](https://github.com/ant-design/pro-components/commit/d915ed1)
282
+ - fix (layout): 统一 PageContainer 计算到 styles.ts 中 (#7699). [#7699](https://github.com/ant-design/pro-components/pull/#7699) [@ONLY-yours](https://github.com/ONLY-yours)
283
+ - fix (Table): 修改 search transform 类型 (#7708). [#7708](https://github.com/ant-design/pro-components/pull/#7708) [@linxianxi](https://github.com/linxianxi)
284
+ - fix (table): 修复 editableFormRef hooks 未正确传递 deps 依赖导致 value 取值不是最新 (#7707). [#7707](https://github.com/ant-design/pro-components/pull/#7707) [@xliez](https://github.com/xliez)
285
+
286
+ ## @ant-design/pro-components\@2.6.23
287
+
288
+ `2023-09-20`
289
+
290
+ - fix(layout): WaterMark support dark theme. [0898061](https://github.com/ant-design/pro-components/commit/0898061)
291
+ - fix (table): 修复 ColumnSetting Tree 组件 title 过长导致强制换行的问题. [08ded31](https://github.com/ant-design/pro-components/commit/08ded31)
292
+
293
+ ## @ant-design/pro-components\@2.6.21
294
+
295
+ `2023-09-18`
296
+
297
+ - fix (layout): 默认宽度更改为 1152. [84cc927](https://github.com/ant-design/pro-components/commit/84cc927)
298
+ - fix(layout): deprecated warning (#7693). [#7693](https://github.com/ant-design/pro-components/pull/#7693) [@kungege](https://github.com/kungege)
299
+ - fix(table): less render function. [b3ef405](https://github.com/ant-design/pro-components/commit/b3ef405)
300
+
301
+ ## @ant-design/pro-components\@2.6.20
302
+
303
+ `2023-09-18`
304
+
305
+ - fix(layout): default set contentWidth=Fixed. [065524d](https://github.com/ant-design/pro-components/commit/065524d)
306
+ - fix (form): 修复 treeSelect 组件 bordered 属性无法生效 (#7687). [#7687](https://github.com/ant-design/pro-components/pull/#7687) [@badrylin](https://github.com/badrylin)
307
+ - fix(form): form list support readonly. [6407072](https://github.com/ant-design/pro-components/commit/6407072)
308
+ - fix(table): EditableProTable reset FormItem grid. [c53ecce](https://github.com/ant-design/pro-components/commit/c53ecce)
309
+ - fix(card): check card extra tag token fixed (#7669). [#7669](https://github.com/ant-design/pro-components/pull/#7669) [@ONLY-yours](https://github.com/ONLY-yours)
310
+
311
+ ## @ant-design/pro-components\@2.6.19
312
+
313
+ `2023-09-14`
314
+
315
+ - fix (layout): 默认宽度更改为 1152. [8fd2665](https://github.com/ant-design/pro-components/commit/8fd2665)
316
+ - feat (layout): 更新 PageContainer Token 样式和计算规则 (#7645). [#7645](https://github.com/ant-design/pro-components/pull/#7645) [@ONLY-yours](https://github.com/ONLY-yours)
317
+ - fix (form): 优化 PassWord 展现形式 (#7657). [#7657](https://github.com/ant-design/pro-components/pull/#7657) [@leshalv](https://github.com/leshalv)
318
+ - fix(card): check card extra tag token fixed (#7669). [#7669](https://github.com/ant-design/pro-components/pull/#7669) [@ONLY-yours](https://github.com/ONLY-yours)
319
+
320
+ ## @ant-design/pro-components\@2.6.18
321
+
322
+ `2023-09-07`
323
+
324
+ - fix(layout): fix click url no work error. [9252b14](https://github.com/ant-design/pro-components/commit/9252b14)
325
+ - fix (form): 修复 DrawerForm width 控制权重失效的问题 (#7642). [#7642](https://github.com/ant-design/pro-components/pull/#7642) [@ONLY-yours](https://github.com/ONLY-yours)
326
+
327
+ ## @ant-design/pro-components\@2.6.17
328
+
329
+ `2023-09-06`
330
+
331
+ - Prevented default and propagation of click events on appList items in the layout. Commit: [9b3cd65](https://github.com/ant-design/pro-components/commit/9b3cd65)
332
+ - Fixed an error in the layout where the menu title was not centered. Commit: [904a89f](https://github.com/ant-design/pro-components/commit/904a89f)
333
+ - Fixed the datepicker format in the form. Pull Request: [#7622](https://github.com/ant-design/pro-components/pull/#7622) by [@SummyGitHub](https://github.com/SummyGitHub)
334
+ - Updated the default value and documentation of the `resize` parameter in DrawerForm. Pull Request: [#7621](https://github.com/ant-design/pro-components/pull/#7621) by [@LengYXin](https://github.com/LengYXin)
335
+ - Added support for `colSize` in form dependencies. Pull Request: [#7611](https://github.com/ant-design/pro-components/pull/#7611) by [@yiyi17](https://github.com/yiyi17)
336
+ - Fixed an error where `marginBlockEnd` was not applying `marginLG`. Commit: [6e5f384](https://github.com/ant-design/pro-components/commit/6e5f384)
337
+ - Fixed an error where `containerClassName` and `containerStyle` were not working in formList. Commit: [7a2c9e0](https://github.com/ant-design/pro-components/commit/7a2c9e0)
338
+ - Fixed a typo and made a modification in `sortConfig` to prevent triggering request again on pagination. Pull Request: [#7616](https://github.com/ant-design/pro-components/pull/#7616) by [@caronchen](https://github.com/caronchen)
339
+
340
+ ## @ant-design/pro-components\@2.6.15
341
+
342
+ `2023-08-29`
343
+
344
+ - Resolved an issue with a potential infinite loop caused by `stringify`. Pull Request: [#7599](https://github.com/ant-design/pro-components/pull/#7599) by [@kiner-tang](https://github.com/kiner-tang). Unfortunately, the commit message or details of the fix are not provided.
345
+ - Added a new feature to the table component where columns can now have a `fixable` configuration. Pull Request: [#7586](https://github.com/ant-design/pro-components/pull/#7586) by [@LeoZeda](https://github.com/LeoZeda). No further details about the feature are provided.
346
+
347
+ ## @ant-design/pro-components\@2.6.14
348
+
349
+ `2023-08-28`
350
+
351
+ - Fixed an error in the layout where the menuItem icon was not aligned correctly. Commit: [62f1bb5](https://github.com/ant-design/pro-components/commit/62f1bb5)
352
+ - Fixed a styling issue with the sider token in the layout. Pull Request: [#7574](https://github.com/ant-design/pro-components/pull/#7574) by [@daifuyang](https://github.com/daifuyang)
353
+ - Updated the usage of `useBreakpoint` utility in the layout. Commits: [af522ee](https://github.com/ant-design/pro-components/commit/af522ee), [3a174d1](https://github.com/ant-design/pro-components/commit/3a174d1)
354
+ - Fixed an inconsistency in the textarea's read-only state styling. Pull Request: [#7579](https://github.com/ant-design/pro-components/pull/#7579) by [@HoPGoldy](https://github.com/HoPGoldy)
355
+ - Fixed an error in the form where `FormItem` had a null name but still had data. Pull Request: [#7583](https://github.com/ant-design/pro-components/pull/#7583) by [@chenshuai2144](https://github.com/chenshuai2144)
356
+ - Fixed an issue where the generic parameter `ValueTypeWithFieldPropsBase` was not working correctly. Pull Request: [#7582](https://github.com/ant-design/pro-components/pull/#7582) by [@ldc-37](https://github.com/ldc-37)
357
+ - Added support for `emptyText` in the descriptions component. Commit: [d5ccc34](https://github.com/ant-design/pro-components/commit/d5ccc34)
358
+ - Fixed an error where the label was not working when the `valueType` was null in the descriptions component. Commit: [8779112](https://github.com/ant-design/pro-components/commit/8779112)
359
+
360
+ ## @ant-design/pro-components\@2.6.13
361
+
362
+ `2023-08-17`
363
+
364
+ - fix(layout): pageContainer token not work (#7524). [#7524](https://github.com/ant-design/pro-components/pull/#7524) [@ONLY-yours](https://github.com/ONLY-yours)
365
+ - fix(layout): fix ProFormSelect unsupport title error. [d41b1a7](https://github.com/ant-design/pro-components/commit/d41b1a7)
366
+ - fix(layout): if src=null, un render avatar. [c721e07](https://github.com/ant-design/pro-components/commit/c721e07)
367
+ - fix(layout): collapsed use vertical mode. [e82170f](https://github.com/ant-design/pro-components/commit/e82170f)
368
+ - feat (form): 修复 field color style width:100% 导致的样式不美观问题 & ts 定义 (#7510). [#7510](https://github.com/ant-design/pro-components/pull/#7510) [@LengYXin](https://github.com/LengYXin)
369
+ - feat(table): custom `toolbar` icon (#7521). [#7521](https://github.com/ant-design/pro-components/pull/#7521) [@kungege](https://github.com/kungege)
370
+ - fix(Descriptions): fix use key props error. [c8987bb](https://github.com/ant-design/pro-components/commit/c8987bb)
371
+
372
+ ## @ant-design/pro-components\@2.6.12
373
+
374
+ `2023-08-10`
375
+
376
+ - fix (form): 修复 compact warning (#7496). [#7496](https://github.com/ant-design/pro-components/pull/#7496) [@xliez](https://github.com/xliez)
377
+ - feat (form): transform 支持深合并 (#7494). [#7494](https://github.com/ant-design/pro-components/pull/#7494) [@xliez](https://github.com/xliez)
378
+ - fix (form): 修复 transform 方法与预期不符 (#7486). [#7486](https://github.com/ant-design/pro-components/pull/#7486) [@xliez](https://github.com/xliez)
379
+ - fix (form): 表单项配置 request 并且自定义 renderFormItem 时,没有透传 options 和 loading (#7457). [#7457](https://github.com/ant-design/pro-components/pull/#7457) [@Yang-yibu](https://github.com/Yang-yibu)
380
+ - fix (table): DragSortTable 每次 render 执行时 Table DOM 会销毁重建新的 DOM (#7490). [#7490](https://github.com/ant-design/pro-components/pull/#7490) [@xliez](https://github.com/xliez)
381
+ - feat (field): 调整 field color 为 antd 新的 ColorPicker (#7403). [#7403](https://github.com/ant-design/pro-components/pull/#7403) [@LengYXin](https://github.com/LengYXin)
382
+
383
+ ## @ant-design/pro-components\@2.6.11
384
+
385
+ `2023-08-04`
386
+
387
+ - fix(layout): fix menu item no align error. [450a823](https://github.com/ant-design/pro-components/commit/450a823)
388
+ - fix(form): form field support mobile width best. [56ccc63](https://github.com/ant-design/pro-components/commit/56ccc63)
389
+ - fix(form): update `ReturnType<SearchConvertKeyFn>` (#7462). [#7462](https://github.com/ant-design/pro-components/pull/#7462) [@q1uxu](https://github.com/q1uxu)
390
+ - fix(table): restrict movement to only the vertical axis.. [5a8f9fb](https://github.com/ant-design/pro-components/commit/5a8f9fb)
391
+
392
+ ## @ant-design/pro-components\@2.6.10
393
+
394
+ `2023-07-31`
395
+
396
+ - fix(layout): fix col size error. [749a303](https://github.com/ant-design/pro-components/commit/749a303)
397
+
398
+ ## @ant-design/pro-components\@2.6.9
399
+
400
+ `2023-07-31`
401
+
402
+ - feat(components): hebrew support (#7435). [#7435](https://github.com/ant-design/pro-components/pull/#7435) [@edenHechtArbox](https://github.com/edenHechtArbox)
403
+ - fix(layout): fix pop menu style error. [36bfccf](https://github.com/ant-design/pro-components/commit/36bfccf)
404
+ - fix(layout): fix colorBgMenuItemHover no work error. [3efdd46](https://github.com/ant-design/pro-components/commit/3efdd46)
405
+ - fix(layout): fix footer links hover no work error. [a2bdb21](https://github.com/ant-design/pro-components/commit/a2bdb21)
406
+ - feat(form): StepForm added layoutRender props (#7431). [#7431](https://github.com/ant-design/pro-components/pull/#7431) [@xXAvoraXx](https://github.com/xXAvoraXx)
407
+
408
+ ## @ant-design/pro-components\@2.6.8
409
+
410
+ `2023-07-24`
411
+
412
+ - fix(layout): fix submenu popup text is center error. [7191501](https://github.com/ant-design/pro-components/commit/7191501)
413
+ - fix(form): StepForm support moblie width. [6eee22f](https://github.com/ant-design/pro-components/commit/6eee22f)
414
+ - fix(form): ProFormSet support lightProps. [0593fe1](https://github.com/ant-design/pro-components/commit/0593fe1)
415
+ - fix(form): ProForm support readonly. [e466f4e](https://github.com/ant-design/pro-components/commit/e466f4e)
416
+ - fix(form): fix transform no set false error. [f547ed0](https://github.com/ant-design/pro-components/commit/f547ed0)
417
+
418
+ ## @ant-design/pro-components\@2.6.7
419
+
420
+ `2023-07-19`
421
+
422
+ - fix(layout): fix sider collpse no work error. [e17dee6](https://github.com/ant-design/pro-components/commit/e17dee6)
423
+
424
+ ## @ant-design/pro-components\@2.6.6
425
+
426
+ `2023-07-19`
427
+
428
+ - fix(layout): disable SiderContext when Sider other dom. [4d53446](https://github.com/ant-design/pro-components/commit/4d53446)
429
+ - fix(layout): fix FooterToolBar width error. [54d9afe](https://github.com/ant-design/pro-components/commit/54d9afe)
430
+ - fix(layout): Layout siderMenu delete getContainer = false. [ed0c88b](https://github.com/ant-design/pro-components/commit/ed0c88b)
431
+ - fix(layout): menuItem support disableTooltip. [84b79c8](https://github.com/ant-design/pro-components/commit/84b79c8)
432
+ - fix (form): 修复当 LightFilter 折叠模式 icon 样式问题 (#7388). [#7388](https://github.com/ant-design/pro-components/pull/#7388) [@datoou](https://github.com/datoou)
433
+ - feat(form): drawer support resizable (#7288). [#7288](https://github.com/ant-design/pro-components/pull/#7288) [@natashaamin](https://github.com/natashaamin)
434
+ - fix(form): fix jsonCode bgColor no work in dart mode. [03927db](https://github.com/ant-design/pro-components/commit/03927db)
435
+ - fix(form): use 'Space.Compact' instead 'Input.Group'. [89e1fb4](https://github.com/ant-design/pro-components/commit/89e1fb4)
436
+ - fix(form): LightFilter default set popupMatchSelectWidth=false. [27667aa](https://github.com/ant-design/pro-components/commit/27667aa)
437
+ - fix(form): select use options. [59d5e72](https://github.com/ant-design/pro-components/commit/59d5e72)
438
+ - feat(form): StepsForm support multifile StepForm. [ccc35f5](https://github.com/ant-design/pro-components/commit/ccc35f5)
439
+ - fix(form): Fix the issue of the ProFormMoney component causing duplicate currency symbols when using trigger=onBlur. [bc94215](https://github.com/ant-design/pro-components/commit/bc94215)
440
+ - fix(form): ModalForm and DrawerForm support params type. [76470d8](https://github.com/ant-design/pro-components/commit/76470d8)
441
+ - fix(form): support OptionType types. [189f933](https://github.com/ant-design/pro-components/commit/189f933)
442
+ - fix(form): CheckBox readonly mode support warp. [646f4a7](https://github.com/ant-design/pro-components/commit/646f4a7)
443
+ - fix(list): ProList card support on checked. [2a0257e](https://github.com/ant-design/pro-components/commit/2a0257e)
444
+ - fix(table): params change awaly reload fetch. [b147a16](https://github.com/ant-design/pro-components/commit/b147a16)
445
+ - feat(table): ProTable support optionsRender. [8b56b6a](https://github.com/ant-design/pro-components/commit/8b56b6a)
446
+ - fix(table): fix renderFormItem render twice render time. [c3b8ffd](https://github.com/ant-design/pro-components/commit/c3b8ffd)
447
+ - fix(table): Protable support EXPAND_COLUMN and SELECTION_COLUMN. [3454347](https://github.com/ant-design/pro-components/commit/3454347)
448
+ - fix(table): when checkable=false, no render all select boxs. [5421e41](https://github.com/ant-design/pro-components/commit/5421e41)
449
+ - fix(table): Fix the columnsSetting styling issue in controlling column state when the table header is too long. [5b746b3](https://github.com/ant-design/pro-components/commit/5b746b3)
450
+ - fix(table): Fix the issue where align="center" is not working. [db6fc65](https://github.com/ant-design/pro-components/commit/db6fc65)
451
+ - fix(table): Fix the issue of actionref not being synchronized. [2160fb8](https://github.com/ant-design/pro-components/commit/2160fb8)
452
+ - fix(table): dataSource support string list. [7b81b4c](https://github.com/ant-design/pro-components/commit/7b81b4c)
453
+ - fix(descriptions): contentStyle add minwidth=0. [9087253](https://github.com/ant-design/pro-components/commit/9087253)
454
+
455
+ ## @ant-design/pro-components\@2.6.5
456
+
457
+ `2023-07-14`
458
+
459
+ - fix(layout): Fix the issue of excessively long titles not being truncated.. [0e67775](https://github.com/ant-design/pro-components/commit/0e67775)
460
+ - fix(layout): fix abnormal animation playback.. [854ce2b](https://github.com/ant-design/pro-components/commit/854ce2b)
461
+ - fix(form): Fix the display style of the switch. [8cdeda4](https://github.com/ant-design/pro-components/commit/8cdeda4)
462
+ - fix(form): InlineErrorFormItemPopover support radio and checkbox. [8c6ede6](https://github.com/ant-design/pro-components/commit/8c6ede6)
463
+ - fix(table): export editor pro table props (#7330). [#7330](https://github.com/ant-design/pro-components/pull/#7330) [@ONLY-yours](https://github.com/ONLY-yours)
464
+ - fix(card): change checkCard checked token (#7352). [#7352](https://github.com/ant-design/pro-components/pull/#7352) [@ONLY-yours](https://github.com/ONLY-yours)
465
+ - fix(card): remove onChange stopPropagation. [5f4bb48](https://github.com/ant-design/pro-components/commit/5f4bb48)
466
+
467
+ ## @ant-design/pro-components\@2.6.4
468
+
469
+ `2023-07-04`
470
+
471
+ - fix(layout): support antd\@5.6.4. [a6ee785](https://github.com/ant-design/pro-components/commit/a6ee785)
472
+ - feat (layout): 添加 appListRender api (#7286). [#7286](https://github.com/ant-design/pro-components/pull/#7286) [@sansheng741](https://github.com/sansheng741)
473
+ - feat (form): ProForm 支持第二个泛型参数 (#7318). [#7318](https://github.com/ant-design/pro-components/pull/#7318) [@q1uxu](https://github.com/q1uxu)
474
+ - fix (form): 修复当 value 为搜索条件 option 显示不出来的问题 (#7283). [#7283](https://github.com/ant-design/pro-components/pull/#7283) [@ldwonday](https://github.com/ldwonday)
475
+ - feat(table): add support of custom render serch form (#7307). [#7307](https://github.com/ant-design/pro-components/pull/#7307) [@mashirozx](https://github.com/mashirozx)
476
+
477
+ ## @ant-design/pro-components\@2.6.3
478
+
479
+ `2023-06-30`
480
+
481
+ - fix(layout): submenu close tooltip. [a550039](https://github.com/ant-design/pro-components/commit/a550039)
482
+ - fix(form): fix block when QueryFilter set grid. [393fbe8](https://github.com/ant-design/pro-components/commit/393fbe8)
483
+ - fix(form): fix className is undefined error. [a27d453](https://github.com/ant-design/pro-components/commit/a27d453)
484
+ - fix(form): fix DigitRange un support theme error. [70ad3bc](https://github.com/ant-design/pro-components/commit/70ad3bc)
485
+ - fix(form): formRef.current change will update formitem list. [5e977db](https://github.com/ant-design/pro-components/commit/5e977db)
486
+ - fix(table): fix filter and sort is null no trigger change error. [8c444d7](https://github.com/ant-design/pro-components/commit/8c444d7)
487
+ - fix(card): close onClick and onchange Propagation. [c86532f](https://github.com/ant-design/pro-components/commit/c86532f)
488
+
489
+ ## @ant-design/pro-components\@2.6.2
490
+
491
+ `2023-06-19`
492
+
493
+ - fix(form): fix inline form reset value for destoy. [dc9420a](https://github.com/ant-design/pro-components/commit/dc9420a)
494
+
495
+ ## @ant-design/pro-components\@2.6.0
496
+
497
+ `2023-06-19`
498
+
499
+ - fix(form): alway use shouldUpdate for json. [7933961](https://github.com/ant-design/pro-components/commit/7933961)
500
+ - fix(form): onInit use ProFormInstance. [ad537a5](https://github.com/ant-design/pro-components/commit/ad537a5)
501
+ - fix(table): add Form.Item shouldUpdate function. [db3224b](https://github.com/ant-design/pro-components/commit/db3224b)
502
+ - feat (field): LightFilter 中使用 ProFormSelect 的两个 bug 修复 (#7225) (#7233). [#7225](https://github.com/ant-design/pro-components/pull/#7225) [@Rabbit](https://github.com/Rabbit)
503
+
504
+ ## @ant-design/pro-components\@2.5.11
505
+
506
+ `2023-06-16`
507
+
508
+ - fix(layout): fix ErrorBoundary types error. [5bb5be1](https://github.com/ant-design/pro-components/commit/5bb5be1)
509
+ - fix(table): fix editableFormRef no work error. [0cd2e4d](https://github.com/ant-design/pro-components/commit/0cd2e4d)
510
+
511
+ ## @ant-design/pro-components\@2.5.10
512
+
513
+ `2023-06-15`
514
+
515
+ - fix(form): fix table render less error. [dcd3888](https://github.com/ant-design/pro-components/commit/dcd3888)
516
+
517
+ ## @ant-design/pro-components\@2.5.9
518
+
519
+ `2023-06-14`
520
+
521
+ - fix(form): fix shouldUpdate no work error. [ff8bbef](https://github.com/ant-design/pro-components/commit/ff8bbef)
522
+
523
+ ## @ant-design/pro-components\@2.5.7
524
+
525
+ `2023-06-12`
526
+
527
+ - fix (components): fix useToken no supoort antd\@4 的问题. [58b96e9](https://github.com/ant-design/pro-components/commit/58b96e9)
528
+
529
+ ## @ant-design/pro-components\@2.5.6
530
+
531
+ `2023-06-12`
532
+
533
+ - fix(components): remove hashid empty. [b46bb80](https://github.com/ant-design/pro-components/commit/b46bb80)
534
+ - fix(layout): support antd\@5.6 token. [28291fe](https://github.com/ant-design/pro-components/commit/28291fe)
535
+ - fix (form): 修复 ProTable 的 columns.proFieldProps 不生效 (#7205). [#7205](https://github.com/ant-design/pro-components/pull/#7205) [@fanck0605](https://github.com/fanck0605)
536
+ - fix(form): ColorPicker use antd style-n. [8d3cd04](https://github.com/ant-design/pro-components/commit/8d3cd04)
537
+ - fix(form): ProFormColorPicker support disable. [973ac28](https://github.com/ant-design/pro-components/commit/973ac28)
538
+ - fix(form): fix set addonAfter valuePropName will no work error. [8072666](https://github.com/ant-design/pro-components/commit/8072666)
539
+ - fix (form): 修复 fn \[curK] 为函数时,参数 undefined 导致的报错 (#7163). [#7163](https://github.com/ant-design/pro-components/pull/#7163) [@Soulwail](https://github.com/Soulwail)
540
+ - fix (table): 修复 Editable 的 record.id 使用 index,且 index 为 0 时,导致无法添加新行 (#7176). [#7176](https://github.com/ant-design/pro-components/pull/#7176) [@Soulwail](https://github.com/Soulwail)
541
+ - fix(card): fix ProCard small header style error. [17ccf69](https://github.com/ant-design/pro-components/commit/17ccf69)
542
+
543
+ ## @ant-design/pro-components\@2.5.5
544
+
545
+ `2023-06-02`
546
+
547
+ - fix(form): fix Cascader light mode no work error. [4ce56dc](https://github.com/ant-design/pro-components/commit/4ce56dc)
548
+
549
+ ## @ant-design/pro-components\@2.5.3
550
+
551
+ `2023-05-30`
552
+
553
+ - chore: 修复 ts 定义缺失的问题。
554
+
555
+ ## @ant-design/pro-components\@2.5.2
556
+
557
+ `2023-05-30`
558
+
559
+ - fix(form): fix \_transformArray is null will throw error. [ba1d9e9](https://github.com/ant-design/pro-components/commit/ba1d9e9)
560
+
561
+ ## @ant-design/pro-components\@2.5.0
562
+
563
+ `2023-05-29`
564
+
565
+ - fix (layout): 修复 collapsedShowTitle 样式错误问题 (#7098). [#7098](https://github.com/ant-design/pro-components/pull/#7098) [@ONLY-yours](https://github.com/ONLY-yours)
566
+ - fix (form): 解决 ProFormList 多重嵌套 ProFormList 下的表单组件未调用 transform 方法问题 (#7138). [#7138](https://github.com/ant-design/pro-components/pull/#7138) [@kaneruan](https://github.com/kaneruan)
567
+ - fix(form): use oninit reset formRef. [1deedf2](https://github.com/ant-design/pro-components/commit/1deedf2)
568
+ - fix(form): close icon style (#7091). [#7091](https://github.com/ant-design/pro-components/pull/#7091) [@kungege](https://github.com/kungege)
569
+ - fix(list): Extend ProListMeta\<T> type with `renderFormItem` (#7136). [#7136](https://github.com/ant-design/pro-components/pull/#7136) [@bartelemi](https://github.com/bartelemi)
570
+ - fix (list): 修复 ProFormList 使用 className 无效问题 (#7128). [#7128](https://github.com/ant-design/pro-components/pull/#7128) [@leshalv](https://github.com/leshalv)
571
+ - fix(list): `onChange ` prop don't work (#7129). [#7129](https://github.com/ant-design/pro-components/pull/#7129) [@kungege](https://github.com/kungege)
572
+ - fix(table): Edit to make defaultValue become higher priority to reset column setting (#7113). [#7113](https://github.com/ant-design/pro-components/pull/#7113) [@ianccy](https://github.com/ianccy)
573
+ - feat(table): use @dnd-kit (#7131). [#7131](https://github.com/ant-design/pro-components/pull/#7131) [@chenshuai2144](https://github.com/chenshuai2144)
574
+ - fix(table): component EditableProTable actionDeleteRef function Single row status Locked (#7124). [#7124](https://github.com/ant-design/pro-components/pull/#7124) [@varown](https://github.com/varown)
575
+
576
+ ## @ant-design/pro-components\@2.4.15
577
+
578
+ `2023-05-15`
579
+
580
+ - fix(layout): support fix header scroll use new color (#7071). [#7071](https://github.com/ant-design/pro-components/pull/#7071) [@chenshuai2144](https://github.com/chenshuai2144)
581
+ - fix(layout): set layout headermenu height to 40. [f50cfd2](https://github.com/ant-design/pro-components/commit/f50cfd2)
582
+ - fix (form): 修复 form 自定义组件过多卡顿的问题 (#7018). [#7018](https://github.com/ant-design/pro-components/pull/#7018) [@ldwonday](https://github.com/ldwonday)
583
+ - fix (form):ProFormList 支持更多类型 (#7051). [#7051](https://github.com/ant-design/pro-components/pull/#7051) [@leshalv](https://github.com/leshalv)
584
+ - feat(form): rewirte light date form (#7052). [#7052](https://github.com/ant-design/pro-components/pull/#7052) [@chenshuai2144](https://github.com/chenshuai2144)
585
+ - fix (form): 当设置了 digit 的 stringMode 为 true,但是组件没有返回 string (#7031). [#7031](https://github.com/ant-design/pro-components/pull/#7031) [@ldwonday](https://github.com/ldwonday)
586
+
587
+ ## @ant-design/pro-components\@2.4.14
588
+
589
+ `2023-05-08`
590
+
591
+ - fix(layout): fix menu classname no work error. [c64e81c](https://github.com/ant-design/pro-components/commit/c64e81c)
592
+
593
+ ## @ant-design/pro-components\@2.4.13
594
+
595
+ `2023-05-08`
596
+
597
+ - fix(layout): use best className slove token error. [8090248](https://github.com/ant-design/pro-components/commit/8090248)
598
+ - fix(form): fix ModalForm ref less error. [06721c3](https://github.com/ant-design/pro-components/commit/06721c3)
599
+ - fix(table): table should support dependencies (#7019). [#7019](https://github.com/ant-design/pro-components/pull/#7019) [@chenshuai2144](https://github.com/chenshuai2144)
600
+
601
+ ## @ant-design/pro-components\@2.4.11
602
+
603
+ `2023-05-04`
604
+
605
+ - fix(layout): paddingBlockStart set value=8. [6eac5b6](https://github.com/ant-design/pro-components/commit/6eac5b6)
606
+ - feat(layout): help add extraRender api (#6982). [#6982](https://github.com/ant-design/pro-components/pull/#6982) [@ONLY-yours](https://github.com/ONLY-yours)
607
+ - fix (table): 修复 useLocaleFilter 方法未判断存在 children 的情况 (#6987). [#6987](https://github.com/ant-design/pro-components/pull/#6987) [@zhou0322-lab](https://github.com/zhou0322-lab)
608
+
609
+ ## @ant-design/pro-components\@2.4.9
610
+
611
+ `2023-04-26`
612
+
613
+ - fix(layout): up layout mix css level. [18e8157](https://github.com/ant-design/pro-components/commit/18e8157)
614
+
615
+ ## @ant-design/pro-components\@2.4.5
616
+
617
+ `2023-04-25`
618
+
619
+ - fix(components): Optimize theme type (#6895). [#6895](https://github.com/ant-design/pro-components/pull/#6895) [@thinkasany](https://github.com/thinkasany)
620
+ - fix (components): 修复在浏览器环境下 hashed 必为 false 的 bug (#6900). [#6900](https://github.com/ant-design/pro-components/pull/#6900) [@clf17222592](https://github.com/clf17222592)
621
+ - feat(layout): ProHelp support navigationSwitch. [2406457](https://github.com/ant-design/pro-components/commit/2406457)
622
+ - feat(layout): ProHelp support more feature (#6970). [#6970](https://github.com/ant-design/pro-components/pull/#6970) [@chenshuai2144](https://github.com/chenshuai2144)
623
+ - feat(form): add some DateRangePicker components (#6850). [#6850](https://github.com/ant-design/pro-components/pull/#6850) [@lzm0x219](https://github.com/lzm0x219)
624
+ - fix(form): fix parsed NaN value not display in readonly mode (#6932). [#6932](https://github.com/ant-design/pro-components/pull/#6932) [@xliez](https://github.com/xliez)
625
+ - fix (form): 修复 SchemaFormRef 的问题 (#6943). [#6943](https://github.com/ant-design/pro-components/pull/#6943) [@ldwonday](https://github.com/ldwonday)
626
+ - fix(form): chage step form first button judge (#6915). [#6915](https://github.com/ant-design/pro-components/pull/#6915) [@ONLY-yours](https://github.com/ONLY-yours)
627
+ - 🐛 fix(form): Optimize render type assertion (#6886). [#6886](https://github.com/ant-design/pro-components/pull/#6886) [@thinkasany](https://github.com/thinkasany)
628
+ - fix (form): 兼容 antd\@4 ProFormTimePicker format 异常问题 (#6863). [#6863](https://github.com/ant-design/pro-components/pull/#6863) [@powerfulyang](https://github.com/powerfulyang)
629
+ - fix (form): 修复 form 重复渲染的 bug (#6874). [#6874](https://github.com/ant-design/pro-components/pull/#6874) [@ldwonday](https://github.com/ldwonday)
630
+ - fix(list): add pro-utils to package.json deps (#6894). [#6894](https://github.com/ant-design/pro-components/pull/#6894) [@Andreybest](https://github.com/Andreybest)
631
+ - fix (table): 修复当 loading 为对象时,pro-table 无法接管 loading 状态,必须手动控制的问题 (#6962). [#6962](https://github.com/ant-design/pro-components/pull/#6962) [@clf17222592](https://github.com/clf17222592)
632
+ - fix(table): new fetch function (#6923). [#6923](https://github.com/ant-design/pro-components/pull/#6923) [@chenshuai2144](https://github.com/chenshuai2144)
633
+ - fix (card): 修复 title 为数字 0 时不展示的问题 (#6884). [#6884](https://github.com/ant-design/pro-components/pull/#6884) [@fliu2476](https://github.com/fliu2476)
634
+
635
+ ## @ant-design/pro-components\@2.4.3
636
+
637
+ `2023-03-27`
638
+
639
+ - feat(components): Add translation for Slovak and Czech (#6802). [#6802](https://github.com/ant-design/pro-components/pull/#6802) [@craftedsro](https://github.com/craftedsro)
640
+ - fix(layout):fix drawer bgColor error. [907bead](https://github.com/ant-design/pro-components/commit/907bead)
641
+ - fix(layout): remove ProLayout defaultProps. [7d1891f](https://github.com/ant-design/pro-components/commit/7d1891f)
642
+ - fix(layout): slove menu content inlineflex & child not 100% problem (#6819). [#6819](https://github.com/ant-design/pro-components/pull/#6819) [@ONLY-yours](https://github.com/ONLY-yours)
643
+ - fix(layout): Provide a hack method to bypass the breadcrumb error check of antd and remove the error message.. [bcb32b9](https://github.com/ant-design/pro-components/commit/bcb32b9)
644
+ - feat(form): introduce proFieldProps in BaseFormProps and pass it to all Fields with the lowest priority (#6847). [#6847](https://github.com/ant-design/pro-components/pull/#6847) [@shijistar](https://github.com/shijistar)
645
+ - feat (table): ProTable 的 toolbar.tabs 和 toolbar.menu 配置下增加 defaultActiveKey 选项 (#6818). [#6818](https://github.com/ant-design/pro-components/pull/#6818) [@hans000](https://github.com/hans000)
646
+ - fix(card): remove reset fontFamily. [b33dfef](https://github.com/ant-design/pro-components/commit/b33dfef)
647
+ - fix(card): fix StatisticCard value style error. [5de24b7](https://github.com/ant-design/pro-components/commit/5de24b7)
648
+ - fix(descriptions): fix Descriptions action no center error. [11c1166](https://github.com/ant-design/pro-components/commit/11c1166)
649
+
650
+ ## @ant-design/pro-components\@2.4.2
651
+
652
+ `2023-03-14`
653
+
654
+ - feat(form): QueryFilter support submitterColSpanProps. [11dbc0c](https://github.com/ant-design/pro-components/commit/11dbc0c)
655
+ - fix(form): fix AdvancedSearch demo no work error. [226fbac](https://github.com/ant-design/pro-components/commit/226fbac)
656
+ - fix(form): fix collapse button unuse colorPrimary txt. [55b8aab](https://github.com/ant-design/pro-components/commit/55b8aab)
657
+ - fix(list): fix usePaginationArgs and useSelection args error. [fe331b9](https://github.com/ant-design/pro-components/commit/fe331b9)
658
+
659
+ ## @ant-design/pro-components\@2.4.1
660
+
661
+ `2023-03-13`
662
+
663
+ - fix(layout): fix sider menu height. [e8963cc](https://github.com/ant-design/pro-components/commit/e8963cc)
664
+ - fix(layout): remove procard use antd card. [02e1830](https://github.com/ant-design/pro-components/commit/02e1830)
665
+ - fix(form): Select request not trigger twice when keywords not change … (#6717). [#6717](https://github.com/ant-design/pro-components/pull/#6717) [@zd5043039119](https://github.com/zd5043039119)
666
+
667
+ ## @ant-design/pro-components\@2.4.0
668
+
669
+ `2023-03-09`
670
+
671
+ - fix(layout): fix menu item icon style error (#6745). [#6745](https://github.com/ant-design/pro-components/pull/#6745) [@chenshuai2144](https://github.com/chenshuai2144)
672
+ - fix(layout): fix colorBgPageContainerFixed no use colorBgElevated error. [712bc82](https://github.com/ant-design/pro-components/commit/712bc82)
673
+ - fix(layout): fix sider menu Drawer onCollapse no work error. [7d638f4](https://github.com/ant-design/pro-components/commit/7d638f4)
674
+ - fix(form): Select request not trigger twice when keywords not change … (#6717). [#6717](https://github.com/ant-design/pro-components/pull/#6717) [@zd5043039119](https://github.com/zd5043039119)
675
+
676
+ ## @ant-design/pro-components\@2.3.59
677
+
678
+ `2023-03-08`
679
+
680
+ - feat(components): support antd\@5.4.0 (#6730). [#6730](https://github.com/ant-design/pro-components/pull/#6730) [@chenshuai2144](https://github.com/chenshuai2144)
681
+ - chore(layout):change == to === (#6735). [#6735](https://github.com/ant-design/pro-components/pull/#6735) [@dingxyang](https://github.com/dingxyang)
682
+ - fix (layout): siderMenu 中的 subMenu 在 dark 模式下显示不正常 (#6721). [#6721](https://github.com/ant-design/pro-components/pull/#6721) [@crazyurus](https://github.com/crazyurus)
683
+ - fix(layout): avatarProps not work when actionsRender is falsy (#6695). [#6695](https://github.com/ant-design/pro-components/pull/#6695) [@xliez](https://github.com/xliez)
684
+ - feat(layout): add ProHelp components (#6654). [#6654](https://github.com/ant-design/pro-components/pull/#6654) [@chenshuai2144](https://github.com/chenshuai2144)
685
+ - fix (form): 修复 label 属性没有传值的问题 (#6728). [#6728](https://github.com/ant-design/pro-components/pull/#6728) [@hans000](https://github.com/hans000)
686
+ - fix (form): lightSelect 默认转小写 #6692 (#6696). [#6696](https://github.com/ant-design/pro-components/pull/#6696) [@XueMeijing](https://github.com/XueMeijing)
687
+ - fix (table): 修复 maxLength 选项配置为 0 时逻辑不符合预期的问题 (#6719). [#6719](https://github.com/ant-design/pro-components/pull/#6719) [@hans000](https://github.com/hans000)
688
+
689
+ ## @ant-design/pro-components\@2.4.16
690
+
691
+ `2023-05-18`
692
+
693
+ - fix (layout): 修复因为 menu 不存在 icon 时候,收起的 tooltip 会多展示一个字的问题 (#7083). [#7083](https://github.com/ant-design/pro-components/pull/#7083) [@ONLY-yours](https://github.com/ONLY-yours)
694
+ - feat (layout): ProSchemaValueEnumMap 类型 key 增加对 boolean 的支持 (#7081). [#7081](https://github.com/ant-design/pro-components/pull/#7081) [@hans000](https://github.com/hans000)
695
+ - fix(form): LightFilter icon add color transition. [becd94e](https://github.com/ant-design/pro-components/commit/becd94e)
696
+ - fix(form): fix LightFilter close icon style error. [38e5cd1](https://github.com/ant-design/pro-components/commit/38e5cd1)
697
+
698
+ # @ant-design/pro-components\@2.3.58
699
+
700
+ `2023-02-28`
701
+
702
+ - fix(layout): menuHeaderRender not work (#6676). [#6676](https://github.com/ant-design/pro-components/pull/#6676) [@elrrrrrrr](https://github.com/elrrrrrrr)
703
+ - fix(layout): if layout's avatarProps doesn't exist, the actionsRender props should also take effect (#6642). [#6642](https://github.com/ant-design/pro-components/pull/#6642) [@BooYeu](https://github.com/BooYeu)
704
+ - 💥 feat (layout): layout 提供在菜单为空时隐藏 Sider 的功能 (#6643). [#6643](https://github.com/ant-design/pro-components/pull/#6643) [@wtchaos](https://github.com/wtchaos)
705
+ - feat(form): ProFormTreeSelect support fetchDataOnSearch (#6638). [#6638](https://github.com/ant-design/pro-components/pull/#6638) [@Eliot00](https://github.com/Eliot00)
706
+ - fix(form): textarea read-mode error (#6632). [#6632](https://github.com/ant-design/pro-components/pull/#6632) [@jaluik](https://github.com/jaluik)
707
+ - fix (table): selectedRows 拿不到最新的值 (#6671). [#6671](https://github.com/ant-design/pro-components/pull/#6671) [@hans000](https://github.com/hans000)
708
+ - fix (table): ProTable 组件 toolbar menu 属性为 tab 时抖动问题 (#6584) (#6641). [#6584](https://github.com/ant-design/pro-components/pull/#6584) [@chencc](https://github.com/chencc)
709
+
710
+ ## @ant-design/pro-components\@2.3.57
711
+
712
+ `2023-02-17`
713
+
714
+ - fix(layout): fix rightContentRender alway work error. [796ab12](https://github.com/ant-design/pro-components/commit/796ab12)
715
+
716
+ ## @ant-design/pro-components\@2.3.56
717
+
718
+ `2023-02-17`
719
+
720
+ - fix(components): src alway use es path. [4a13142](https://github.com/ant-design/pro-components/commit/4a13142)
721
+
722
+ ## @ant-design/pro-components\@2.3.54
723
+
724
+ `2023-02-10`
725
+
726
+ - fix(components): fix lib has es path error. [157f1f1](https://github.com/ant-design/pro-components/commit/157f1f1)
727
+
728
+ ## @ant-design/pro-components\@2.3.53
729
+
730
+ `2023-02-08`
731
+
732
+ - fix(components): remove useLayoutEffect to useEffect. [19ccf1c](https://github.com/ant-design/pro-components/commit/19ccf1c)
733
+ - fix(layout): use logical properties and values instead margin. [a3c1b31](https://github.com/ant-design/pro-components/commit/a3c1b31)
734
+ - fix (layout): 修复因为 Sider 折叠导致菜单展开状态丢失的 bug (#6472). [#6472](https://github.com/ant-design/pro-components/pull/#6472) [@wtchaos](https://github.com/wtchaos)
735
+ - feat (layout): pro-layout top 模式下支持 headerTitleRender (#6560). [#6560](https://github.com/ant-design/pro-components/pull/#6560) [@Hahet](https://github.com/Hahet)
736
+ - fix(layout): Group-list demo fix (#6512). [#6512](https://github.com/ant-design/pro-components/pull/#6512) [@chengaway](https://github.com/chengaway)
737
+ - fix (layout): ItemClick 自定义点击事件,回传触发 Popover 元素 ref (#6504). [#6504](https://github.com/ant-design/pro-components/pull/#6504) [@chengaway](https://github.com/chengaway)
738
+ - fix(form): FieldLabel support i18n #6578(#6578). [#6578](https://github.com/ant-design/pro-components/pull/#6578) [@kungege](https://github.com/kungege)
739
+ - fix(form): dataindex should take precedence over key. [8249ccd](https://github.com/ant-design/pro-components/commit/8249ccd)
740
+ - fix(form): slove form list label defalut mode show problem (#6549). [#6549](https://github.com/ant-design/pro-components/pull/#6549) [@ONLY-yours](https://github.com/ONLY-yours)
741
+ - fix (form): 修复了 textarea 在只读模式下的对齐和换行的问题 (#6524). [#6524](https://github.com/ant-design/pro-components/pull/#6524) [@WilenChen](https://github.com/WilenChen)
742
+ - fix (form): debounceTime 在 SchemaForm 上配置不生效的问题 (#6557). [#6557](https://github.com/ant-design/pro-components/pull/#6557) [@ldwonday](https://github.com/ldwonday)
743
+ - fix(table): fix keyframes style no work error. [122484e](https://github.com/ant-design/pro-components/commit/122484e)
744
+ - fix (table): 列设置里面拖动列改变顺序会导致重新发布按钮出现多次 (#6565). [#6565](https://github.com/ant-design/pro-components/pull/#6565) [@nocodeempire](https://github.com/nocodeempire)
745
+ - fix (table): 删除 EditableTable 的 console.log (#6526). [#6526](https://github.com/ant-design/pro-components/pull/#6526) [@sushi-su](https://github.com/sushi-su)
746
+ - fix(descriptions): fix fetch error no retry fetch error. [9158e71](https://github.com/ant-design/pro-components/commit/9158e71)
747
+
748
+ ## @ant-design/pro-components\@2.3.52
749
+
750
+ `2023-01-10`
751
+
752
+ - fix(layout): replace marginTop to marigin-block-start. [5d0f58f](https://github.com/ant-design/pro-components/commit/5d0f58f)
753
+ - fix(layout): fix ProLayout pageTitleRender not overriding document title (#6492). [#6492](https://github.com/ant-design/pro-components/pull/#6492) [@whyour](https://github.com/whyour)
754
+ - fix(layout): open sider from right on rtl direction (#6491). [#6491](https://github.com/ant-design/pro-components/pull/#6491) [@3hson](https://github.com/3hson)
755
+ - fix (layout): 修复分组逻辑部分代码 (#6488). [#6488](https://github.com/ant-design/pro-components/pull/#6488) [@chengaway](https://github.com/chengaway)
756
+ - fix(layout): support click mask close. [06a8920](https://github.com/ant-design/pro-components/commit/06a8920)
757
+ - fix (layout): 调整菜单收缩时 margin 与展开时 一致 (#6481). [#6481](https://github.com/ant-design/pro-components/pull/#6481) [@hihuangwei](https://github.com/hihuangwei)
758
+ - fix(form): fix formref no work error in BetaSchemaForm. [7b9bbdd](https://github.com/ant-design/pro-components/commit/7b9bbdd)
759
+ - fix (Table): 列配置子项 disable 时,无法拖动调整顺序 (#6476). [#6476](https://github.com/ant-design/pro-components/pull/#6476) [@chiaweilee](https://github.com/chiaweilee)
760
+ - fix (Table): 列配置子项 disable 时,“固定” 按钮点击无效 (#6475). [#6475](https://github.com/ant-design/pro-components/pull/#6475) [@chiaweilee](https://github.com/chiaweilee)
761
+ - fix (Table): 列配置点击 “列展示” 全选操作时,顺序排列和 disable 状态异常 (#6477). [#6477](https://github.com/ant-design/pro-components/pull/#6477) [@chiaweilee](https://github.com/chiaweilee)
762
+ - fix(table): fix cancelEditable will reset value error. [40fba50](https://github.com/ant-design/pro-components/commit/40fba50)
763
+
764
+ ## @ant-design/pro-components\@2.3.51
765
+
766
+ `2023-01-06`
767
+
768
+ - feat (layout): 修复 prolayout 传入自定义 prefixCls 时样式异常 (#6464). [#6464](https://github.com/ant-design/pro-components/pull/#6464) [@Hahet](https://github.com/Hahet)
769
+ - feat(layout): remove unuse deps. [9cac437](https://github.com/ant-design/pro-components/commit/9cac437)
770
+ - fix(form): fix ProFormDigitRange label formart style. [6250094](https://github.com/ant-design/pro-components/commit/6250094)
771
+
772
+ ## @ant-design/pro-components\@2.3.50
773
+
774
+ `2023-01-04`
775
+
776
+ - fix(layout): fix colorBgMenuItemCollapsedElevated no work error. [6aa0d2c](https://github.com/ant-design/pro-components/commit/6aa0d2c)
777
+ - fix (layout): 调整 margin ,与 Table 组件分页 margin 一致 (#6438). [#6438](https://github.com/ant-design/pro-components/pull/#6438) [@hihuangwei](https://github.com/hihuangwei)
778
+ - fix (layout): Layout 分组逻辑调整 (#6451). [#6451](https://github.com/ant-design/pro-components/pull/#6451) [@chengaway](https://github.com/chengaway)
779
+ - fix (layout): 修复 AppsLogoComponents 样式警告 (#6440). [#6440](https://github.com/ant-design/pro-components/pull/#6440) [@leshalv](https://github.com/leshalv)
780
+ - fix (form): Light FilterightWrapper 当中清除功能的默认行为,使得 LightFilter 当中的 Checkbox 可以正常地被清除功能重置 (#6450). [#6450](https://github.com/ant-design/pro-components/pull/#6450) [@Leo-captain](https://github.com/Leo-captain)
781
+ - fix(table): fix columnsState.defaultValue no work error. [2b9a283](https://github.com/ant-design/pro-components/commit/2b9a283)
782
+
783
+ ## @ant-design/pro-components\@2.3.48
784
+
785
+ `2022-12-29`
786
+
787
+ - feat (layout): Layout 新增 跨站点导航 分组形式 (#6431). [#6431](https://github.com/ant-design/pro-components/pull/#6431) [@chengaway](https://github.com/chengaway)
788
+ - fix (layout): 修复 extraContent 在 md 尺寸不位于 content 右侧的 bug (#6389). [#6389](https://github.com/ant-design/pro-components/pull/#6389) [@edram](https://github.com/edram)
789
+ - feat (layout): sider token 增加 colorBgElevated (#6384). [#6384](https://github.com/ant-design/pro-components/pull/#6384) [@sushi-su](https://github.com/sushi-su)
790
+ - fix(form): treeSelect do not default reset to empty string. [387d2d7](https://github.com/ant-design/pro-components/commit/387d2d7)
791
+ - fix(form): do not remove collapsed dom. [769177f](https://github.com/ant-design/pro-components/commit/769177f)
792
+ - fix(form): `ProFormList` style does not work (#6398). [#6398](https://github.com/ant-design/pro-components/pull/#6398) [@kungege](https://github.com/kungege)
793
+ - fix (form): 优化 checkbox 在 hashPriority=high 不生效问题 (#6400). [#6400](https://github.com/ant-design/pro-components/pull/#6400) [@leshalv](https://github.com/leshalv)
794
+ - fix(list): fix card list style error (#6436). [#6436](https://github.com/ant-design/pro-components/pull/#6436) [@chenshuai2144](https://github.com/chenshuai2144)
795
+ - fix(table): no render onSearch will SearchProps has onSearch. [a1383e2](https://github.com/ant-design/pro-components/commit/a1383e2)
796
+ - fix(table): use flex replace Space (#6426). [#6426](https://github.com/ant-design/pro-components/pull/#6426) [@chenshuai2144](https://github.com/chenshuai2144)
797
+ - fix(table): fix childrenColumnName is null error. [0fb584c](https://github.com/ant-design/pro-components/commit/0fb584c)
798
+ - fix (table): 轻量筛选替换查询表单,将 padding 调为 8px 更为统一美观 (#6423). [#6423](https://github.com/ant-design/pro-components/pull/#6423) [@hihuangwei](https://github.com/hihuangwei)
799
+ - fix(card): slove nested table background color was cover by pro-card (#6410). [#6410](https://github.com/ant-design/pro-components/pull/#6410) [@ONLY-yours](https://github.com/ONLY-yours)
800
+ - fix(card): disable & checked style fixed (#6414). [#6414](https://github.com/ant-design/pro-components/pull/#6414) [@ONLY-yours](https://github.com/ONLY-yours)
801
+
802
+ ## @ant-design/pro-components\@2.3.47
803
+
804
+ `2022-12-13`
805
+
806
+ - feat(components): bump swr from 1.x to 2.x (#6367). [#6367](https://github.com/ant-design/pro-components/pull/#6367) [@sushi-su](https://github.com/sushi-su)
807
+
808
+ ## @ant-design/pro-components\@2.3.43
809
+
810
+ `2022-12-08`
811
+
812
+ - fix(layout): no set default colorPrimary. [f85103e](https://github.com/ant-design/pro-components/commit/f85103e)
813
+
814
+ ## @ant-design/pro-components\@2.3.42
815
+
816
+ `2022-12-08`
817
+
818
+ - fix(layout): support configprovide darkAlgorithm. [dabf05e](https://github.com/ant-design/pro-components/commit/dabf05e)
819
+ - fix (form): 修复 ProFormSelect 在 LightFilter 中自定义过滤无效 (#6341). [#6341](https://github.com/ant-design/pro-components/pull/#6341) [@SeaHaiWorld](https://github.com/SeaHaiWorld)
820
+ - fix(table): fix table extra classname break (#6334). [#6334](https://github.com/ant-design/pro-components/pull/#6334) [@ONLY-yours](https://github.com/ONLY-yours)
821
+
822
+ ## @ant-design/pro-components\@2.3.40
823
+
824
+ `2022-12-05`
825
+
826
+ - fix (layout): 修复 PageContainer 设置为 fixedHeader,内容滚动的时候 Title 抖动问题 (#6330). [#6330](https://github.com/ant-design/pro-components/pull/#6330) [@lhzhou180606](https://github.com/lhzhou180606)
827
+ - fix(layout): fix bgColor token no work error. [bad0f2f](https://github.com/ant-design/pro-components/commit/bad0f2f)
828
+ - fix (form): 修复 SearchSelect 组件在设置了 showSearch 和 多选模式下,当搜索并选中后,搜索的文字没有清空的问题 (#6302). [#6302](https://github.com/ant-design/pro-components/pull/#6302) [@catmiao8](https://github.com/catmiao8)
829
+ - fix (table): 修复 table 使用后端分页时(频繁变化 dataSource 场景)多选功能 selectedRow 缓存丢失 (#6314). [#6314](https://github.com/ant-design/pro-components/pull/#6314) [@YingJiangHui](https://github.com/YingJiangHui)
830
+ - fix(card): fix card style error. [60ac49c](https://github.com/ant-design/pro-components/commit/60ac49c)
831
+
832
+ ## @ant-design/pro-components\@2.3.37
833
+
834
+ `2022-12-01`
835
+
836
+ - fix(table): fix table style error. [3fbfddd](https://github.com/ant-design/pro-components/commit/3fbfddd)
837
+
838
+ ## @ant-design/pro-components\@2.3.36
839
+
840
+ `2022-11-30`
841
+
842
+ - fix(layout): fix collapsedshowtitle style error. [e4dc580](https://github.com/ant-design/pro-components/commit/e4dc580)
843
+ - fix (layout): 修复 Footer `<a>` 标签单独使用时带有下划线问题 (#6300). [#6300](https://github.com/ant-design/pro-components/pull/#6300) [@leshalv](https://github.com/leshalv)
844
+ - feat(layout): support stylish. [60c0b54](https://github.com/ant-design/pro-components/commit/60c0b54)
845
+ - fix(layout): better theme gen style. [fcbc182](https://github.com/ant-design/pro-components/commit/fcbc182)
846
+ - fix(layout): update drawer style. [eb7ace8](https://github.com/ant-design/pro-components/commit/eb7ace8)
847
+ - feat(layout): fix dark style no work error. [3e06527](https://github.com/ant-design/pro-components/commit/3e06527)
848
+ - fix(form): new antd version use items props. [9f520bf](https://github.com/ant-design/pro-components/commit/9f520bf)
849
+ - fix(form): formRef repeats the assignment (#6278). [#6278](https://github.com/ant-design/pro-components/pull/#6278) [@caijf](https://github.com/caijf)
850
+ - fix (table): Sortable 组件提取到外部防止不必要的页面重建 (#6246). [#6246](https://github.com/ant-design/pro-components/pull/#6246) [@yqz0203](https://github.com/yqz0203)
851
+ - fix (descriptions): 修复 ProDescriptions 编辑带有校验情况下,样式排版问题 (#6254). [#6254](https://github.com/ant-design/pro-components/pull/#6254) [@leshalv](https://github.com/leshalv)
852
+
853
+ ## @ant-design/pro-components\@2.3.34
854
+
855
+ `2022-11-17`
856
+
857
+ - chore(form): update @ant-design/pro-form peer dependency "@types/lodash.merge" to be optional (#6220). [#6220](https://github.com/ant-design/pro-components/pull/#6220) [@lzm0x219](https://github.com/lzm0x219)
858
+ - fix (form): 只读模式下的 ProFormSelect 应该支持 wrap (#6235). [#6235](https://github.com/ant-design/pro-components/pull/#6235) [@kiner-tang](https://github.com/kiner-tang)
859
+ - fix(table): fix nested table style (#6228). [#6228](https://github.com/ant-design/pro-components/pull/#6228) [@ONLY-yours](https://github.com/ONLY-yours)
860
+
861
+ ## @ant-design/pro-components\@2.3.33
862
+
863
+ `2022-11-15`
864
+
865
+ - fix (form): 修复 checkbox 在 ant design 5 vertical 布局失效问题 (#6214). [#6214](https://github.com/ant-design/pro-components/pull/#6214) [@leshalv](https://github.com/leshalv)
866
+ - fix(table): change css cache error. [a5bc4cb](https://github.com/ant-design/pro-components/commit/a5bc4cb)
867
+ - fix(Descriptions): fix ellipsis type error. [d051be5](https://github.com/ant-design/pro-components/commit/d051be5)
868
+
869
+ ## @ant-design/pro-components\@2.3.32
870
+
871
+ `2022-11-14`
872
+
873
+ - fix (form): 修复 checkbox 在 ant design 5 vertical 布局失效问题 (#6214). [#6214](https://github.com/ant-design/pro-components/pull/#6214) [@leshalv](https://github.com/leshalv)
874
+
875
+ ## @ant-design/pro-components\@2.3.31
876
+
877
+ `2022-11-14`
878
+
879
+ - fix (layout): 在内容定宽下,TopNavHeader 的样式问题 (#6182). [#6182](https://github.com/ant-design/pro-components/pull/#6182) [@hqwlkj](https://github.com/hqwlkj)
880
+ - fix(form): reset ProFormList when new form. [b9ba5d0](https://github.com/ant-design/pro-components/commit/b9ba5d0)
881
+ - fix (table): 修复 DragSortTable 的 dataSource 值变更后未生效 (#6207). [#6207](https://github.com/ant-design/pro-components/pull/#6207) [@acg-developer](https://github.com/acg-developer)
882
+ - fix (table): 修复拖拽排序表格使用数据源时数据源改变后未更新数据问题 (#6211). [#6211](https://github.com/ant-design/pro-components/pull/#6211) [@kiner-tang](https://github.com/kiner-tang)
883
+ - fix(table): column not working correctly after reset (#6159). [#6159](https://github.com/ant-design/pro-components/pull/#6159) [@Zeng-J](https://github.com/Zeng-J)
884
+
885
+ ## @ant-design/pro-components\@2.3.30
886
+
887
+ `2022-11-08`
888
+
889
+ - fix(utils): alway check process is undefined. [a861967](https://github.com/ant-design/pro-components/commit/a861967)
890
+ - fix(table): update table alert style. [1302a90](https://github.com/ant-design/pro-components/commit/1302a90)
891
+
892
+ ## @ant-design/pro-components\@2.3.29
893
+
894
+ `2022-11-07`
895
+
896
+ - fix(utils): do not use process?.env?.ANTD_VERSION. [a295b3d](https://github.com/ant-design/pro-components/commit/a295b3d)
897
+ - fix (table): 兼容 ellipsis 不想显示 Tooltip #6158 (#6160). [#6160](https://github.com/ant-design/pro-components/pull/#6160) [@DerrickTel](https://github.com/DerrickTel)
898
+
899
+ ## @ant-design/pro-components\@2.3.28
900
+
901
+ `2022-11-03`
902
+
903
+ - fix(layout): PageContainer support childrenContentStyle. [2a487cf](https://github.com/ant-design/pro-components/commit/2a487cf)
904
+ - fix(layout): fix sub menu padding style. [324e083](https://github.com/ant-design/pro-components/commit/324e083)
905
+ - feat(table): add new api actionRef.saveEditable (#6081). [#6081](https://github.com/ant-design/pro-components/pull/#6081) [@shijistar](https://github.com/shijistar)
906
+
907
+ ## @ant-design/pro-components\@2.3.24
908
+
909
+ `2022-10-24`
910
+
911
+ - fix(table): column drag order error when move upward (#6113). [#6113](https://github.com/ant-design/pro-components/pull/#6113) [@xiawenqi](https://github.com/xiawenqi)
912
+ - fix(layout): auto open hashid (#6114). [#6114](https://github.com/ant-design/pro-components/pull/#6114) [@chenshuai2144](https://github.com/chenshuai2144)
913
+
914
+ ## @ant-design/pro-components\@2.3.21
915
+
916
+ `2022-10-21`
917
+
918
+ - fix(layout): support dynamic token set (#6106). [#6106](https://github.com/ant-design/pro-components/pull/#6106) [@chenshuai2144](https://github.com/chenshuai2144)
919
+ - fix(layout): fix listtool bar style error. [820a5b7](https://github.com/ant-design/pro-components/commit/820a5b7)
920
+ - fix (layout): 默认开启 hash. [47f30c9](https://github.com/ant-design/pro-components/commit/47f30c9)
921
+ - fix(form): ProFormDigit value will fixed when not set precision(#6101). [#6101](https://github.com/ant-design/pro-components/pull/#6101) [@ONLY-yours](https://github.com/ONLY-yours)
922
+ - fix (table): 修复 inline 类型样式丢失问题 (#6092). [#6092](https://github.com/ant-design/pro-components/pull/#6092) [@sushi-su](https://github.com/sushi-su)
923
+ - fix(table): use ellipsis type exported from antd/rc-table (#6105). [#6105](https://github.com/ant-design/pro-components/pull/#6105) [@Jungzl](https://github.com/Jungzl)
924
+ - fix(table): fix table select rows style error. [dff31f3](https://github.com/ant-design/pro-components/commit/dff31f3)
925
+ - fix(card): static style fixed (#6100). [#6100](https://github.com/ant-design/pro-components/pull/#6100) [@ONLY-yours](https://github.com/ONLY-yours)
926
+
927
+ ## @ant-design/pro-components\@2.3.20
928
+
929
+ `2022-10-19`
930
+
931
+ - fix (Layout): 修复 PageContainer 设置 fixedHeader 属性后,样式 ant-pro-page-container-warp 未生效问题 (#6078). [#6078](https://github.com/ant-design/pro-components/pull/#6078) [@hqwlkj](https://github.com/hqwlkj)
932
+ - fix(layout): add ghost classname. [7df07ba](https://github.com/ant-design/pro-components/commit/7df07ba)
933
+ - fix(layout): alway set pageheader is ghost. [e06d908](https://github.com/ant-design/pro-components/commit/e06d908)
934
+ - fix (form): 金额格式化支持负数形式展示 (#6080). [#6080](https://github.com/ant-design/pro-components/pull/#6080) [@kiner-tang](https://github.com/kiner-tang)
935
+ - fix(form): fix intl no work error. [ecfc9d6](https://github.com/ant-design/pro-components/commit/ecfc9d6)
936
+ - fix(card): fix card hover error style. [7ab8e7e](https://github.com/ant-design/pro-components/commit/7ab8e7e)
937
+
938
+ ## @ant-design/pro-components\@2.3.18
939
+
940
+ `2022-10-14`
941
+
942
+ - fix(utils): remove act import. [fc76519](https://github.com/ant-design/pro-components/commit/fc76519)
943
+ - fix(layout): AppsLogo stopPropagation. [2235842](https://github.com/ant-design/pro-components/commit/2235842)
944
+ - fix(layout): Support for multiple PageContainers to be used together. [7a9aad7](https://github.com/ant-design/pro-components/commit/7a9aad7)
945
+ - fix(layout): use img height. [224b573](https://github.com/ant-design/pro-components/commit/224b573)
946
+ - fix(layout): support hover token. [8eb4545](https://github.com/ant-design/pro-components/commit/8eb4545)
947
+ - fix (form): ProFormList 组件 required 时需要提供加星号样式 (#5995). [#5995](https://github.com/ant-design/pro-components/pull/#5995) [@Zeng-J](https://github.com/Zeng-J)
948
+ - fix(form): Fixed a bug with nested FormList. [2100074](https://github.com/ant-design/pro-components/commit/2100074)
949
+ - fix(table): support tooltip=false, close ellipsis tooltip. [1c6c7ef](https://github.com/ant-design/pro-components/commit/1c6c7ef)
950
+ - fix(table): table search style fixed (#6069). [#6069](https://github.com/ant-design/pro-components/pull/#6069) [@ONLY-yours](https://github.com/ONLY-yours)
951
+
952
+ ## @ant-design/pro-components\@2.3.17
953
+
954
+ `2022-10-13`
955
+
956
+ - fix (layout): 优化页面滑动的问题. [367c667](https://github.com/ant-design/pro-components/commit/367c667)
957
+ - fix(layout): use inline style. [827349d](https://github.com/ant-design/pro-components/commit/827349d)
958
+ - fix(form): fix filter dropdown not close (#6067). [#6067](https://github.com/ant-design/pro-components/pull/#6067) [@ONLY-yours](https://github.com/ONLY-yours)
959
+ - fix(table): fix no has key when maxsize call error. [657e971](https://github.com/ant-design/pro-components/commit/657e971)
960
+ - fix(table): card add hashid. [b98c387](https://github.com/ant-design/pro-components/commit/b98c387)
961
+
962
+ ## @ant-design/pro-components\@2.3.15
963
+
964
+ `2022-10-11`
965
+
966
+ - fix(layout): fix PageContainer token no rerender error. [5611a16](https://github.com/ant-design/pro-components/commit/5611a16)
967
+ - fix(form): ProFormDependency support T. [7b0c85d](https://github.com/ant-design/pro-components/commit/7b0c85d)
968
+ - fix(form): fix key and visible use. [0ebd3db](https://github.com/ant-design/pro-components/commit/0ebd3db)
969
+ - fix(field): use open replace visible. [8dcf66a](https://github.com/ant-design/pro-components/commit/8dcf66a)
970
+
971
+ ## @ant-design/pro-components\@2.3.14
972
+
973
+ `2022-10-10`
974
+
975
+ - fix(layout): support pageContainer.token. [0abcbd4](https://github.com/ant-design/pro-components/commit/0abcbd4)
976
+ - fix(layout): support pageContainer.token. [bd6e110](https://github.com/ant-design/pro-components/commit/bd6e110)
977
+ - fix(layout): fix pageheader style overwrite. [5b1a774](https://github.com/ant-design/pro-components/commit/5b1a774)
978
+ - fix(layout): fix layout margin style error. [3f9e8b5](https://github.com/ant-design/pro-components/commit/3f9e8b5)
979
+ - fix(layout): fix back icon style error. [1ecdad4](https://github.com/ant-design/pro-components/commit/1ecdad4)
980
+ - fix(form): fix showSearch title no work error. [96da32d](https://github.com/ant-design/pro-components/commit/96da32d)
981
+ - fix(form): remove redundant code (#6030). [#6030](https://github.com/ant-design/pro-components/pull/#6030) [@kiner-tang](https://github.com/kiner-tang)
982
+ - fix (form): 修复 ListItem 自定义样式和样式名称不生效的 BUG (#5982). [#5982](https://github.com/ant-design/pro-components/pull/#5982) [@hqwlkj](https://github.com/hqwlkj)
983
+ - fix (form): 解决 moneySymbol 设置为 false 时金额格式化异常问题 (#6012). [#6012](https://github.com/ant-design/pro-components/pull/#6012) [@kiner-tang](https://github.com/kiner-tang)
984
+ - fix (form): 修复 ModalForm 和 DrawerForm 关闭过程中表单内容闪现初始值的问题 (#6009). [#6009](https://github.com/ant-design/pro-components/pull/#6009) [@kiner-tang](https://github.com/kiner-tang)
985
+ - fix (table):DragSortTable - 拖动排序表格设置 rowClassName 无效问题 (#6038). [#6038](https://github.com/ant-design/pro-components/pull/#6038) [@hqwlkj](https://github.com/hqwlkj)
986
+
987
+ ## @ant-design/pro-components\@2.3.13
988
+
989
+ `2022-09-28`
990
+
991
+ - fix(components): provide support getPrefixCls. [b3da61f](https://github.com/ant-design/pro-components/commit/b3da61f)
992
+ - fix(form): fix visible props warning (#5937). [#5937](https://github.com/ant-design/pro-components/pull/#5937) [@zzcbnz](https://github.com/zzcbnz)
993
+ - fix (table): 解决 CheckCard 与 Table 联用时 CheckCard 样式丢失问题 (#5980). [#5980](https://github.com/ant-design/pro-components/pull/#5980) [@kiner-tang](https://github.com/kiner-tang)
994
+
995
+ ## @ant-design/pro-components\@2.3.12
996
+
997
+ `2022-09-22`
998
+
999
+ - fix(layout): awlay use route.children. [44b6fe1](https://github.com/ant-design/pro-components/commit/44b6fe1)
1000
+ - fix(form): export FormListContext (#5968). [#5968](https://github.com/ant-design/pro-components/pull/#5968) [@houkunlin](https://github.com/houkunlin)
1001
+ - fix (list): 修复类型问题:未将 RecordType 的泛型传入 meta 中 (#5962). [#5962](https://github.com/ant-design/pro-components/pull/#5962) [@SoraYama](https://github.com/SoraYama)
1002
+ - fix(table): option button alignment problem (#5959). [#5959](https://github.com/ant-design/pro-components/pull/#5959) [@GoodbyeNJN](https://github.com/GoodbyeNJN)
1003
+ - fix (table): useEditableArray 修复无法正确添加深度大于 1 的子记录 (#5949). [#5949](https://github.com/ant-design/pro-components/pull/#5949) [@zd5043039119](https://github.com/zd5043039119)
1004
+ - fix(field): fix ProFormSegmented style (#5969). [#5969](https://github.com/ant-design/pro-components/pull/#5969) [@DBvc](https://github.com/DBvc)
1005
+ - fix(card): card key props warning (#5941). [#5941](https://github.com/ant-design/pro-components/pull/#5941) [@zzcbnz](https://github.com/zzcbnz)
1006
+
1007
+ ## @ant-design/pro-components\@2.3.10
1008
+
1009
+ `2022-09-21`
1010
+
1011
+ - fix(layout): fix colorPrimary change no rerender style error. [be6ab65](https://github.com/ant-design/pro-components/commit/be6ab65)
1012
+ - feat(layout): remove routers types. [6c54c7e](https://github.com/ant-design/pro-components/commit/6c54c7e)
1013
+ - fix(table): use better style import funtion. [8ce8d5a](https://github.com/ant-design/pro-components/commit/8ce8d5a)
1014
+ - fix(card): fixed col width digit lost (#5958). [#5958](https://github.com/ant-design/pro-components/pull/#5958) [@ONLY-yours](https://github.com/ONLY-yours)
1015
+
1016
+ ## @ant-design/pro-components\@2.3.9
1017
+
1018
+ `2022-09-16`
1019
+
1020
+ - fix(table): fix dateformat no work error. [c30c107](https://github.com/ant-design/pro-components/commit/c30c107)
1021
+
1022
+ ## @ant-design/pro-components\@2.3.8
1023
+
1024
+ `2022-09-14`
1025
+
1026
+ - fix(components): fix ref error. [c9e1e98](https://github.com/ant-design/pro-components/commit/c9e1e98)
1027
+ - fix(utils): remove unuse code. [bcbdbf6](https://github.com/ant-design/pro-components/commit/bcbdbf6)
1028
+ - fix(layout): fix colorBgPageContainer (#5911). [#5911](https://github.com/ant-design/pro-components/pull/#5911) [@drizzlesconsin](https://github.com/drizzlesconsin)
1029
+ - fix(layout): custom header padding (#5912). [#5912](https://github.com/ant-design/pro-components/pull/#5912) [@drizzlesconsin](https://github.com/drizzlesconsin)
1030
+ - fix(form): fix select keyword lose. [797f853](https://github.com/ant-design/pro-components/commit/797f853)
1031
+ - feat(form): add ProFormSegmented (#5913). [#5913](https://github.com/ant-design/pro-components/pull/#5913) [@leoooy](https://github.com/leoooy)
1032
+ - fix (form): 修复 ProFormRadio.Group layout 作用反了 (#5918). [#5918](https://github.com/ant-design/pro-components/pull/#5918) [@leshalv](https://github.com/leshalv)
1033
+ - fix(table): fix configuration issues with nested columns. [c2c9d9d](https://github.com/ant-design/pro-components/commit/c2c9d9d)
1034
+ - fix(table): fix ColumnSetting style error. [ec39ccc](https://github.com/ant-design/pro-components/commit/ec39ccc)
1035
+ - fix(card): Card.Tabs.Pane Render null (#5926). [#5926](https://github.com/ant-design/pro-components/pull/#5926) [@ONLY-yours](https://github.com/ONLY-yours)
1036
+
1037
+ ## @ant-design/pro-components\@2.3.7
1038
+
1039
+ `2022-09-09`
1040
+
1041
+ - fix(components): fix compareVersions error. [9751208](https://github.com/ant-design/pro-components/commit/9751208)
1042
+
1043
+ ## @ant-design/pro-components\@2.3.6
1044
+
1045
+ `2022-09-08`
1046
+
1047
+ - fix(components): fix open props warning. [77703c8](https://github.com/ant-design/pro-components/commit/77703c8)
1048
+ - fix(components): fix css var error. [bd5d3bf](https://github.com/ant-design/pro-components/commit/bd5d3bf)
1049
+ - fix(components): unuse theme import. [bcac384](https://github.com/ant-design/pro-components/commit/bcac384)
1050
+
1051
+ ## @ant-design/pro-components\@2.3.5
1052
+
1053
+ `2022-09-05`
1054
+
1055
+ - fix(components): export more types from components (#5840). [#5840](https://github.com/ant-design/pro-components/pull/#5840) [@Jungzl](https://github.com/Jungzl)
1056
+
1057
+ ## @ant-design/pro-components\@2.3.4
1058
+
1059
+ `2022-09-02`
1060
+
1061
+ ## @ant-design/pro-components\@2.3.3
1062
+
1063
+ `2022-09-02`
1064
+
1065
+ - fix(components): add antd version dependencies. [aa5fd10](https://github.com/ant-design/pro-components/commit/aa5fd10)
1066
+ - feat(components): add @ant-design/pro-component (#5258). [#5258](https://github.com/ant-design/pro-components/pull/#5258) [@chenshuai2144](https://github.com/chenshuai2144)
1067
+
1068
+ ## @ant-design/pro-components\@2.3.2
1069
+
1070
+ `2022-09-01`
1071
+
1072
+ ## @ant-design/pro-components\@2.3.1
1073
+
1074
+ `2022-08-31`
1075
+
1076
+ ## @ant-design/pro-components\@2.3.0
1077
+
1078
+ `2022-08-30`
1079
+
1080
+ ## @ant-design/pro-components\@2.2.1
1081
+
1082
+ `2022-08-29`
1083
+
1084
+ ## @ant-design/pro-components\@2.2.0
1085
+
1086
+ `2022-08-26`
1087
+
1088
+ ## @ant-design/pro-components\@2.1.2
1089
+
1090
+ `2022-08-25`
1091
+
1092
+ ## @ant-design/pro-components\@2.1.1
1093
+
1094
+ `2022-08-25`
1095
+
1096
+ ## @ant-design/pro-components\@2.1.0
1097
+
1098
+ `2022-08-25`
1099
+
1100
+ ## @ant-design/pro-components\@2.0.5
1101
+
1102
+ `2022-08-24`
1103
+
1104
+ - fix(components): add antd version dependencies. [aa5fd10](https://github.com/ant-design/pro-components/commit/aa5fd10)
1105
+ - feat(components): add @ant-design/pro-component (#5258). [#5258](https://github.com/ant-design/pro-components/pull/#5258) [@chenshuai2144](https://github.com/chenshuai2144)
1106
+
1107
+ ## @ant-design/pro-components\@2.0.0
1108
+
1109
+ `2022-09-07`
1110
+
1111
+ - fix(components): fix css var error. [bd5d3bf](https://github.com/ant-design/pro-components/commit/bd5d3bf)
1112
+ - fix(components): unuse theme import. [bcac384](https://github.com/ant-design/pro-components/commit/bcac384)
1113
+ - fix(components): export more types from components (#5840). [#5840](https://github.com/ant-design/pro-components/pull/#5840) [@Jungzl](https://github.com/Jungzl)
1114
+ - fix(components): add antd version dependencies. [aa5fd10](https://github.com/ant-design/pro-components/commit/aa5fd10)
1115
+ - feat(components): add @ant-design/pro-component (#5258). [#5258](https://github.com/ant-design/pro-components/pull/#5258) [@chenshuai2144](https://github.com/chenshuai2144)