@regenbio/regenbio-components-react 1.2.15 → 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.
- package/.codecov.yml +6 -0
- package/.dumi/app.tsx +1 -0
- package/.dumi/tsconfig.json +4 -0
- package/.dumirc.ts +426 -0
- package/.eslintignore +12 -0
- package/.eslintrc.js +6 -0
- package/.fatherrc.base.ts +23 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +49 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +41 -0
- package/.github/ISSUE_TEMPLATE/question.md +29 -0
- package/.github/dependabot.yml +11 -0
- package/.github/workflows/build.yml +27 -0
- package/.github/workflows/codeql.yml +41 -0
- package/.github/workflows/coverage.yml +31 -0
- package/.github/workflows/issue-labeled.yml +37 -0
- package/.github/workflows/issue-open-check.yml +34 -0
- package/.github/workflows/pkg.pr.new.yml +37 -0
- package/.github/workflows/preview-build.yml +46 -0
- package/.github/workflows/preview-deploy.yml +92 -0
- package/.github/workflows/preview-start.yml +18 -0
- package/.github/workflows/rebase.yml +17 -0
- package/.prettierignore +9 -0
- package/.prettierrc.js +7 -0
- package/CONTRIBUTING.md +77 -0
- package/LICENSE.md +7 -0
- package/README.es-PR.md +199 -0
- package/README.md +203 -0
- package/README.zh-CN.md +203 -0
- package/docs/changelog.en-US.md +1115 -0
- package/docs/changelog.md +1136 -0
- package/docs/components/customization-value-type.tsx +222 -0
- package/docs/components/schema.$tab-api.md +8 -0
- package/docs/components/schema.en-US.md +477 -0
- package/docs/components/schema.md +477 -0
- package/docs/components/valueEnum-map.tsx +45 -0
- package/docs/components/valueType.tsx +299 -0
- package/docs/components.en-US.md +183 -0
- package/docs/components.md +78 -0
- package/docs/docs/faq.en-US.md +75 -0
- package/docs/docs/faq.md +75 -0
- package/docs/docs/index.en-US.md +53 -0
- package/docs/docs/index.md +56 -0
- package/docs/docs/intro.en-US.md +125 -0
- package/docs/docs/intro.md +126 -0
- package/docs/index.en-US.md +87 -0
- package/docs/index.md +56 -0
- package/docs/playground/index.en-US.md +14 -0
- package/docs/playground/index.md +14 -0
- package/docs/playground/pro-descriptions.en-US.md +10 -0
- package/docs/playground/pro-descriptions.md +10 -0
- package/docs/playground/pro-form.en-US.md +18 -0
- package/docs/playground/pro-form.md +19 -0
- package/docs/playground/pro-layout.en-US.md +16 -0
- package/docs/playground/pro-layout.md +17 -0
- package/docs/playground/pro-table.en-US.md +11 -0
- package/docs/playground/pro-table.md +11 -0
- package/lerna.json +21 -0
- package/package.json +164 -36
- package/packages/card/.fatherrc.ts +5 -0
- package/packages/card/CHANGELOG.md +1489 -0
- package/packages/card/README.md +19 -0
- package/packages/card/package.json +61 -0
- package/packages/card/src/ProCard.tsx +29 -0
- package/packages/card/src/components/Actions/index.tsx +40 -0
- package/packages/card/src/components/Actions/style.ts +102 -0
- package/packages/card/src/components/Card/index.tsx +293 -0
- package/packages/card/src/components/Card/style.ts +314 -0
- package/packages/card/src/components/CheckCard/Group.tsx +474 -0
- package/packages/card/src/components/CheckCard/demos/avatar.tsx +16 -0
- package/packages/card/src/components/CheckCard/demos/basic.tsx +18 -0
- package/packages/card/src/components/CheckCard/demos/compose.tsx +28 -0
- package/packages/card/src/components/CheckCard/demos/custom.tsx +9 -0
- package/packages/card/src/components/CheckCard/demos/defaultChecked.tsx +12 -0
- package/packages/card/src/components/CheckCard/demos/description.tsx +35 -0
- package/packages/card/src/components/CheckCard/demos/disabled.tsx +34 -0
- package/packages/card/src/components/CheckCard/demos/extra.tsx +41 -0
- package/packages/card/src/components/CheckCard/demos/form.tsx +58 -0
- package/packages/card/src/components/CheckCard/demos/grid.tsx +30 -0
- package/packages/card/src/components/CheckCard/demos/group.tsx +56 -0
- package/packages/card/src/components/CheckCard/demos/image.tsx +20 -0
- package/packages/card/src/components/CheckCard/demos/list.tsx +83 -0
- package/packages/card/src/components/CheckCard/demos/loading.tsx +3 -0
- package/packages/card/src/components/CheckCard/demos/multiple.tsx +51 -0
- package/packages/card/src/components/CheckCard/demos/single.tsx +23 -0
- package/packages/card/src/components/CheckCard/demos/size.tsx +23 -0
- package/packages/card/src/components/CheckCard/demos/title.tsx +22 -0
- package/packages/card/src/components/CheckCard/index.en-US.md +154 -0
- package/packages/card/src/components/CheckCard/index.md +154 -0
- package/packages/card/src/components/CheckCard/index.tsx +379 -0
- package/packages/card/src/components/CheckCard/style.ts +216 -0
- package/packages/card/src/components/Divider/index.tsx +42 -0
- package/packages/card/src/components/Divider/style.ts +48 -0
- package/packages/card/src/components/Loading/index.tsx +64 -0
- package/packages/card/src/components/Loading/style.ts +55 -0
- package/packages/card/src/components/Operation/index.tsx +38 -0
- package/packages/card/src/components/Operation/style.ts +33 -0
- package/packages/card/src/components/Statistic/index.tsx +129 -0
- package/packages/card/src/components/Statistic/style.ts +110 -0
- package/packages/card/src/components/StatisticCard/demos/basic.tsx +40 -0
- package/packages/card/src/components/StatisticCard/demos/chart.tsx +20 -0
- package/packages/card/src/components/StatisticCard/demos/fomula.tsx +37 -0
- package/packages/card/src/components/StatisticCard/demos/footer.tsx +42 -0
- package/packages/card/src/components/StatisticCard/demos/group-chart.tsx +65 -0
- package/packages/card/src/components/StatisticCard/demos/group.tsx +57 -0
- package/packages/card/src/components/StatisticCard/demos/horizontal-left.tsx +31 -0
- package/packages/card/src/components/StatisticCard/demos/horizontal.tsx +31 -0
- package/packages/card/src/components/StatisticCard/demos/icon.tsx +77 -0
- package/packages/card/src/components/StatisticCard/demos/layout.tsx +90 -0
- package/packages/card/src/components/StatisticCard/demos/status.tsx +46 -0
- package/packages/card/src/components/StatisticCard/demos/tabs-statistic.tsx +55 -0
- package/packages/card/src/components/StatisticCard/demos/tabs.tsx +55 -0
- package/packages/card/src/components/StatisticCard/demos/total-layout.tsx +136 -0
- package/packages/card/src/components/StatisticCard/demos/total.tsx +58 -0
- package/packages/card/src/components/StatisticCard/demos/trend.tsx +15 -0
- package/packages/card/src/components/StatisticCard/index.en-US.md +152 -0
- package/packages/card/src/components/StatisticCard/index.md +152 -0
- package/packages/card/src/components/StatisticCard/index.tsx +107 -0
- package/packages/card/src/components/StatisticCard/style.ts +48 -0
- package/packages/card/src/components/TabPane/index.tsx +94 -0
- package/packages/card/src/components/card.en-US.md +219 -0
- package/packages/card/src/components/card.md +212 -0
- package/packages/card/src/demos/actions.tsx +59 -0
- package/packages/card/src/demos/basic.tsx +54 -0
- package/packages/card/src/demos/bordered.tsx +15 -0
- package/packages/card/src/demos/collapsible.tsx +110 -0
- package/packages/card/src/demos/colspan.tsx +80 -0
- package/packages/card/src/demos/divider.tsx +36 -0
- package/packages/card/src/demos/group.tsx +19 -0
- package/packages/card/src/demos/gutter.tsx +29 -0
- package/packages/card/src/demos/headerBordered.tsx +15 -0
- package/packages/card/src/demos/headless.tsx +5 -0
- package/packages/card/src/demos/hoverable.tsx +11 -0
- package/packages/card/src/demos/inner.tsx +32 -0
- package/packages/card/src/demos/layout.tsx +18 -0
- package/packages/card/src/demos/loading.tsx +28 -0
- package/packages/card/src/demos/multipleLine.tsx +43 -0
- package/packages/card/src/demos/responsive.tsx +72 -0
- package/packages/card/src/demos/split.tsx +46 -0
- package/packages/card/src/demos/split2.tsx +30 -0
- package/packages/card/src/demos/split23.tsx +14 -0
- package/packages/card/src/demos/steps-v.tsx +59 -0
- package/packages/card/src/demos/tabs-card.tsx +18 -0
- package/packages/card/src/demos/tabs.tsx +56 -0
- package/packages/card/src/index.tsx +30 -0
- package/packages/card/src/typing.ts +100 -0
- package/packages/card/tsconfig.json +21 -0
- package/packages/components/.fatherrc.ts +15 -0
- package/packages/components/CHANGELOG.md +841 -0
- package/packages/components/README.md +19 -0
- package/packages/components/package.json +62 -0
- package/packages/components/src/index.tsx +12 -0
- package/packages/components/tsconfig.json +32 -0
- package/packages/descriptions/.fatherrc.ts +5 -0
- package/packages/descriptions/CHANGELOG.md +1740 -0
- package/packages/descriptions/README.md +53 -0
- package/packages/descriptions/package.json +60 -0
- package/packages/descriptions/src/components/descriptions.en-US.md +168 -0
- package/packages/descriptions/src/components/descriptions.md +173 -0
- package/packages/descriptions/src/demos/arrayDataIndex.tsx +66 -0
- package/packages/descriptions/src/demos/base.demo-test.tsx +36 -0
- package/packages/descriptions/src/demos/base.tsx +115 -0
- package/packages/descriptions/src/demos/columns.tsx +127 -0
- package/packages/descriptions/src/demos/customization-value-type.tsx +166 -0
- package/packages/descriptions/src/demos/dynamic-descriptions.tsx +319 -0
- package/packages/descriptions/src/demos/editable.tsx +138 -0
- package/packages/descriptions/src/demos/format.tsx +62 -0
- package/packages/descriptions/src/demos/request.tsx +37 -0
- package/packages/descriptions/src/demos/use-data-source.tsx +78 -0
- package/packages/descriptions/src/index.tsx +676 -0
- package/packages/descriptions/src/useFetchData.tsx +93 -0
- package/packages/descriptions/tsconfig.json +26 -0
- package/packages/field/.fatherrc.ts +5 -0
- package/packages/field/CHANGELOG.md +2017 -0
- package/packages/field/README.md +17 -0
- package/packages/field/package.json +56 -0
- package/packages/field/src/FieldHOC/index.tsx +55 -0
- package/packages/field/src/components/Cascader/index.tsx +167 -0
- package/packages/field/src/components/Checkbox/index.tsx +149 -0
- package/packages/field/src/components/Code/index.tsx +78 -0
- package/packages/field/src/components/ColorPicker/index.tsx +117 -0
- package/packages/field/src/components/ColorPicker/old.tsx +121 -0
- package/packages/field/src/components/DatePicker/index.tsx +143 -0
- package/packages/field/src/components/Digit/index.tsx +93 -0
- package/packages/field/src/components/DigitRange/index.tsx +150 -0
- package/packages/field/src/components/FromNow/index.tsx +67 -0
- package/packages/field/src/components/Image/index.tsx +61 -0
- package/packages/field/src/components/IndexColumn/index.tsx +54 -0
- package/packages/field/src/components/Money/index.tsx +454 -0
- package/packages/field/src/components/Options/index.tsx +89 -0
- package/packages/field/src/components/Password/index.tsx +71 -0
- package/packages/field/src/components/Percent/index.tsx +109 -0
- package/packages/field/src/components/Percent/util.ts +26 -0
- package/packages/field/src/components/Progress/index.tsx +81 -0
- package/packages/field/src/components/Radio/index.tsx +128 -0
- package/packages/field/src/components/RangePicker/index.tsx +166 -0
- package/packages/field/src/components/Rate/index.tsx +36 -0
- package/packages/field/src/components/Second/index.tsx +88 -0
- package/packages/field/src/components/Segmented/index.tsx +93 -0
- package/packages/field/src/components/Select/LightSelect/index.tsx +286 -0
- package/packages/field/src/components/Select/SearchSelect/index.tsx +334 -0
- package/packages/field/src/components/Select/index.tsx +562 -0
- package/packages/field/src/components/Slider/index.tsx +42 -0
- package/packages/field/src/components/Status/index.tsx +47 -0
- package/packages/field/src/components/Switch/index.tsx +77 -0
- package/packages/field/src/components/Text/index.tsx +68 -0
- package/packages/field/src/components/TextArea/index.tsx +53 -0
- package/packages/field/src/components/TextArea/readonly.tsx +46 -0
- package/packages/field/src/components/TimePicker/index.tsx +261 -0
- package/packages/field/src/components/TreeSelect/index.tsx +258 -0
- package/packages/field/src/components/field.md +42 -0
- package/packages/field/src/demos/base.tsx +431 -0
- package/packages/field/src/demos/base_test.tsx +509 -0
- package/packages/field/src/demos/search-value-autoClearSearchValue.tsx +41 -0
- package/packages/field/src/demos/search-value.tsx +96 -0
- package/packages/field/src/demos/select-request.tsx +30 -0
- package/packages/field/src/demos/tree-select-search-value.tsx +151 -0
- package/packages/field/src/index.tsx +678 -0
- package/packages/field/tsconfig.json +22 -0
- package/packages/form/.fatherrc.ts +5 -0
- package/packages/form/CHANGELOG.md +2781 -0
- package/packages/form/README.md +15 -0
- package/packages/form/package.json +70 -0
- package/packages/form/src/BaseForm/BaseForm.tsx +839 -0
- package/packages/form/src/BaseForm/EditOrReadOnlyContext.ts +7 -0
- package/packages/form/src/BaseForm/LightWrapper/index.tsx +159 -0
- package/packages/form/src/BaseForm/LightWrapper/style.ts +31 -0
- package/packages/form/src/BaseForm/createField.tsx +384 -0
- package/packages/form/src/BaseForm/index.ts +3 -0
- package/packages/form/src/FieldContext.tsx +39 -0
- package/packages/form/src/components/Captcha/index.tsx +156 -0
- package/packages/form/src/components/Cascader/index.tsx +36 -0
- package/packages/form/src/components/Checkbox/index.tsx +90 -0
- package/packages/form/src/components/ColorPicker/index.tsx +47 -0
- package/packages/form/src/components/DateMonthRangePicker/index.tsx +38 -0
- package/packages/form/src/components/DatePicker/DatePicker.tsx +35 -0
- package/packages/form/src/components/DatePicker/MonthPicker.tsx +35 -0
- package/packages/form/src/components/DatePicker/QuarterPicker.tsx +35 -0
- package/packages/form/src/components/DatePicker/WeekPicker.tsx +35 -0
- package/packages/form/src/components/DatePicker/YearPicker.tsx +35 -0
- package/packages/form/src/components/DatePicker/index.tsx +22 -0
- package/packages/form/src/components/DateQuarterRangePicker/index.tsx +39 -0
- package/packages/form/src/components/DateRangePicker/index.tsx +39 -0
- package/packages/form/src/components/DateTimePicker/index.tsx +36 -0
- package/packages/form/src/components/DateTimeRangePicker/index.tsx +39 -0
- package/packages/form/src/components/DateWeekRangePicker/index.tsx +38 -0
- package/packages/form/src/components/DateYearRangePicker/index.tsx +38 -0
- package/packages/form/src/components/Dependency/demos/dependency.tsx +112 -0
- package/packages/form/src/components/Dependency/demos/dependency2.tsx +106 -0
- package/packages/form/src/components/Dependency/index.en-US.md +54 -0
- package/packages/form/src/components/Dependency/index.md +52 -0
- package/packages/form/src/components/Dependency/index.tsx +111 -0
- package/packages/form/src/components/Digit/index.tsx +43 -0
- package/packages/form/src/components/DigitRange/index.tsx +51 -0
- package/packages/form/src/components/Field/index.tsx +144 -0
- package/packages/form/src/components/FieldSet/demos/captCha.tsx +67 -0
- package/packages/form/src/components/FieldSet/demos/components-other-readonly.tsx +465 -0
- package/packages/form/src/components/FieldSet/demos/components-other.tsx +336 -0
- package/packages/form/src/components/FieldSet/demos/datatime.tsx +89 -0
- package/packages/form/src/components/FieldSet/demos/fieldSet-light.tsx +58 -0
- package/packages/form/src/components/FieldSet/demos/form-fieldset.tsx +106 -0
- package/packages/form/src/components/FieldSet/demos/pro-form-captCha.tsx +70 -0
- package/packages/form/src/components/FieldSet/demos/search-select.tsx +90 -0
- package/packages/form/src/components/FieldSet/demos/upload.tsx +35 -0
- package/packages/form/src/components/FieldSet/index.en-US.md +529 -0
- package/packages/form/src/components/FieldSet/index.md +680 -0
- package/packages/form/src/components/FieldSet/index.tsx +151 -0
- package/packages/form/src/components/FormItem/index.tsx +445 -0
- package/packages/form/src/components/FormItemRender/index.tsx +219 -0
- package/packages/form/src/components/Group/demos/base-use.tsx +93 -0
- package/packages/form/src/components/Group/demos/countLimit.tsx +57 -0
- package/packages/form/src/components/Group/demos/customize.tsx +294 -0
- package/packages/form/src/components/Group/demos/dependency.tsx +70 -0
- package/packages/form/src/components/Group/demos/horizontal-layout.tsx +73 -0
- package/packages/form/src/components/Group/demos/list-tooltip.tsx +69 -0
- package/packages/form/src/components/Group/demos/list.tsx +127 -0
- package/packages/form/src/components/Group/demos/nested-list.tsx +66 -0
- package/packages/form/src/components/Group/demos/pro-form-list.tsx +126 -0
- package/packages/form/src/components/Group/index.en-US.md +326 -0
- package/packages/form/src/components/Group/index.md +373 -0
- package/packages/form/src/components/Group/index.tsx +182 -0
- package/packages/form/src/components/Group/style.ts +55 -0
- package/packages/form/src/components/List/ListContainer.tsx +187 -0
- package/packages/form/src/components/List/ListItem.tsx +569 -0
- package/packages/form/src/components/List/index.tsx +323 -0
- package/packages/form/src/components/List/style.ts +89 -0
- package/packages/form/src/components/LoginForm/demos/login-form-page.tsx +283 -0
- package/packages/form/src/components/LoginForm/demos/login-form.tsx +190 -0
- package/packages/form/src/components/LoginForm/index.en-US.md +45 -0
- package/packages/form/src/components/LoginForm/index.md +45 -0
- package/packages/form/src/components/ModalForm/demos/drawer-form-nested.tsx +265 -0
- package/packages/form/src/components/ModalForm/demos/drawer-form.tsx +129 -0
- package/packages/form/src/components/ModalForm/demos/modal-form-reset.tsx +112 -0
- package/packages/form/src/components/ModalForm/demos/modal-form-submitter.tsx +143 -0
- package/packages/form/src/components/ModalForm/demos/modal-form.tsx +112 -0
- package/packages/form/src/components/ModalForm/demos/visible-on-visible-change.tsx +187 -0
- package/packages/form/src/components/ModalForm/index.en-US.md +70 -0
- package/packages/form/src/components/ModalForm/index.md +68 -0
- package/packages/form/src/components/Money/index.tsx +47 -0
- package/packages/form/src/components/QueryFilter/demos/light-filter-bordered.tsx +149 -0
- package/packages/form/src/components/QueryFilter/demos/light-filter-collapse.tsx +28 -0
- package/packages/form/src/components/QueryFilter/demos/light-filter-footer.tsx +88 -0
- package/packages/form/src/components/QueryFilter/demos/light-filter-placement.tsx +89 -0
- package/packages/form/src/components/QueryFilter/demos/light-filter-test.tsx +92 -0
- package/packages/form/src/components/QueryFilter/demos/light-filter.tsx +215 -0
- package/packages/form/src/components/QueryFilter/demos/query-filter-collapsed.tsx +18 -0
- package/packages/form/src/components/QueryFilter/demos/query-filter-defaultColsNumber.tsx +18 -0
- package/packages/form/src/components/QueryFilter/demos/query-filter-test.tsx +158 -0
- package/packages/form/src/components/QueryFilter/demos/query-filter-vertical.tsx +44 -0
- package/packages/form/src/components/QueryFilter/demos/query-filter.tsx +31 -0
- package/packages/form/src/components/QueryFilter/demos/search-filter.tsx +126 -0
- package/packages/form/src/components/QueryFilter/index.en-US.md +93 -0
- package/packages/form/src/components/QueryFilter/index.md +90 -0
- package/packages/form/src/components/Radio/index.tsx +89 -0
- package/packages/form/src/components/Rate/index.tsx +28 -0
- package/packages/form/src/components/SchemaForm/demos/ModalAndDrawerForm.tsx +68 -0
- package/packages/form/src/components/SchemaForm/demos/customization-value-type.tsx +174 -0
- package/packages/form/src/components/SchemaForm/demos/dependencies.tsx +125 -0
- package/packages/form/src/components/SchemaForm/demos/dependency.tsx +90 -0
- package/packages/form/src/components/SchemaForm/demos/dynamic-rerender.tsx +127 -0
- package/packages/form/src/components/SchemaForm/demos/embed.tsx +121 -0
- package/packages/form/src/components/SchemaForm/demos/form-list-required.tsx +142 -0
- package/packages/form/src/components/SchemaForm/demos/schema.tsx +311 -0
- package/packages/form/src/components/SchemaForm/demos/steps-form.tsx +203 -0
- package/packages/form/src/components/SchemaForm/demos/valueType.tsx +150 -0
- package/packages/form/src/components/SchemaForm/index.en-US.md +92 -0
- package/packages/form/src/components/SchemaForm/index.md +84 -0
- package/packages/form/src/components/SchemaForm/index.tsx +241 -0
- package/packages/form/src/components/SchemaForm/layoutType/Embed.tsx +3 -0
- package/packages/form/src/components/SchemaForm/layoutType/StepsForm.tsx +54 -0
- package/packages/form/src/components/SchemaForm/layoutType/index.ts +2 -0
- package/packages/form/src/components/SchemaForm/typing.ts +171 -0
- package/packages/form/src/components/SchemaForm/valueType/dependency.tsx +34 -0
- package/packages/form/src/components/SchemaForm/valueType/divider.tsx +13 -0
- package/packages/form/src/components/SchemaForm/valueType/field.tsx +91 -0
- package/packages/form/src/components/SchemaForm/valueType/formList.tsx +27 -0
- package/packages/form/src/components/SchemaForm/valueType/formSet.tsx +27 -0
- package/packages/form/src/components/SchemaForm/valueType/group.tsx +22 -0
- package/packages/form/src/components/SchemaForm/valueType/ignore.tsx +13 -0
- package/packages/form/src/components/SchemaForm/valueType/index.tsx +46 -0
- package/packages/form/src/components/Segmented/index.tsx +36 -0
- package/packages/form/src/components/Select/index.tsx +173 -0
- package/packages/form/src/components/Slider/index.tsx +62 -0
- package/packages/form/src/components/StepsForm/demos/add-or-edit-step-form.tsx +90 -0
- package/packages/form/src/components/StepsForm/demos/customize-steps-from.tsx +176 -0
- package/packages/form/src/components/StepsForm/demos/modal-step-form.tsx +153 -0
- package/packages/form/src/components/StepsForm/demos/multi-card-step-form.tsx +201 -0
- package/packages/form/src/components/StepsForm/demos/steps-form-vertical.tsx +153 -0
- package/packages/form/src/components/StepsForm/demos/steps-from.tsx +157 -0
- package/packages/form/src/components/StepsForm/index.en-US.md +50 -0
- package/packages/form/src/components/StepsForm/index.md +56 -0
- package/packages/form/src/components/Submitter/index.tsx +144 -0
- package/packages/form/src/components/Switch/index.tsx +45 -0
- package/packages/form/src/components/Text/index.tsx +176 -0
- package/packages/form/src/components/TextArea/index.tsx +27 -0
- package/packages/form/src/components/TimePicker/index.tsx +72 -0
- package/packages/form/src/components/TreeSelect/index.tsx +49 -0
- package/packages/form/src/components/UploadButton/index.tsx +133 -0
- package/packages/form/src/components/UploadDragger/index.tsx +134 -0
- package/packages/form/src/components/form.en-US.md +320 -0
- package/packages/form/src/components/form.md +480 -0
- package/packages/form/src/components/index.ts +67 -0
- package/packages/form/src/demos/antd.modify.tsx +62 -0
- package/packages/form/src/demos/antd.nest.tsx +56 -0
- package/packages/form/src/demos/antd.tsx +103 -0
- package/packages/form/src/demos/base-test.tsx +256 -0
- package/packages/form/src/demos/base.tsx +334 -0
- package/packages/form/src/demos/components-test.tsx +64 -0
- package/packages/form/src/demos/config-provider.tsx +67 -0
- package/packages/form/src/demos/dependency.tsx +85 -0
- package/packages/form/src/demos/form-control-render.tsx +81 -0
- package/packages/form/src/demos/form-item-render.tsx +164 -0
- package/packages/form/src/demos/form-layout-grid.tsx +130 -0
- package/packages/form/src/demos/form-layout.tsx +97 -0
- package/packages/form/src/demos/formRef.tsx +98 -0
- package/packages/form/src/demos/label-col.tsx +48 -0
- package/packages/form/src/demos/labelInValue.tsx +34 -0
- package/packages/form/src/demos/layout-change.tsx +347 -0
- package/packages/form/src/demos/layout-footer.tsx +168 -0
- package/packages/form/src/demos/linkage-customization.tsx +179 -0
- package/packages/form/src/demos/modalform-test.tsx +121 -0
- package/packages/form/src/demos/money.tsx +139 -0
- package/packages/form/src/demos/params-formref.tsx +36 -0
- package/packages/form/src/demos/pro-form-dependency.debug.tsx +95 -0
- package/packages/form/src/demos/pro-form-editableTable.tsx +148 -0
- package/packages/form/src/demos/sync-to-url.tsx +68 -0
- package/packages/form/src/demos/typings.d.ts +5 -0
- package/packages/form/src/helpers/grid.tsx +96 -0
- package/packages/form/src/helpers/index.ts +1 -0
- package/packages/form/src/index.tsx +56 -0
- package/packages/form/src/layouts/DrawerForm/index.tsx +386 -0
- package/packages/form/src/layouts/DrawerForm/style.ts +42 -0
- package/packages/form/src/layouts/LightFilter/index.tsx +337 -0
- package/packages/form/src/layouts/LightFilter/style.ts +64 -0
- package/packages/form/src/layouts/LoginForm/index.tsx +153 -0
- package/packages/form/src/layouts/LoginForm/style.ts +89 -0
- package/packages/form/src/layouts/LoginFormPage/index.tsx +231 -0
- package/packages/form/src/layouts/LoginFormPage/style.ts +154 -0
- package/packages/form/src/layouts/ModalForm/index.tsx +296 -0
- package/packages/form/src/layouts/ProForm/index.tsx +44 -0
- package/packages/form/src/layouts/QueryFilter/Actions.tsx +104 -0
- package/packages/form/src/layouts/QueryFilter/index.tsx +624 -0
- package/packages/form/src/layouts/QueryFilter/style.ts +61 -0
- package/packages/form/src/layouts/StepsForm/StepForm.tsx +89 -0
- package/packages/form/src/layouts/StepsForm/index.tsx +569 -0
- package/packages/form/src/layouts/StepsForm/style.ts +43 -0
- package/packages/form/src/layouts/index.ts +19 -0
- package/packages/form/src/typing.ts +178 -0
- package/packages/form/tsconfig.json +24 -0
- package/packages/layout/.fatherrc.ts +5 -0
- package/packages/layout/CHANGELOG.md +2188 -0
- package/packages/layout/README.md +64 -0
- package/packages/layout/package.json +71 -0
- package/packages/layout/src/ProLayout.tsx +918 -0
- package/packages/layout/src/WrapContent.tsx +41 -0
- package/packages/layout/src/assert/Logo.tsx +80 -0
- package/packages/layout/src/components/AppsLogoComponents/AppsLogo.tsx +15 -0
- package/packages/layout/src/components/AppsLogoComponents/DefaultContent.tsx +64 -0
- package/packages/layout/src/components/AppsLogoComponents/SimpleContent.tsx +93 -0
- package/packages/layout/src/components/AppsLogoComponents/index.tsx +132 -0
- package/packages/layout/src/components/AppsLogoComponents/style/default.ts +78 -0
- package/packages/layout/src/components/AppsLogoComponents/style/index.ts +71 -0
- package/packages/layout/src/components/AppsLogoComponents/style/simple.ts +93 -0
- package/packages/layout/src/components/AppsLogoComponents/types.d.ts +10 -0
- package/packages/layout/src/components/CollapsedIcon/index.tsx +20 -0
- package/packages/layout/src/components/CollapsedIcon/style.ts +58 -0
- package/packages/layout/src/components/Footer.tsx +47 -0
- package/packages/layout/src/components/FooterToolbar/index.tsx +123 -0
- package/packages/layout/src/components/FooterToolbar/style/index.ts +56 -0
- package/packages/layout/src/components/FooterToolbar/style/stylish.ts +29 -0
- package/packages/layout/src/components/GlobalFooter/index.tsx +70 -0
- package/packages/layout/src/components/GlobalFooter/style.ts +46 -0
- package/packages/layout/src/components/GlobalHeader/ActionsContent.tsx +150 -0
- package/packages/layout/src/components/GlobalHeader/index.tsx +184 -0
- package/packages/layout/src/components/GlobalHeader/rightContentStyle.ts +74 -0
- package/packages/layout/src/components/GlobalHeader/style.ts +75 -0
- package/packages/layout/src/components/GridContent/index.tsx +54 -0
- package/packages/layout/src/components/GridContent/style.ts +29 -0
- package/packages/layout/src/components/Header/index.tsx +170 -0
- package/packages/layout/src/components/Header/style/header.ts +70 -0
- package/packages/layout/src/components/Header/style/stylish.ts +34 -0
- package/packages/layout/src/components/Help/AsyncContentPanel.tsx +62 -0
- package/packages/layout/src/components/Help/HelpProvide.tsx +187 -0
- package/packages/layout/src/components/Help/ProHelpContentPanel.tsx +162 -0
- package/packages/layout/src/components/Help/ProHelpDrawer.tsx +54 -0
- package/packages/layout/src/components/Help/ProHelpModal.tsx +51 -0
- package/packages/layout/src/components/Help/ProHelpPanel.tsx +310 -0
- package/packages/layout/src/components/Help/ProHelpPopover.tsx +78 -0
- package/packages/layout/src/components/Help/RenderContentPanel.tsx +156 -0
- package/packages/layout/src/components/Help/Search.tsx +172 -0
- package/packages/layout/src/components/Help/index.tsx +78 -0
- package/packages/layout/src/components/Help/style.ts +109 -0
- package/packages/layout/src/components/PageContainer/demos/basic.tsx +96 -0
- package/packages/layout/src/components/PageContainer/demos/fixHeader.tsx +59 -0
- package/packages/layout/src/components/PageContainer/demos/hideBreadMenu.tsx +38 -0
- package/packages/layout/src/components/PageContainer/demos/loading.tsx +144 -0
- package/packages/layout/src/components/PageContainer/demos/token.tsx +71 -0
- package/packages/layout/src/components/PageContainer/index.en-US.md +104 -0
- package/packages/layout/src/components/PageContainer/index.md +125 -0
- package/packages/layout/src/components/PageContainer/index.tsx +506 -0
- package/packages/layout/src/components/PageContainer/style/index.ts +137 -0
- package/packages/layout/src/components/PageContainer/style/stylish.ts +29 -0
- package/packages/layout/src/components/PageHeader/demo/actions.en-US.md +78 -0
- package/packages/layout/src/components/PageHeader/demo/actions.md +78 -0
- package/packages/layout/src/components/PageHeader/demo/basic.en-US.md +30 -0
- package/packages/layout/src/components/PageHeader/demo/basic.md +30 -0
- package/packages/layout/src/components/PageHeader/demo/breadcrumb.en-US.md +39 -0
- package/packages/layout/src/components/PageHeader/demo/breadcrumb.md +39 -0
- package/packages/layout/src/components/PageHeader/demo/content.en-US.md +206 -0
- package/packages/layout/src/components/PageHeader/demo/content.md +206 -0
- package/packages/layout/src/components/PageHeader/demo/ghost.en-US.md +52 -0
- package/packages/layout/src/components/PageHeader/demo/ghost.md +52 -0
- package/packages/layout/src/components/PageHeader/demo/responsive.en-US.md +114 -0
- package/packages/layout/src/components/PageHeader/demo/responsive.md +114 -0
- package/packages/layout/src/components/PageHeader/index.en-US.md +39 -0
- package/packages/layout/src/components/PageHeader/index.md +39 -0
- package/packages/layout/src/components/PageHeader/index.tsx +276 -0
- package/packages/layout/src/components/PageHeader/style/index.ts +180 -0
- package/packages/layout/src/components/PageLoading/index.tsx +18 -0
- package/packages/layout/src/components/SettingDrawer/BlockCheckbox.tsx +60 -0
- package/packages/layout/src/components/SettingDrawer/LayoutChange.tsx +122 -0
- package/packages/layout/src/components/SettingDrawer/RegionalChange.tsx +45 -0
- package/packages/layout/src/components/SettingDrawer/ThemeColor.tsx +68 -0
- package/packages/layout/src/components/SettingDrawer/icon/group.tsx +108 -0
- package/packages/layout/src/components/SettingDrawer/icon/sub.tsx +163 -0
- package/packages/layout/src/components/SettingDrawer/index.tsx +602 -0
- package/packages/layout/src/components/SettingDrawer/style/index.ts +149 -0
- package/packages/layout/src/components/SiderMenu/Arrow.tsx +15 -0
- package/packages/layout/src/components/SiderMenu/BaseMenu.tsx +741 -0
- package/packages/layout/src/components/SiderMenu/SiderMenu.tsx +541 -0
- package/packages/layout/src/components/SiderMenu/index.tsx +101 -0
- package/packages/layout/src/components/SiderMenu/style/index.ts +219 -0
- package/packages/layout/src/components/SiderMenu/style/menu.ts +177 -0
- package/packages/layout/src/components/SiderMenu/style/stylish.ts +33 -0
- package/packages/layout/src/components/TopNavHeader/index.tsx +202 -0
- package/packages/layout/src/components/TopNavHeader/style.ts +88 -0
- package/packages/layout/src/components/WaterMark/demos/custom.tsx +133 -0
- package/packages/layout/src/components/WaterMark/demos/frontend.tsx +135 -0
- package/packages/layout/src/components/WaterMark/demos/image.tsx +40 -0
- package/packages/layout/src/components/WaterMark/demos/text.tsx +8 -0
- package/packages/layout/src/components/WaterMark/demos/textRows.tsx +8 -0
- package/packages/layout/src/components/WaterMark/index.en-US.md +80 -0
- package/packages/layout/src/components/WaterMark/index.md +80 -0
- package/packages/layout/src/components/WaterMark/index.tsx +212 -0
- package/packages/layout/src/components/layout.$tab-api.md +120 -0
- package/packages/layout/src/components/layout.en-US.$tab-api.md +76 -0
- package/packages/layout/src/components/layout.en-US.md +465 -0
- package/packages/layout/src/components/layout.md +474 -0
- package/packages/layout/src/context/RouteContext.tsx +36 -0
- package/packages/layout/src/defaultSettings.ts +143 -0
- package/packages/layout/src/demos/AlwaysDefaultOpenAllMenu.tsx +88 -0
- package/packages/layout/src/demos/BreadcrumbsRepeat.tsx +57 -0
- package/packages/layout/src/demos/DefaultOpenAllMenu.tsx +26 -0
- package/packages/layout/src/demos/IconFont.tsx +39 -0
- package/packages/layout/src/demos/MenuGroup.tsx +24 -0
- package/packages/layout/src/demos/MultipleMenuOnePath.tsx +199 -0
- package/packages/layout/src/demos/Nested.tsx +65 -0
- package/packages/layout/src/demos/TopmenuNested.tsx +35 -0
- package/packages/layout/src/demos/_defaultProps.tsx +152 -0
- package/packages/layout/src/demos/antd@4MenuIconFormServe.tsx +67 -0
- package/packages/layout/src/demos/api.tsx +149 -0
- package/packages/layout/src/demos/appList-group-simple.tsx +104 -0
- package/packages/layout/src/demos/appList-group.tsx +131 -0
- package/packages/layout/src/demos/async-load-help.tsx +336 -0
- package/packages/layout/src/demos/background-context.tsx +146 -0
- package/packages/layout/src/demos/base.tsx +456 -0
- package/packages/layout/src/demos/classicMode.tsx +212 -0
- package/packages/layout/src/demos/collapsedShowTitle.tsx +155 -0
- package/packages/layout/src/demos/complexMenu.ts +101 -0
- package/packages/layout/src/demos/config-provider.tsx +153 -0
- package/packages/layout/src/demos/customMenu.ts +23 -0
- package/packages/layout/src/demos/customSider.tsx +140 -0
- package/packages/layout/src/demos/customize-collapsed.tsx +98 -0
- package/packages/layout/src/demos/customizeMenu.tsx +62 -0
- package/packages/layout/src/demos/dark.tsx +127 -0
- package/packages/layout/src/demos/debug-demo.tsx +154 -0
- package/packages/layout/src/demos/designMenuCss.tsx +204 -0
- package/packages/layout/src/demos/designSiderMenu.tsx +105 -0
- package/packages/layout/src/demos/draggableHelp.tsx +349 -0
- package/packages/layout/src/demos/dynamic-settings.tsx +155 -0
- package/packages/layout/src/demos/dynamicMenu.tsx +71 -0
- package/packages/layout/src/demos/error-boundaries.tsx +156 -0
- package/packages/layout/src/demos/footer-global-tools.tsx +211 -0
- package/packages/layout/src/demos/footer.tsx +31 -0
- package/packages/layout/src/demos/ghost.tsx +51 -0
- package/packages/layout/src/demos/help.tsx +683 -0
- package/packages/layout/src/demos/hideMenu.tsx +29 -0
- package/packages/layout/src/demos/immersive-navigation-top.tsx +106 -0
- package/packages/layout/src/demos/immersive-navigation.tsx +139 -0
- package/packages/layout/src/demos/menu-group.tsx +138 -0
- package/packages/layout/src/demos/mixMode.tsx +148 -0
- package/packages/layout/src/demos/morse_debug.tsx +234 -0
- package/packages/layout/src/demos/pageSimplify.tsx +153 -0
- package/packages/layout/src/demos/proHelpModal.tsx +367 -0
- package/packages/layout/src/demos/searchMenu.tsx +90 -0
- package/packages/layout/src/demos/siderMode.tsx +82 -0
- package/packages/layout/src/demos/siteMenu.tsx +148 -0
- package/packages/layout/src/demos/splitMenus.tsx +123 -0
- package/packages/layout/src/demos/theme.tsx +159 -0
- package/packages/layout/src/demos/top-breadcrumb.tsx +68 -0
- package/packages/layout/src/demos/topMode.tsx +351 -0
- package/packages/layout/src/getPageTitle.ts +138 -0
- package/packages/layout/src/index.tsx +93 -0
- package/packages/layout/src/locales/en-US/settingDrawer.ts +45 -0
- package/packages/layout/src/locales/en-US.ts +5 -0
- package/packages/layout/src/locales/index.ts +33 -0
- package/packages/layout/src/locales/it-IT/settingDrawer.ts +37 -0
- package/packages/layout/src/locales/it-IT.ts +5 -0
- package/packages/layout/src/locales/ko-KR/settingDrawer.ts +41 -0
- package/packages/layout/src/locales/ko-KR.ts +5 -0
- package/packages/layout/src/locales/zh-CN/settingDrawer.ts +45 -0
- package/packages/layout/src/locales/zh-CN.ts +5 -0
- package/packages/layout/src/locales/zh-TW/settingDrawer.ts +37 -0
- package/packages/layout/src/locales/zh-TW.ts +5 -0
- package/packages/layout/src/style/index.ts +280 -0
- package/packages/layout/src/typing.ts +77 -0
- package/packages/layout/src/utils/getBreadcrumbProps.tsx +204 -0
- package/packages/layout/src/utils/getMenuData.ts +42 -0
- package/packages/layout/src/utils/pathTools.ts +10 -0
- package/packages/layout/src/utils/useCurrentMenuLayoutProps.ts +36 -0
- package/packages/layout/src/utils/utils.ts +66 -0
- package/packages/layout/tsconfig.json +23 -0
- package/packages/list/.fatherrc.ts +5 -0
- package/packages/list/CHANGELOG.md +1840 -0
- package/packages/list/README.md +49 -0
- package/packages/list/package.json +62 -0
- package/packages/list/src/Item.tsx +389 -0
- package/packages/list/src/ListView.tsx +327 -0
- package/packages/list/src/components/list.en-US.md +147 -0
- package/packages/list/src/components/list.md +149 -0
- package/packages/list/src/constants.ts +17 -0
- package/packages/list/src/demos/ToolBar.tsx +195 -0
- package/packages/list/src/demos/base.tsx +85 -0
- package/packages/list/src/demos/card-list.tsx +117 -0
- package/packages/list/src/demos/editable.tsx +89 -0
- package/packages/list/src/demos/expand.tsx +92 -0
- package/packages/list/src/demos/filter.tsx +125 -0
- package/packages/list/src/demos/layout.tsx +95 -0
- package/packages/list/src/demos/pagination.tsx +64 -0
- package/packages/list/src/demos/search.tsx +123 -0
- package/packages/list/src/demos/selectedRow.tsx +86 -0
- package/packages/list/src/demos/size.tsx +126 -0
- package/packages/list/src/demos/special.tsx +109 -0
- package/packages/list/src/demos/testConfigProvider.tsx +66 -0
- package/packages/list/src/index.tsx +251 -0
- package/packages/list/src/style/index.ts +283 -0
- package/packages/list/tsconfig.json +33 -0
- package/packages/provider/.fatherrc.ts +5 -0
- package/packages/provider/CHANGELOG.md +824 -0
- package/packages/provider/README.md +19 -0
- package/packages/provider/package.json +58 -0
- package/packages/provider/src/index.tsx +484 -0
- package/packages/provider/src/intl.ts +183 -0
- package/packages/provider/src/locale/ar_EG.tsx +71 -0
- package/packages/provider/src/locale/ca_ES.tsx +71 -0
- package/packages/provider/src/locale/cs_CZ.tsx +74 -0
- package/packages/provider/src/locale/de_DE.tsx +71 -0
- package/packages/provider/src/locale/en_GB.tsx +73 -0
- package/packages/provider/src/locale/en_US.tsx +75 -0
- package/packages/provider/src/locale/es_ES.tsx +71 -0
- package/packages/provider/src/locale/fa_IR.tsx +71 -0
- package/packages/provider/src/locale/fr_FR.tsx +71 -0
- package/packages/provider/src/locale/he_IL.tsx +74 -0
- package/packages/provider/src/locale/hr_HR.tsx +71 -0
- package/packages/provider/src/locale/id_ID.tsx +71 -0
- package/packages/provider/src/locale/it_IT.tsx +71 -0
- package/packages/provider/src/locale/ja_JP.tsx +71 -0
- package/packages/provider/src/locale/ko_KR.tsx +71 -0
- package/packages/provider/src/locale/mn_MN.tsx +71 -0
- package/packages/provider/src/locale/ms_MY.tsx +71 -0
- package/packages/provider/src/locale/nl_NL.tsx +74 -0
- package/packages/provider/src/locale/pl_PL.tsx +71 -0
- package/packages/provider/src/locale/pt_BR.tsx +71 -0
- package/packages/provider/src/locale/ro_RO.tsx +74 -0
- package/packages/provider/src/locale/ru_RU.tsx +71 -0
- package/packages/provider/src/locale/sk_SK.tsx +74 -0
- package/packages/provider/src/locale/sr_RS.tsx +71 -0
- package/packages/provider/src/locale/sv_SE.tsx +74 -0
- package/packages/provider/src/locale/th_TH.tsx +74 -0
- package/packages/provider/src/locale/tr_TR.tsx +71 -0
- package/packages/provider/src/locale/uk_UA.tsx +74 -0
- package/packages/provider/src/locale/uz_UZ.tsx +71 -0
- package/packages/provider/src/locale/vi_VN.tsx +71 -0
- package/packages/provider/src/locale/zh_CN.tsx +74 -0
- package/packages/provider/src/locale/zh_TW.tsx +74 -0
- package/packages/provider/src/typing/layoutToken.ts +175 -0
- package/packages/provider/src/useStyle/index.ts +141 -0
- package/packages/provider/src/useStyle/token.ts +412 -0
- package/packages/provider/src/utils/merge.ts +28 -0
- package/packages/provider/tsconfig.json +18 -0
- package/packages/skeleton/.fatherrc.ts +5 -0
- package/packages/skeleton/CHANGELOG.md +253 -0
- package/packages/skeleton/README.md +19 -0
- package/packages/skeleton/package.json +54 -0
- package/packages/skeleton/src/components/Descriptions/index.tsx +328 -0
- package/packages/skeleton/src/components/List/index.tsx +310 -0
- package/packages/skeleton/src/components/Result/index.tsx +54 -0
- package/packages/skeleton/src/components/skeleton.en-US.md +49 -0
- package/packages/skeleton/src/components/skeleton.md +41 -0
- package/packages/skeleton/src/demos/descriptions.tsx +14 -0
- package/packages/skeleton/src/demos/list.static.tsx +12 -0
- package/packages/skeleton/src/demos/list.tsx +12 -0
- package/packages/skeleton/src/demos/result.tsx +12 -0
- package/packages/skeleton/src/index.tsx +48 -0
- package/packages/skeleton/tsconfig.json +18 -0
- package/packages/table/.fatherrc.ts +5 -0
- package/packages/table/CHANGELOG.md +2622 -0
- package/packages/table/README.md +167 -0
- package/packages/table/package.json +75 -0
- package/packages/table/src/Store/Provide.tsx +261 -0
- package/packages/table/src/Table.tsx +1043 -0
- package/packages/table/src/components/Alert/index.tsx +96 -0
- package/packages/table/src/components/Alert/style.ts +45 -0
- package/packages/table/src/components/ColumnSetting/index.tsx +535 -0
- package/packages/table/src/components/ColumnSetting/style.ts +104 -0
- package/packages/table/src/components/DragSortTable/demos/drag-sort-table.tsx +164 -0
- package/packages/table/src/components/DragSortTable/demos/drag.tsx +74 -0
- package/packages/table/src/components/DragSortTable/index.en-US.md +28 -0
- package/packages/table/src/components/DragSortTable/index.md +26 -0
- package/packages/table/src/components/DragSortTable/index.tsx +112 -0
- package/packages/table/src/components/DragSortTable/style.ts +35 -0
- package/packages/table/src/components/Dropdown/index.tsx +86 -0
- package/packages/table/src/components/EditableTable/CellEditorTable.tsx +67 -0
- package/packages/table/src/components/EditableTable/RowEditorTable.tsx +60 -0
- package/packages/table/src/components/EditableTable/demos/basic.tsx +219 -0
- package/packages/table/src/components/EditableTable/demos/cell-editor-table.tsx +101 -0
- package/packages/table/src/components/EditableTable/demos/children.tsx +202 -0
- package/packages/table/src/components/EditableTable/demos/custom.tsx +257 -0
- package/packages/table/src/components/EditableTable/demos/form-item.tsx +254 -0
- package/packages/table/src/components/EditableTable/demos/form-linkage.tsx +259 -0
- package/packages/table/src/components/EditableTable/demos/real-time-editing.tsx +155 -0
- package/packages/table/src/components/EditableTable/demos/row-editor-table.tsx +100 -0
- package/packages/table/src/components/EditableTable/index.en-US.md +303 -0
- package/packages/table/src/components/EditableTable/index.md +303 -0
- package/packages/table/src/components/EditableTable/index.tsx +562 -0
- package/packages/table/src/components/Form/FormRender.tsx +262 -0
- package/packages/table/src/components/Form/index.tsx +194 -0
- package/packages/table/src/components/ListToolBar/HeaderMenu.tsx +132 -0
- package/packages/table/src/components/ListToolBar/index.tsx +420 -0
- package/packages/table/src/components/ListToolBar/style.ts +127 -0
- package/packages/table/src/components/ToolBar/DensityIcon.tsx +47 -0
- package/packages/table/src/components/ToolBar/FullscreenIcon.tsx +29 -0
- package/packages/table/src/components/ToolBar/index.tsx +419 -0
- package/packages/table/src/components/table.$tab-api.md +243 -0
- package/packages/table/src/components/table.en-US.$tab-api.md +210 -0
- package/packages/table/src/components/table.en-US.md +333 -0
- package/packages/table/src/components/table.md +338 -0
- package/packages/table/src/demos/ListToolBar/basic.tsx +124 -0
- package/packages/table/src/demos/ListToolBar/menu.tsx +148 -0
- package/packages/table/src/demos/ListToolBar/multipleLine.tsx +139 -0
- package/packages/table/src/demos/ListToolBar/no-title.tsx +108 -0
- package/packages/table/src/demos/ListToolBar/tabs.tsx +176 -0
- package/packages/table/src/demos/batchOption.tsx +180 -0
- package/packages/table/src/demos/card-title.tsx +93 -0
- package/packages/table/src/demos/columns-setting-custom-icon.tsx +55 -0
- package/packages/table/src/demos/columnsStateMap.tsx +113 -0
- package/packages/table/src/demos/config-provider.tsx +139 -0
- package/packages/table/src/demos/crud.tsx +168 -0
- package/packages/table/src/demos/customization-value-type.tsx +174 -0
- package/packages/table/src/demos/dataSource.tsx +178 -0
- package/packages/table/src/demos/dateFormatter.tsx +130 -0
- package/packages/table/src/demos/dynamic-columns-state.tsx +151 -0
- package/packages/table/src/demos/dynamic-settings.tsx +723 -0
- package/packages/table/src/demos/edittable-rules.tsx +106 -0
- package/packages/table/src/demos/error-boundaries-false.tsx +81 -0
- package/packages/table/src/demos/error-boundaries.tsx +201 -0
- package/packages/table/src/demos/form.tsx +82 -0
- package/packages/table/src/demos/intl.tsx +119 -0
- package/packages/table/src/demos/lightfilter.tsx +81 -0
- package/packages/table/src/demos/linkage_form.tsx +175 -0
- package/packages/table/src/demos/listToolBar.tsx +184 -0
- package/packages/table/src/demos/no-option.tsx +113 -0
- package/packages/table/src/demos/no-title.tsx +167 -0
- package/packages/table/src/demos/normal.tsx +124 -0
- package/packages/table/src/demos/open-rules.tsx +187 -0
- package/packages/table/src/demos/pollinga.tsx +129 -0
- package/packages/table/src/demos/renderTable.tsx +159 -0
- package/packages/table/src/demos/rtl_table.tsx +137 -0
- package/packages/table/src/demos/search.tsx +46 -0
- package/packages/table/src/demos/search_option.tsx +66 -0
- package/packages/table/src/demos/single-test.tsx +254 -0
- package/packages/table/src/demos/single.tsx +242 -0
- package/packages/table/src/demos/split.tsx +200 -0
- package/packages/table/src/demos/table-nested.tsx +162 -0
- package/packages/table/src/demos/theme.tsx +235 -0
- package/packages/table/src/demos/valueType.tsx +136 -0
- package/packages/table/src/demos/valueTypeDate.tsx +138 -0
- package/packages/table/src/demos/valueTypeNumber.tsx +117 -0
- package/packages/table/src/demos/valueType_select.tsx +188 -0
- package/packages/table/src/index.tsx +96 -0
- package/packages/table/src/style/index.ts +178 -0
- package/packages/table/src/typing.ts +585 -0
- package/packages/table/src/useFetchData.tsx +464 -0
- package/packages/table/src/utils/cellRenderToFromItem.tsx +360 -0
- package/packages/table/src/utils/columnRender.tsx +220 -0
- package/packages/table/src/utils/columnSort.ts +26 -0
- package/packages/table/src/utils/genProColumnToColumn.tsx +192 -0
- package/packages/table/src/utils/index.ts +224 -0
- package/packages/table/src/utils/useDragSort.tsx +210 -0
- package/packages/table/tsconfig.json +26 -0
- package/packages/utils/.fatherrc.ts +5 -0
- package/packages/utils/CHANGELOG.md +1747 -0
- package/packages/utils/README.md +19 -0
- package/packages/utils/package.json +65 -0
- package/packages/utils/src/compareVersions/coverToNewToken.ts +44 -0
- package/packages/utils/src/compareVersions/index.ts +84 -0
- package/packages/utils/src/compareVersions/menuOverlayCompatible.tsx +20 -0
- package/packages/utils/src/compareVersions/openVisibleCompatible.ts +25 -0
- package/packages/utils/src/compatible/compatibleBorder.ts +21 -0
- package/packages/utils/src/components/DropdownFooter/index.tsx +79 -0
- package/packages/utils/src/components/DropdownFooter/style.ts +30 -0
- package/packages/utils/src/components/ErrorBoundary/index.tsx +37 -0
- package/packages/utils/src/components/FieldLabel/index.tsx +222 -0
- package/packages/utils/src/components/FieldLabel/style.ts +121 -0
- package/packages/utils/src/components/FilterDropdown/index.tsx +100 -0
- package/packages/utils/src/components/FilterDropdown/style.ts +28 -0
- package/packages/utils/src/components/InlineErrorFormItem/index.tsx +196 -0
- package/packages/utils/src/components/InlineErrorFormItem/style.ts +76 -0
- package/packages/utils/src/components/LabelIconTip/index.tsx +63 -0
- package/packages/utils/src/components/LabelIconTip/style.ts +49 -0
- package/packages/utils/src/components/ProFormContext/index.tsx +45 -0
- package/packages/utils/src/conversionMomentValue/index.ts +203 -0
- package/packages/utils/src/dateArrayFormatter/index.tsx +60 -0
- package/packages/utils/src/genCopyable/index.tsx +71 -0
- package/packages/utils/src/getFieldPropsOrFormItemProps/index.tsx +22 -0
- package/packages/utils/src/hooks/useDebounceFn/index.ts +47 -0
- package/packages/utils/src/hooks/useDebounceValue/index.ts +32 -0
- package/packages/utils/src/hooks/useDeepCompareEffect/index.ts +42 -0
- package/packages/utils/src/hooks/useDeepCompareMemo/index.ts +22 -0
- package/packages/utils/src/hooks/useDocumentTitle/index.ts +19 -0
- package/packages/utils/src/hooks/useFetchData/index.tsx +60 -0
- package/packages/utils/src/hooks/useForceRender/index.ts +9 -0
- package/packages/utils/src/hooks/useLatest/index.ts +10 -0
- package/packages/utils/src/hooks/usePrevious/index.ts +11 -0
- package/packages/utils/src/hooks/useReactiveRef/index.ts +21 -0
- package/packages/utils/src/hooks/useRefCallback/index.ts +42 -0
- package/packages/utils/src/hooks/useRefFunction/index.ts +11 -0
- package/packages/utils/src/index.tsx +158 -0
- package/packages/utils/src/isBrowser/index.ts +24 -0
- package/packages/utils/src/isDeepEqualReact/index.ts +96 -0
- package/packages/utils/src/isDropdownValueType/index.ts +13 -0
- package/packages/utils/src/isImg/index.ts +4 -0
- package/packages/utils/src/isNil/index.ts +2 -0
- package/packages/utils/src/isUrl/index.ts +17 -0
- package/packages/utils/src/merge/index.ts +38 -0
- package/packages/utils/src/nanoid/index.ts +41 -0
- package/packages/utils/src/omitBoolean/index.ts +11 -0
- package/packages/utils/src/omitUndefined/index.ts +18 -0
- package/packages/utils/src/omitUndefinedAndEmptyArr/index.ts +15 -0
- package/packages/utils/src/parseValueToMoment/index.ts +39 -0
- package/packages/utils/src/pickProFormItemProps/index.tsx +44 -0
- package/packages/utils/src/pickProProps/index.tsx +16 -0
- package/packages/utils/src/proFieldParsingText/index.tsx +142 -0
- package/packages/utils/src/runFunction/index.ts +7 -0
- package/packages/utils/src/stringify/index.ts +13 -0
- package/packages/utils/src/transformKeySubmitValue/index.ts +207 -0
- package/packages/utils/src/typing.ts +767 -0
- package/packages/utils/src/useEditableArray/index.tsx +1134 -0
- package/packages/utils/src/useEditableMap/index.tsx +236 -0
- package/packages/utils/src/useMediaQuery/index.ts +109 -0
- package/packages/utils/src/useMediaQuery/query.ts +19 -0
- package/packages/utils/src/useMountMergeState/index.ts +3 -0
- package/packages/utils/tsconfig.json +21 -0
- package/pnpm-workspace.yaml +2 -0
- package/public/CNAME +1 -0
- package/public/favicon.ico +0 -0
- package/public/icon.png +0 -0
- package/public/sitemap.xml +458 -0
- package/scripts/bootstrap.js +108 -0
- package/scripts/changelogs.js +10 -0
- package/scripts/checkDeps.js +166 -0
- package/scripts/checkPublish.js +10 -0
- package/scripts/createRelease.js +125 -0
- package/scripts/gen_version.js +34 -0
- package/scripts/generateSizeLimit.js +38 -0
- package/scripts/issue.js +91 -0
- package/scripts/preDeploy.js +18 -0
- package/scripts/readApi.mjs +145 -0
- package/scripts/release.js +184 -0
- package/scripts/replaceEs.js +22 -0
- package/scripts/replaceLib.js +22 -0
- package/scripts/replaceLodash.js +21 -0
- package/scripts/syncTNPM.js +19 -0
- package/scripts/utils/exec.js +23 -0
- package/scripts/utils/getPackages.js +8 -0
- package/scripts/utils/isNextVersion.js +7 -0
- package/scripts/verifyCommit.js +28 -0
- package/tsconfig.json +39 -9
- package/typings.d.ts +6 -0
- package/vercel.json +7 -0
- package/vitest.config.ts +48 -0
- package/.idea/modules.xml +0 -8
- package/.idea/test-components.iml +0 -12
- package/.idea/vcs.xml +0 -6
- package/build/components/ActionBar/index.d.ts +0 -17
- package/build/components/ActionBar/type.d.ts +0 -82
- package/build/components/DataChart/index.d.ts +0 -7
- package/build/components/DataChart/type.d.ts +0 -50
- package/build/components/DataTable/index.d.ts +0 -9
- package/build/components/DataTable/locales/en-US.d.ts +0 -4
- package/build/components/DataTable/locales/zh-CN.d.ts +0 -4
- package/build/components/DataTable/type.d.ts +0 -117
- package/build/components/DragTable/index.d.ts +0 -9
- package/build/components/DragTable/type.d.ts +0 -22
- package/build/components/FileTag/index.d.ts +0 -9
- package/build/components/FileTag/locales/en-US.d.ts +0 -5
- package/build/components/FileTag/locales/zh-CN.d.ts +0 -5
- package/build/components/FileTag/type.d.ts +0 -35
- package/build/components/HtmlRender/index.d.ts +0 -10
- package/build/components/HtmlRender/type.d.ts +0 -13
- package/build/components/IconRender/index.d.ts +0 -9
- package/build/components/IconRender/type.d.ts +0 -9
- package/build/components/ThemeListener/index.d.ts +0 -10
- package/build/components/ThemeListener/type.d.ts +0 -10
- package/build/components/ThemeSetter/index.d.ts +0 -9
- package/build/components/UserCard/index.d.ts +0 -9
- package/build/components/UserCard/locales/en-US.d.ts +0 -10
- package/build/components/UserCard/locales/zh-CN.d.ts +0 -10
- package/build/components/UserCard/type.d.ts +0 -52
- package/build/components/UserSelector/index.d.ts +0 -8
- package/build/components/UserSelector/locales/en-US.d.ts +0 -5
- package/build/components/UserSelector/locales/zh-CN.d.ts +0 -5
- package/build/components/UserSelector/type.d.ts +0 -60
- package/build/index.d.ts +0 -78
- package/build/index.js +0 -28
- package/build/index.js.LICENSE.txt +0 -1733
- package/build/locales/en-US.d.ts +0 -20
- package/build/locales/zh-CN.d.ts +0 -20
- package/build/services/constants/commonConstant.d.ts +0 -6
- package/build/services/constants/dbConstant.d.ts +0 -4
- package/build/services/constants/iconConstant.d.ts +0 -4
- package/build/services/constants/locales/en-US.d.ts +0 -8
- package/build/services/constants/locales/zh-CN.d.ts +0 -8
- package/build/services/enums/eventEnum.d.ts +0 -10
- package/build/services/enums/storageEnum.d.ts +0 -10
- package/build/services/types/commonType.d.ts +0 -42
- package/build/services/utils/dbUtil.d.ts +0 -5
- package/build/services/utils/eventUtil.d.ts +0 -5
- package/build/services/utils/objectUtil.d.ts +0 -5
- package/build/services/utils/renderUtil.d.ts +0 -6
- package/build/services/utils/resourceUtil.d.ts +0 -12
- package/build/services/utils/storageUtil.d.ts +0 -5
|
@@ -0,0 +1,2781 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [2.31.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.31.1...@ant-design/pro-form@2.31.2) (2024-11-14)
|
|
6
|
+
|
|
7
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
8
|
+
|
|
9
|
+
## [2.31.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.31.0...@ant-design/pro-form@2.31.1) (2024-10-22)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **form:** 优化 URL 参数合并逻辑以提高性能和可读性 ([3e026c6](https://github.com/ant-design/pro-components/commit/3e026c62d9be37732117fa4697e92f174fea87f1))
|
|
14
|
+
- **package:** 更新 repository URL 格式为 git+ssh 以确保一致性 ([8882d51](https://github.com/ant-design/pro-components/commit/8882d5164d8b14f8971bf9f34a339d282ac766ba))
|
|
15
|
+
|
|
16
|
+
# [2.31.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.30.2...@ant-design/pro-form@2.31.0) (2024-10-17)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- replace `lodash-es` imports with `lodash` in CJS builds ([#8754](https://github.com/ant-design/pro-components/issues/8754)) ([3ef9283](https://github.com/ant-design/pro-components/commit/3ef9283a4cf52b8106d049af49f41dc37bb448b1))
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- added exports to support ESM environments such as vitest ([#8738](https://github.com/ant-design/pro-components/issues/8738)) ([71c4be9](https://github.com/ant-design/pro-components/commit/71c4be9c9ca5942154e0473e62be608d784d53fc))
|
|
25
|
+
|
|
26
|
+
## [2.30.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.30.1...@ant-design/pro-form@2.30.2) (2024-09-12)
|
|
27
|
+
|
|
28
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
29
|
+
|
|
30
|
+
## [2.30.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.30.0...@ant-design/pro-form@2.30.1) (2024-09-12)
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- **form:** add formRef.current error ([b4c88c5](https://github.com/ant-design/pro-components/commit/b4c88c55b6ae3c9ed977704ddbf45e159434fdbd))
|
|
35
|
+
|
|
36
|
+
# [2.30.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.29.0...@ant-design/pro-form@2.30.0) (2024-09-05)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
- 修复如果没传 backgroundImageUrl 会导致 url("undefined") 发送一次请求 ([#8689](https://github.com/ant-design/pro-components/issues/8689)) ([8acaa16](https://github.com/ant-design/pro-components/commit/8acaa160738fdbe410b85d66cb64375083927e16))
|
|
41
|
+
- **form:** props title is not assignable to type ReactNode ([#8682](https://github.com/ant-design/pro-components/issues/8682)) ([991ab91](https://github.com/ant-design/pro-components/commit/991ab9140478262e1776e5b750993860fa1c297f))
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
- **Form:** FormRef support forward nativeElement ([#8632](https://github.com/ant-design/pro-components/issues/8632)) ([d113207](https://github.com/ant-design/pro-components/commit/d1132070c4d7b2df3bfaebe33615faa007ea6ceb))
|
|
46
|
+
|
|
47
|
+
# [2.29.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.28.4...@ant-design/pro-form@2.29.0) (2024-08-05)
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
- **form:** correct line height in list action ([#8584](https://github.com/ant-design/pro-components/issues/8584)) ([e2b2ea6](https://github.com/ant-design/pro-components/commit/e2b2ea65185ef6e840f0f26992dae3d7cead27fe))
|
|
52
|
+
- **form:** pass the OptionType type of ProFormSelect to the inner Select ([#8568](https://github.com/ant-design/pro-components/issues/8568)) ([6d8b99f](https://github.com/ant-design/pro-components/commit/6d8b99f356c43d20ce6bc868fe28d300af3f7c29))
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
- **form:** export ProFormTreeSelectProps ([#8589](https://github.com/ant-design/pro-components/issues/8589)) ([55b912c](https://github.com/ant-design/pro-components/commit/55b912ccec854824b38f2d6f6a6cd39fb028204d))
|
|
57
|
+
|
|
58
|
+
### Performance Improvements
|
|
59
|
+
|
|
60
|
+
- lodash => lodash-es ([#8606](https://github.com/ant-design/pro-components/issues/8606)) ([455b4f1](https://github.com/ant-design/pro-components/commit/455b4f1bb1edfd896c04d98c37da6f97fb2428cb))
|
|
61
|
+
|
|
62
|
+
## [2.28.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.28.3...@ant-design/pro-form@2.28.4) (2024-07-18)
|
|
63
|
+
|
|
64
|
+
### Bug Fixes
|
|
65
|
+
|
|
66
|
+
- **form:** upload use flex style ([d0e410c](https://github.com/ant-design/pro-components/commit/d0e410cff6133e7ae83f48aebf15c86d94e9ad56))
|
|
67
|
+
|
|
68
|
+
## [2.28.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.28.2...@ant-design/pro-form@2.28.3) (2024-07-16)
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
- **form:** fix ConfigProvider.useConfig unsupport antd@4 error ([#8567](https://github.com/ant-design/pro-components/issues/8567)) ([59e9cd5](https://github.com/ant-design/pro-components/commit/59e9cd5c0df0c17f556e9bc4153fa451434993d8))
|
|
73
|
+
|
|
74
|
+
## [2.28.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.28.1...@ant-design/pro-form@2.28.2) (2024-07-15)
|
|
75
|
+
|
|
76
|
+
### Bug Fixes
|
|
77
|
+
|
|
78
|
+
- **form:** Digit support stringMode ([5075113](https://github.com/ant-design/pro-components/commit/50751136faacb021f8322645364f4bcc3f3453d4))
|
|
79
|
+
- **form:** fix FormList size=small, icon is default size error ([d797fa7](https://github.com/ant-design/pro-components/commit/d797fa7f98c1042e531758ae8a3e5d32950c783b))
|
|
80
|
+
|
|
81
|
+
## [2.28.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.28.0...@ant-design/pro-form@2.28.1) (2024-06-21)
|
|
82
|
+
|
|
83
|
+
### Bug Fixes
|
|
84
|
+
|
|
85
|
+
- **form:** formItem help render type ([#8482](https://github.com/ant-design/pro-components/issues/8482)) ([a447cf5](https://github.com/ant-design/pro-components/commit/a447cf511a68e00c142fd9837762920282df6916))
|
|
86
|
+
|
|
87
|
+
# [2.28.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.27.0...@ant-design/pro-form@2.28.0) (2024-06-08)
|
|
88
|
+
|
|
89
|
+
### Bug Fixes
|
|
90
|
+
|
|
91
|
+
- **form:** 修复 openChange 打开时不触发问题 ([#8403](https://github.com/ant-design/pro-components/issues/8403)) ([5a1153b](https://github.com/ant-design/pro-components/commit/5a1153bcfa6de5d48e30d85401fa748ecd86864d))
|
|
92
|
+
|
|
93
|
+
### Features
|
|
94
|
+
|
|
95
|
+
- **form:** add form item help render type ([#8462](https://github.com/ant-design/pro-components/issues/8462)) ([08ab425](https://github.com/ant-design/pro-components/commit/08ab425e396e0476522b383d08ecbced088ebd33))
|
|
96
|
+
|
|
97
|
+
# [2.27.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.5...@ant-design/pro-form@2.27.0) (2024-05-20)
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
- add onBlur to filedChildren ([#8418](https://github.com/ant-design/pro-components/issues/8418)) ([3b104b9](https://github.com/ant-design/pro-components/commit/3b104b9e590e1eef139a5164bffc70b243389db3))
|
|
102
|
+
|
|
103
|
+
## [2.26.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.5...@ant-design/pro-form@2.26.6) (2024-04-21)
|
|
104
|
+
|
|
105
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
106
|
+
|
|
107
|
+
## [2.26.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.4...@ant-design/pro-form@2.26.5) (2024-04-21)
|
|
108
|
+
|
|
109
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
110
|
+
|
|
111
|
+
## [2.26.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.2...@ant-design/pro-form@2.26.4) (2024-04-20)
|
|
112
|
+
|
|
113
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
114
|
+
|
|
115
|
+
## [2.26.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.2...@ant-design/pro-form@2.26.3) (2024-04-19)
|
|
116
|
+
|
|
117
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
118
|
+
|
|
119
|
+
## [2.26.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.1...@ant-design/pro-form@2.26.2) (2024-04-19)
|
|
120
|
+
|
|
121
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
122
|
+
|
|
123
|
+
## [2.26.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.26.0...@ant-design/pro-form@2.26.1) (2024-04-17)
|
|
124
|
+
|
|
125
|
+
### Bug Fixes
|
|
126
|
+
|
|
127
|
+
- replace login url ([#8315](https://github.com/ant-design/pro-components/issues/8315)) ([a2294c3](https://github.com/ant-design/pro-components/commit/a2294c3fa4efe2259d6ad3c00500e4fa5a5beab7))
|
|
128
|
+
|
|
129
|
+
# [2.26.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.25.1...@ant-design/pro-form@2.26.0) (2024-04-17)
|
|
130
|
+
|
|
131
|
+
### Bug Fixes
|
|
132
|
+
|
|
133
|
+
- **form:** FilterDropdown onClear setTempValue null ([#8305](https://github.com/ant-design/pro-components/issues/8305)) ([6548873](https://github.com/ant-design/pro-components/commit/6548873523505994daa22c30217b89c7313e8187))
|
|
134
|
+
- **form:** onOpenChange fires twice when opening ModalForm ([#8311](https://github.com/ant-design/pro-components/issues/8311)) ([f12ef2b](https://github.com/ant-design/pro-components/commit/f12ef2ba4252122210b1242ca3552c8f3730c944))
|
|
135
|
+
|
|
136
|
+
### Features
|
|
137
|
+
|
|
138
|
+
- **form:** form list support transform ([7ea4fd1](https://github.com/ant-design/pro-components/commit/7ea4fd180b686b261e103cf5ca9b46f6c3355605))
|
|
139
|
+
|
|
140
|
+
## [2.25.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.25.0...@ant-design/pro-form@2.25.1) (2024-03-27)
|
|
141
|
+
|
|
142
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
143
|
+
|
|
144
|
+
# [2.25.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.24.5...@ant-design/pro-form@2.25.0) (2024-03-20)
|
|
145
|
+
|
|
146
|
+
### Features
|
|
147
|
+
|
|
148
|
+
- **form:** ProFormFieldSet support funtion ([efbdab6](https://github.com/ant-design/pro-components/commit/efbdab6bb564a1bde4679b2069acdf3041f96a5c))
|
|
149
|
+
|
|
150
|
+
## [2.24.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.24.4...@ant-design/pro-form@2.24.5) (2024-03-15)
|
|
151
|
+
|
|
152
|
+
### Bug Fixes
|
|
153
|
+
|
|
154
|
+
- **components:** remove deprecated tip props ([85de8a2](https://github.com/ant-design/pro-components/commit/85de8a2bad41a21254719ff7f1df5328e42fd0fb))
|
|
155
|
+
- **form:** PasswordStrength support morse options ([3ab9f11](https://github.com/ant-design/pro-components/commit/3ab9f11bf0307d4d0e127cb66c9042c72645dc64))
|
|
156
|
+
- **list:** support add string line ([9ec366d](https://github.com/ant-design/pro-components/commit/9ec366d3d1ef09587e48a3d98ab5ffe584f3248c))
|
|
157
|
+
- **QueryFilter:** 修复 ProFormDependency 在 QueryFilter 中失效的问题 ([#8212](https://github.com/ant-design/pro-components/issues/8212)) ([fdc5418](https://github.com/ant-design/pro-components/commit/fdc5418b4a12775819a0caafad580236afa7a607))
|
|
158
|
+
|
|
159
|
+
## [2.24.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.24.3...@ant-design/pro-form@2.24.4) (2024-01-31)
|
|
160
|
+
|
|
161
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
162
|
+
|
|
163
|
+
## [2.24.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.24.2...@ant-design/pro-form@2.24.3) (2024-01-18)
|
|
164
|
+
|
|
165
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
166
|
+
|
|
167
|
+
## [2.24.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.24.1...@ant-design/pro-form@2.24.2) (2024-01-18)
|
|
168
|
+
|
|
169
|
+
### Bug Fixes
|
|
170
|
+
|
|
171
|
+
- **form:** 修复默认情况下 sumbitter render 和 render 时候 dom 位置不一致的问题 ([#8096](https://github.com/ant-design/pro-components/issues/8096)) ([96d2658](https://github.com/ant-design/pro-components/commit/96d26580383a0a763027ad99b5f78f8dc60f2903))
|
|
172
|
+
- **form:** fix DrawerForm and ModalForm button error ([7bf4b30](https://github.com/ant-design/pro-components/commit/7bf4b30938275278f546d740a3ef5076b97872be))
|
|
173
|
+
|
|
174
|
+
## [2.24.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.24.0...@ant-design/pro-form@2.24.1) (2024-01-15)
|
|
175
|
+
|
|
176
|
+
### Bug Fixes
|
|
177
|
+
|
|
178
|
+
- **form:** fix ProFormPage submit error ([cf32be9](https://github.com/ant-design/pro-components/commit/cf32be9701f3fce38f79567340ec11b1ad524763))
|
|
179
|
+
|
|
180
|
+
# [2.24.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.23.2...@ant-design/pro-form@2.24.0) (2024-01-15)
|
|
181
|
+
|
|
182
|
+
### Bug Fixes
|
|
183
|
+
|
|
184
|
+
- **form:** add playsInline props ([e1233d1](https://github.com/ant-design/pro-components/commit/e1233d1eb9dde02a5fd74a176586dc2279fada81)), closes [#8011](https://github.com/ant-design/pro-components/issues/8011)
|
|
185
|
+
- **form:** no set maxHeight ([64dc9f7](https://github.com/ant-design/pro-components/commit/64dc9f77e6ca6333b3dfc4f42ad74cc11a3df051))
|
|
186
|
+
- **form:** remove extra `div` ([#7987](https://github.com/ant-design/pro-components/issues/7987)) ([d9bee22](https://github.com/ant-design/pro-components/commit/d9bee225021b9c50e7a25e5e657ed9432fef0f74))
|
|
187
|
+
- **form:** 修复 dateFormatter 使用 string 类型提示错误 ([#8029](https://github.com/ant-design/pro-components/issues/8029)) ([6d764ad](https://github.com/ant-design/pro-components/commit/6d764ad498405ad59f4fda71db1b0c632d8150a1))
|
|
188
|
+
- **form:** 修复特殊情况(不使用 ProFormMoney 使用 FieldMoney)下格式化错误的问题 ([#8024](https://github.com/ant-design/pro-components/issues/8024)) ([c321689](https://github.com/ant-design/pro-components/commit/c32168973008ddfe7d9c4bef79e1cbd46387b8d3))
|
|
189
|
+
- **form:** 修复特殊情况下多出 moneySymbol 的问题 ([#8004](https://github.com/ant-design/pro-components/issues/8004)) ([f9f0a63](https://github.com/ant-design/pro-components/commit/f9f0a63e9f18950754f6ba6efaead3ab8dcfdb5d))
|
|
190
|
+
- **list:** 修复 ProFormList 透传部分属性到 FormItem 中导致的 react 警告 ([#8051](https://github.com/ant-design/pro-components/issues/8051)) ([ebc08bf](https://github.com/ant-design/pro-components/commit/ebc08bf49248156788448cbf94754c67d5ee1ba0))
|
|
191
|
+
|
|
192
|
+
### Features
|
|
193
|
+
|
|
194
|
+
- **form:** 添加 FormItemRender 组件 ([#8012](https://github.com/ant-design/pro-components/issues/8012)) ([bfd905e](https://github.com/ant-design/pro-components/commit/bfd905ef97b948e4f79ab6afee4005c92ac61d14))
|
|
195
|
+
|
|
196
|
+
## [2.23.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.23.1...@ant-design/pro-form@2.23.2) (2023-12-12)
|
|
197
|
+
|
|
198
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
199
|
+
|
|
200
|
+
## [2.23.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.23.0...@ant-design/pro-form@2.23.1) (2023-11-22)
|
|
201
|
+
|
|
202
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
203
|
+
|
|
204
|
+
# [2.23.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.22.5...@ant-design/pro-form@2.23.0) (2023-11-20)
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
- **form:** ProFormCaptcha onTiming callback ([#7908](https://github.com/ant-design/pro-components/issues/7908)) ([b04a280](https://github.com/ant-design/pro-components/commit/b04a2809773df13959110e64179a6c36eb136c15))
|
|
209
|
+
|
|
210
|
+
## [2.22.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.22.4...@ant-design/pro-form@2.22.5) (2023-11-15)
|
|
211
|
+
|
|
212
|
+
### Bug Fixes
|
|
213
|
+
|
|
214
|
+
- **form:** fix statusRender no work error ([a94f13e](https://github.com/ant-design/pro-components/commit/a94f13eeb9993c96d9f660a1f16e1255b701b04d))
|
|
215
|
+
|
|
216
|
+
## [2.22.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.22.3...@ant-design/pro-form@2.22.4) (2023-11-15)
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
- **form:** PasssWordStrength remove progressDom ([77099e4](https://github.com/ant-design/pro-components/commit/77099e4728c5539325109025c369598ae7e0df82))
|
|
221
|
+
|
|
222
|
+
## [2.22.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.22.2...@ant-design/pro-form@2.22.3) (2023-11-15)
|
|
223
|
+
|
|
224
|
+
### Bug Fixes
|
|
225
|
+
|
|
226
|
+
- **form:** PasssWord statusRender support value ([5abe403](https://github.com/ant-design/pro-components/commit/5abe403aecc3d98b365c8b5fa75763f8b79a494d))
|
|
227
|
+
- **form:** PasssWord use Progress step ([ee6beb6](https://github.com/ant-design/pro-components/commit/ee6beb6d35ec6b58a06e2357a7616dac09252b16))
|
|
228
|
+
- **form:** PassWord getPercent support status ([7c1bf34](https://github.com/ant-design/pro-components/commit/7c1bf34115e2ff0eeafea4545261e35591347e3d))
|
|
229
|
+
|
|
230
|
+
## [2.22.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.22.1...@ant-design/pro-form@2.22.2) (2023-11-15)
|
|
231
|
+
|
|
232
|
+
### Bug Fixes
|
|
233
|
+
|
|
234
|
+
- **form:** Password support strengthText ([fcade9f](https://github.com/ant-design/pro-components/commit/fcade9f3bce22cb032ad5c00a71fc22035e224d2))
|
|
235
|
+
|
|
236
|
+
## [2.22.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.22.0...@ant-design/pro-form@2.22.1) (2023-11-15)
|
|
237
|
+
|
|
238
|
+
### Bug Fixes
|
|
239
|
+
|
|
240
|
+
- **form:** Password support popoverProps ([39aa69b](https://github.com/ant-design/pro-components/commit/39aa69b9b38f9cafe2e3df1c66da78d6c784ad6d))
|
|
241
|
+
|
|
242
|
+
# [2.22.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.6...@ant-design/pro-form@2.22.0) (2023-11-14)
|
|
243
|
+
|
|
244
|
+
### Features
|
|
245
|
+
|
|
246
|
+
- **from:** ProForm support statusRender ([fb8b42e](https://github.com/ant-design/pro-components/commit/fb8b42e14175e2cdc4641c39b1f5059c98ae6d4d))
|
|
247
|
+
|
|
248
|
+
## [2.21.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.5...@ant-design/pro-form@2.21.6) (2023-10-26)
|
|
249
|
+
|
|
250
|
+
### Bug Fixes
|
|
251
|
+
|
|
252
|
+
- **form:** fix addonWarpStyle no work error ([e5374b7](https://github.com/ant-design/pro-components/commit/e5374b78cea0e4ba938759c91df1f5dafe1fcf7c))
|
|
253
|
+
|
|
254
|
+
## [2.21.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.4...@ant-design/pro-form@2.21.5) (2023-10-26)
|
|
255
|
+
|
|
256
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
257
|
+
|
|
258
|
+
## [2.21.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.3...@ant-design/pro-form@2.21.4) (2023-10-24)
|
|
259
|
+
|
|
260
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
261
|
+
|
|
262
|
+
## [2.21.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.2...@ant-design/pro-form@2.21.3) (2023-10-19)
|
|
263
|
+
|
|
264
|
+
### Bug Fixes
|
|
265
|
+
|
|
266
|
+
- **select:** remove deprecated warning ([#7793](https://github.com/ant-design/pro-components/issues/7793)) ([c6249f0](https://github.com/ant-design/pro-components/commit/c6249f0011fac78f5b535160cb65ac96d64c279e))
|
|
267
|
+
|
|
268
|
+
## [2.21.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.1...@ant-design/pro-form@2.21.2) (2023-10-13)
|
|
269
|
+
|
|
270
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
271
|
+
|
|
272
|
+
## [2.21.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.21.0...@ant-design/pro-form@2.21.1) (2023-10-11)
|
|
273
|
+
|
|
274
|
+
### Bug Fixes
|
|
275
|
+
|
|
276
|
+
- **form:** fix loginPage style error ([80ace22](https://github.com/ant-design/pro-components/commit/80ace22a7628fab9e9070e482706096e6d8d44d7))
|
|
277
|
+
- **form:** 首次同步到 url 参数时也执行 syncToUrl ([#7741](https://github.com/ant-design/pro-components/issues/7741)) ([f733b47](https://github.com/ant-design/pro-components/commit/f733b47a372fcf450c151cc43f72dfa99eaee293))
|
|
278
|
+
|
|
279
|
+
# [2.21.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.20.1...@ant-design/pro-form@2.21.0) (2023-09-26)
|
|
280
|
+
|
|
281
|
+
### Features
|
|
282
|
+
|
|
283
|
+
- **form:** LoginFormPage support backgroundVideoUrl ([6dc50b0](https://github.com/ant-design/pro-components/commit/6dc50b0eea177dac53fa16d354ae368766e001a6))
|
|
284
|
+
|
|
285
|
+
## [2.20.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.20.0...@ant-design/pro-form@2.20.1) (2023-09-26)
|
|
286
|
+
|
|
287
|
+
### Bug Fixes
|
|
288
|
+
|
|
289
|
+
- **form:** fix Captcha style no work error ([f31381d](https://github.com/ant-design/pro-components/commit/f31381dab2fb966eb0223e33cabfd7d3af7b88fc))
|
|
290
|
+
|
|
291
|
+
# [2.20.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.19.0...@ant-design/pro-form@2.20.0) (2023-09-26)
|
|
292
|
+
|
|
293
|
+
### Features
|
|
294
|
+
|
|
295
|
+
- **form:** support more style config ([b8c3954](https://github.com/ant-design/pro-components/commit/b8c39542ffc2d3c7909338c02738e84a3804f13a))
|
|
296
|
+
|
|
297
|
+
# [2.19.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.11...@ant-design/pro-form@2.19.0) (2023-09-26)
|
|
298
|
+
|
|
299
|
+
### Bug Fixes
|
|
300
|
+
|
|
301
|
+
- **form:** the `onChange` event in `ProFormUploadButton` has been triggered multiple times ([#7732](https://github.com/ant-design/pro-components/issues/7732)) ([a76b18c](https://github.com/ant-design/pro-components/commit/a76b18c2f37d16285bcf973081834e3e95d33754))
|
|
302
|
+
|
|
303
|
+
### Features
|
|
304
|
+
|
|
305
|
+
- **form:** new LoginFormPage style ([#7734](https://github.com/ant-design/pro-components/issues/7734)) ([1bc5453](https://github.com/ant-design/pro-components/commit/1bc54531ad3aebac6fc8dc7904dc2299987951c5))
|
|
306
|
+
|
|
307
|
+
## [2.18.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.10...@ant-design/pro-form@2.18.11) (2023-09-25)
|
|
308
|
+
|
|
309
|
+
### Bug Fixes
|
|
310
|
+
|
|
311
|
+
- **layout:** 统一 PageContainer 计算到 styles.ts 中 ([#7699](https://github.com/ant-design/pro-components/issues/7699)) ([ed5c61c](https://github.com/ant-design/pro-components/commit/ed5c61ced2bda9e0f6bab22f3c942792eec682b6))
|
|
312
|
+
|
|
313
|
+
## [2.18.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.9...@ant-design/pro-form@2.18.10) (2023-09-19)
|
|
314
|
+
|
|
315
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
316
|
+
|
|
317
|
+
## [2.18.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.8...@ant-design/pro-form@2.18.9) (2023-09-18)
|
|
318
|
+
|
|
319
|
+
### Bug Fixes
|
|
320
|
+
|
|
321
|
+
- **layout:** 默认宽度更改为 1152 ([84cc927](https://github.com/ant-design/pro-components/commit/84cc9274d5a161b171254b2039a78b2a6942b375))
|
|
322
|
+
- **table:** less render function ([b3ef405](https://github.com/ant-design/pro-components/commit/b3ef405b2e1fcfe688f98096520a828b5d098ed3))
|
|
323
|
+
|
|
324
|
+
## [2.18.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.7...@ant-design/pro-form@2.18.8) (2023-09-18)
|
|
325
|
+
|
|
326
|
+
### Bug Fixes
|
|
327
|
+
|
|
328
|
+
- **form:** form list support readonly ([6407072](https://github.com/ant-design/pro-components/commit/6407072ea4cc3cc6d1d5a8d9f7bea99cdfc6b372))
|
|
329
|
+
- **table:** EditableProTable reset FormItem grid ([c53ecce](https://github.com/ant-design/pro-components/commit/c53ecce5d82553f952b19db22903970f13a586a5))
|
|
330
|
+
|
|
331
|
+
## [2.18.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.6...@ant-design/pro-form@2.18.7) (2023-09-14)
|
|
332
|
+
|
|
333
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
334
|
+
|
|
335
|
+
## [2.18.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.5...@ant-design/pro-form@2.18.6) (2023-09-07)
|
|
336
|
+
|
|
337
|
+
### Bug Fixes
|
|
338
|
+
|
|
339
|
+
- **form:** 修复 DrawerForm With 控制权重失效的问题 ([#7642](https://github.com/ant-design/pro-components/issues/7642)) ([50d7e4e](https://github.com/ant-design/pro-components/commit/50d7e4e442bc9a93b885d499bda9273947e47381))
|
|
340
|
+
|
|
341
|
+
## [2.18.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.4...@ant-design/pro-form@2.18.5) (2023-09-06)
|
|
342
|
+
|
|
343
|
+
### Bug Fixes
|
|
344
|
+
|
|
345
|
+
- **form:** dependency 支持 colSize ([#7611](https://github.com/ant-design/pro-components/issues/7611)) ([27436cc](https://github.com/ant-design/pro-components/commit/27436cc6351cfaa535d1ec9aef1f74e567ef44d7))
|
|
346
|
+
- **form:** fix formList containerClassName and containerStyle no work error ([7a2c9e0](https://github.com/ant-design/pro-components/commit/7a2c9e0ddeb580b618f87773ff336c382be5f38a))
|
|
347
|
+
- **form:** fix marginBlockEnd no use marginLG error ([6e5f384](https://github.com/ant-design/pro-components/commit/6e5f384aa9663e5859cfbceb0d328099ebf36fc8))
|
|
348
|
+
- remove stringify ([25d2c42](https://github.com/ant-design/pro-components/commit/25d2c42a0bda673a0b40b5ae56bd0a852998ecd1))
|
|
349
|
+
|
|
350
|
+
## [2.18.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.3...@ant-design/pro-form@2.18.4) (2023-08-30)
|
|
351
|
+
|
|
352
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
353
|
+
|
|
354
|
+
## [2.18.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.2...@ant-design/pro-form@2.18.3) (2023-08-29)
|
|
355
|
+
|
|
356
|
+
### Bug Fixes
|
|
357
|
+
|
|
358
|
+
- **form:** 解决因 stringify 导致死循环的问题 ([#7599](https://github.com/ant-design/pro-components/issues/7599)) ([d1ab1d1](https://github.com/ant-design/pro-components/commit/d1ab1d1a256cfe41beba7f69abf3588de7dbd446))
|
|
359
|
+
|
|
360
|
+
## [2.18.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.1...@ant-design/pro-form@2.18.2) (2023-08-28)
|
|
361
|
+
|
|
362
|
+
### Bug Fixes
|
|
363
|
+
|
|
364
|
+
- **form:** fix FormItem name is null,but has data error ([#7583](https://github.com/ant-design/pro-components/issues/7583)) ([f8514e3](https://github.com/ant-design/pro-components/commit/f8514e33e57dd448398a34a2ecd76baf6e0a36d9))
|
|
365
|
+
- **layout:** 修复 sider token 样式问题 ([#7574](https://github.com/ant-design/pro-components/issues/7574)) ([c911dff](https://github.com/ant-design/pro-components/commit/c911dff10749e2278e28505ff08d531ee6e95d56))
|
|
366
|
+
|
|
367
|
+
## [2.18.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.18.0...@ant-design/pro-form@2.18.1) (2023-08-17)
|
|
368
|
+
|
|
369
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
370
|
+
|
|
371
|
+
# [2.18.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.17.2...@ant-design/pro-form@2.18.0) (2023-08-10)
|
|
372
|
+
|
|
373
|
+
### Features
|
|
374
|
+
|
|
375
|
+
- **field:** 调整 field color 为 antd 新的 ColorPicker ([#7403](https://github.com/ant-design/pro-components/issues/7403)) ([387ab8f](https://github.com/ant-design/pro-components/commit/387ab8f7fd5d6eb99ebd1458e76712cfce63483a))
|
|
376
|
+
- **form:** transform 支持深合并 ([#7494](https://github.com/ant-design/pro-components/issues/7494)) ([f9372ce](https://github.com/ant-design/pro-components/commit/f9372ce89f6b2f2c53edd7bcda95a89edc211dd3))
|
|
377
|
+
|
|
378
|
+
## [2.17.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.17.1...@ant-design/pro-form@2.17.2) (2023-08-04)
|
|
379
|
+
|
|
380
|
+
### Bug Fixes
|
|
381
|
+
|
|
382
|
+
- **form:** form field support moblie width best ([56ccc63](https://github.com/ant-design/pro-components/commit/56ccc63ef0ef1ddcd457782555d91134bcbec6e6))
|
|
383
|
+
- **form:** update `ReturnType<SearchConvertKeyFn>` ([#7462](https://github.com/ant-design/pro-components/issues/7462)) ([e19dd9e](https://github.com/ant-design/pro-components/commit/e19dd9e68a14bae8dbb6baa756a643df8cab4a9b))
|
|
384
|
+
|
|
385
|
+
## [2.17.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.17.0...@ant-design/pro-form@2.17.1) (2023-07-31)
|
|
386
|
+
|
|
387
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
388
|
+
|
|
389
|
+
# [2.17.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.16.2...@ant-design/pro-form@2.17.0) (2023-07-31)
|
|
390
|
+
|
|
391
|
+
### Features
|
|
392
|
+
|
|
393
|
+
- **form:** StepForm added layoutRender props ([#7431](https://github.com/ant-design/pro-components/issues/7431)) ([3657b98](https://github.com/ant-design/pro-components/commit/3657b98ec779606979fd03e7fbec81f606c03a81))
|
|
394
|
+
|
|
395
|
+
## [2.16.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.16.1...@ant-design/pro-form@2.16.2) (2023-07-24)
|
|
396
|
+
|
|
397
|
+
### Bug Fixes
|
|
398
|
+
|
|
399
|
+
- **form:** ProForm support readonly ([e466f4e](https://github.com/ant-design/pro-components/commit/e466f4ed72340b4c7f8fc1d5f23896a05609e989))
|
|
400
|
+
- **form:** ProFormSet support lightProps ([0593fe1](https://github.com/ant-design/pro-components/commit/0593fe1100b9119e3ac2cf60e3994fb5f419e56f))
|
|
401
|
+
- **form:** StepForm support moblie width ([6eee22f](https://github.com/ant-design/pro-components/commit/6eee22fd3d1fb5ced78c75805dda6325911cf1dc))
|
|
402
|
+
|
|
403
|
+
## [2.16.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.16.0...@ant-design/pro-form@2.16.1) (2023-07-19)
|
|
404
|
+
|
|
405
|
+
### Bug Fixes
|
|
406
|
+
|
|
407
|
+
- **layout:** fix sider collpse no work error ([e17dee6](https://github.com/ant-design/pro-components/commit/e17dee6be22b21563d02775e460a331870ff557e)), closes [/github.com/ant-design/pro-components/issues/7398#issuecomment-1641911484](https://github.com//github.com/ant-design/pro-components/issues/7398/issues/issuecomment-1641911484)
|
|
408
|
+
|
|
409
|
+
# [2.16.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.15.1...@ant-design/pro-form@2.16.0) (2023-07-19)
|
|
410
|
+
|
|
411
|
+
### Bug Fixes
|
|
412
|
+
|
|
413
|
+
- **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/bc9421543f4fb49774b4844b60dda39d19e52307))
|
|
414
|
+
- **form:** ModalForm and DrawerForm support params type ([76470d8](https://github.com/ant-design/pro-components/commit/76470d81a88909d4b21ba3b06606434801e02007))
|
|
415
|
+
- **form:** support OptionType types ([189f933](https://github.com/ant-design/pro-components/commit/189f9338be78af8dbdc54cb74432844a51b2c0c6))
|
|
416
|
+
- **form:** 修复当 LightFilter 折叠模式 icon 样式问题 ([#7388](https://github.com/ant-design/pro-components/issues/7388)) ([bba664a](https://github.com/ant-design/pro-components/commit/bba664a955376d05284e5da81082cc002dd339bd))
|
|
417
|
+
|
|
418
|
+
### Features
|
|
419
|
+
|
|
420
|
+
- **form:** drawer support resizable ([#7288](https://github.com/ant-design/pro-components/issues/7288)) ([3f5cbe6](https://github.com/ant-design/pro-components/commit/3f5cbe667670b870f930005639f3c1eb7065144d))
|
|
421
|
+
- **form:** StepsForm support multifile StepForm ([ccc35f5](https://github.com/ant-design/pro-components/commit/ccc35f581c18e05391209c6bd66b08a023b2427b))
|
|
422
|
+
|
|
423
|
+
## [2.15.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.15.0...@ant-design/pro-form@2.15.1) (2023-07-14)
|
|
424
|
+
|
|
425
|
+
### Bug Fixes
|
|
426
|
+
|
|
427
|
+
- **form:** Fix the display style of the switch ([8cdeda4](https://github.com/ant-design/pro-components/commit/8cdeda486d2aebd0f290a64c389f298e62c21af1))
|
|
428
|
+
|
|
429
|
+
# [2.15.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.14.3...@ant-design/pro-form@2.15.0) (2023-07-04)
|
|
430
|
+
|
|
431
|
+
### Features
|
|
432
|
+
|
|
433
|
+
- **form:** ProForm 支持第二个泛型参数 ([#7318](https://github.com/ant-design/pro-components/issues/7318)) ([da90c1a](https://github.com/ant-design/pro-components/commit/da90c1a65b96be301f872ae8d91198e4d76aa11f))
|
|
434
|
+
|
|
435
|
+
## [2.14.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.14.2...@ant-design/pro-form@2.14.3) (2023-06-30)
|
|
436
|
+
|
|
437
|
+
### Bug Fixes
|
|
438
|
+
|
|
439
|
+
- **form:** fix block when QueryFilter set grid ([393fbe8](https://github.com/ant-design/pro-components/commit/393fbe8d2fd0a960a2eb2c19c7e09670fabb2061))
|
|
440
|
+
- **form:** fix className is undefined error ([a27d453](https://github.com/ant-design/pro-components/commit/a27d453b03c7ede8123c02fc6f773e288ee9660a))
|
|
441
|
+
- **form:** formRef.current change will update formitem list ([5e977db](https://github.com/ant-design/pro-components/commit/5e977db5871271db2d94d2b58d5ddb1e40442b28))
|
|
442
|
+
|
|
443
|
+
## [2.14.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.14.1...@ant-design/pro-form@2.14.2) (2023-06-19)
|
|
444
|
+
|
|
445
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
446
|
+
|
|
447
|
+
## [2.14.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.14.0...@ant-design/pro-form@2.14.1) (2023-06-19)
|
|
448
|
+
|
|
449
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
450
|
+
|
|
451
|
+
# [2.14.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.11...@ant-design/pro-form@2.14.0) (2023-06-19)
|
|
452
|
+
|
|
453
|
+
### Bug Fixes
|
|
454
|
+
|
|
455
|
+
- **form:** alway use shouldUpdate for json ([7933961](https://github.com/ant-design/pro-components/commit/7933961ccd5de7a67178165039b197f2b53d92e8))
|
|
456
|
+
- **form:** onInit use ProFormInstance ([ad537a5](https://github.com/ant-design/pro-components/commit/ad537a563c1f09dafde29bb2ecff0aa0df24122f))
|
|
457
|
+
|
|
458
|
+
### Features
|
|
459
|
+
|
|
460
|
+
- **field:** LightFilter 中使用 ProFormSelect 的两个 bug 修复 ([#7225](https://github.com/ant-design/pro-components/issues/7225)) ([#7233](https://github.com/ant-design/pro-components/issues/7233)) ([b3050e4](https://github.com/ant-design/pro-components/commit/b3050e4e82db6809ce93f6913e3903a9dd05da15))
|
|
461
|
+
|
|
462
|
+
## [2.13.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.10...@ant-design/pro-form@2.13.11) (2023-06-16)
|
|
463
|
+
|
|
464
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
465
|
+
|
|
466
|
+
## [2.13.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.9...@ant-design/pro-form@2.13.10) (2023-06-15)
|
|
467
|
+
|
|
468
|
+
### Bug Fixes
|
|
469
|
+
|
|
470
|
+
- **form:** fix table render less error ([dcd3888](https://github.com/ant-design/pro-components/commit/dcd3888daafb2fa812f1fb0f1d5bab4451eaee63))
|
|
471
|
+
|
|
472
|
+
## [2.13.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.8...@ant-design/pro-form@2.13.9) (2023-06-14)
|
|
473
|
+
|
|
474
|
+
### Bug Fixes
|
|
475
|
+
|
|
476
|
+
- **form:** fix shouldUpdate no work error ([ff8bbef](https://github.com/ant-design/pro-components/commit/ff8bbefc6b67d83925e83f2559f0016014748323))
|
|
477
|
+
|
|
478
|
+
## [2.13.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.7...@ant-design/pro-form@2.13.8) (2023-06-14)
|
|
479
|
+
|
|
480
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
481
|
+
|
|
482
|
+
## [2.13.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.6...@ant-design/pro-form@2.13.7) (2023-06-12)
|
|
483
|
+
|
|
484
|
+
### Bug Fixes
|
|
485
|
+
|
|
486
|
+
- **components:** fix useToken no supoort antd\@4 的问题 ([58b96e9](https://github.com/ant-design/pro-components/commit/58b96e91632c0c84c429d5384c13ee6f3146e017))
|
|
487
|
+
|
|
488
|
+
## [2.13.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.5...@ant-design/pro-form@2.13.6) (2023-06-12)
|
|
489
|
+
|
|
490
|
+
### Bug Fixes
|
|
491
|
+
|
|
492
|
+
- **compoents:** gap use token margin ([#7204](https://github.com/ant-design/pro-components/issues/7204)) ([bd62243](https://github.com/ant-design/pro-components/commit/bd62243f4bc6a3ea6e97ad5e0db977c84394426f))
|
|
493
|
+
- **components:** remove hashid empty ([b46bb80](https://github.com/ant-design/pro-components/commit/b46bb808db287979fe7d2d5afe115185860422c9))
|
|
494
|
+
- **form:** fix set addonAfter valuePropName will no work error ([8072666](https://github.com/ant-design/pro-components/commit/8072666d47b98bcc172646205f7cb24db6a765b4))
|
|
495
|
+
- **form:** ProFormColorPicker support disable ([973ac28](https://github.com/ant-design/pro-components/commit/973ac28ea2ec5b194013c691c74d8a326134c1a1))
|
|
496
|
+
- **form:** 修复 ProTable 的 columns.proFieldProps 不生效 ([#7205](https://github.com/ant-design/pro-components/issues/7205)) ([91ea897](https://github.com/ant-design/pro-components/commit/91ea8977d422e208f6e29f4c5a4245e51c91ef8a))
|
|
497
|
+
- 修复 select 的 defaultKeyWords 在 schemaForm 下不生效的 bug ([#7195](https://github.com/ant-design/pro-components/issues/7195)) ([68ef5c9](https://github.com/ant-design/pro-components/commit/68ef5c9e1553d4ed514241b437be4ef2ef69687e))
|
|
498
|
+
|
|
499
|
+
## [2.13.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.4...@ant-design/pro-form@2.13.5) (2023-06-02)
|
|
500
|
+
|
|
501
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
502
|
+
|
|
503
|
+
## [2.13.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.3...@ant-design/pro-form@2.13.4) (2023-05-31)
|
|
504
|
+
|
|
505
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
506
|
+
|
|
507
|
+
## [2.13.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.2...@ant-design/pro-form@2.13.3) (2023-05-30)
|
|
508
|
+
|
|
509
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
510
|
+
|
|
511
|
+
## [2.13.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.1...@ant-design/pro-form@2.13.2) (2023-05-30)
|
|
512
|
+
|
|
513
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
514
|
+
|
|
515
|
+
## [2.13.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.13.0...@ant-design/pro-form@2.13.1) (2023-05-29)
|
|
516
|
+
|
|
517
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
518
|
+
|
|
519
|
+
# [2.13.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.12.1...@ant-design/pro-form@2.13.0) (2023-05-29)
|
|
520
|
+
|
|
521
|
+
### Bug Fixes
|
|
522
|
+
|
|
523
|
+
- **form:** 解决 ProFormList 多重嵌套 ProFormList 下的表单组件未调用 transform 方法问题 ([#7138](https://github.com/ant-design/pro-components/issues/7138)) ([2e83b18](https://github.com/ant-design/pro-components/commit/2e83b184fae0f68013c0c1db39837981f70d1ec3))
|
|
524
|
+
- **list:** 修复 ProFormList 使用 className 无效问题 ([#7128](https://github.com/ant-design/pro-components/issues/7128)) ([6d8c301](https://github.com/ant-design/pro-components/commit/6d8c301f221630e9712ffc1c9d37e12621d5d755))
|
|
525
|
+
- update lock file and fix test case ([d991d5d](https://github.com/ant-design/pro-components/commit/d991d5d6e1d19fa721d9c25ef0318a0c0e134e7e))
|
|
526
|
+
- **form:** use oninit reset formRef ([1deedf2](https://github.com/ant-design/pro-components/commit/1deedf26e0dfb377f883c428f597094353c8c3e3))
|
|
527
|
+
|
|
528
|
+
### Features
|
|
529
|
+
|
|
530
|
+
- **table:** use [@dnd-kit](https://github.com/dnd-kit) ([#7131](https://github.com/ant-design/pro-components/issues/7131)) ([26b6aa6](https://github.com/ant-design/pro-components/commit/26b6aa611a0c5d88232cda88ca7cec893ee2160b))
|
|
531
|
+
|
|
532
|
+
## [2.12.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.12.0...@ant-design/pro-form@2.12.1) (2023-05-18)
|
|
533
|
+
|
|
534
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
535
|
+
|
|
536
|
+
# [2.12.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.7...@ant-design/pro-form@2.12.0) (2023-05-15)
|
|
537
|
+
|
|
538
|
+
### Bug Fixes
|
|
539
|
+
|
|
540
|
+
- **form:** 修复 form 自定义组件过多卡顿的问题 ([#7018](https://github.com/ant-design/pro-components/issues/7018)) ([ca2e8e1](https://github.com/ant-design/pro-components/commit/ca2e8e1b618b86b48a130df6703ea34e65412079))
|
|
541
|
+
|
|
542
|
+
### Features
|
|
543
|
+
|
|
544
|
+
- **form:** rewirte light date form ([#7052](https://github.com/ant-design/pro-components/issues/7052)) ([1cf4bfa](https://github.com/ant-design/pro-components/commit/1cf4bfa39858f03e1aadeb290d40ba8b82cdf170))
|
|
545
|
+
|
|
546
|
+
## [2.11.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.6...@ant-design/pro-form@2.11.7) (2023-05-08)
|
|
547
|
+
|
|
548
|
+
### Bug Fixes
|
|
549
|
+
|
|
550
|
+
- **form:** fix ModalForm ref less error ([06721c3](https://github.com/ant-design/pro-components/commit/06721c310adde229ce5bcf92bf3ce59100e713df))
|
|
551
|
+
- **table:** table should support dependencies ([#7019](https://github.com/ant-design/pro-components/issues/7019)) ([7addd50](https://github.com/ant-design/pro-components/commit/7addd5031c68720b809bbdd292e828f7b04bfd04))
|
|
552
|
+
|
|
553
|
+
## [2.11.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.5...@ant-design/pro-form@2.11.6) (2023-05-04)
|
|
554
|
+
|
|
555
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
556
|
+
|
|
557
|
+
## [2.11.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.4...@ant-design/pro-form@2.11.5) (2023-05-04)
|
|
558
|
+
|
|
559
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
560
|
+
|
|
561
|
+
## [2.11.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.3...@ant-design/pro-form@2.11.4) (2023-04-26)
|
|
562
|
+
|
|
563
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
564
|
+
|
|
565
|
+
## [2.11.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.2...@ant-design/pro-form@2.11.3) (2023-04-26)
|
|
566
|
+
|
|
567
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
568
|
+
|
|
569
|
+
## [2.11.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.1...@ant-design/pro-form@2.11.2) (2023-04-25)
|
|
570
|
+
|
|
571
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
572
|
+
|
|
573
|
+
## [2.11.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.11.0...@ant-design/pro-form@2.11.1) (2023-04-25)
|
|
574
|
+
|
|
575
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
576
|
+
|
|
577
|
+
# [2.11.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.10.1...@ant-design/pro-form@2.11.0) (2023-04-25)
|
|
578
|
+
|
|
579
|
+
### Bug Fixes
|
|
580
|
+
|
|
581
|
+
- **form:** chage step form first button judge ([#6915](https://github.com/ant-design/pro-components/issues/6915)) ([2a995d9](https://github.com/ant-design/pro-components/commit/2a995d97672e6a9413a78dfa3276fd80c82075f3))
|
|
582
|
+
- **form:** 修复 SchemaFormRef 的问题 ([#6943](https://github.com/ant-design/pro-components/issues/6943)) ([445c8ac](https://github.com/ant-design/pro-components/commit/445c8acfe3677d3d03a2a9c12d2a9542d50d10c0))
|
|
583
|
+
|
|
584
|
+
### Features
|
|
585
|
+
|
|
586
|
+
- **form:** add some DateRangePicker components ([#6850](https://github.com/ant-design/pro-components/issues/6850)) ([26cbe28](https://github.com/ant-design/pro-components/commit/26cbe28b4408847a965983049b020b9f4399eddb))
|
|
587
|
+
|
|
588
|
+
## [2.10.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.10.0...@ant-design/pro-form@2.10.1) (2023-03-27)
|
|
589
|
+
|
|
590
|
+
### Bug Fixes
|
|
591
|
+
|
|
592
|
+
- **form:** slove padding was not use ([#6857](https://github.com/ant-design/pro-components/issues/6857)) ([4a5f4e6](https://github.com/ant-design/pro-components/commit/4a5f4e6f27c208d2bcea4eaa9319b422bc708f3a))
|
|
593
|
+
|
|
594
|
+
# [2.10.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.9.0...@ant-design/pro-form@2.10.0) (2023-03-27)
|
|
595
|
+
|
|
596
|
+
### Bug Fixes
|
|
597
|
+
|
|
598
|
+
- **from:** solve queryfilter padding problem ([#6797](https://github.com/ant-design/pro-components/issues/6797)) ([fa92aae](https://github.com/ant-design/pro-components/commit/fa92aae5dc7b43e230b540a5215112c967dfb3cd))
|
|
599
|
+
|
|
600
|
+
### Features
|
|
601
|
+
|
|
602
|
+
- **form:** introduce proFieldProps in BaseFormProps and pass it to all Fields with the lowest priority ([#6847](https://github.com/ant-design/pro-components/issues/6847)) ([ff96751](https://github.com/ant-design/pro-components/commit/ff967518d81eb7200ffc570e4b41122f8f25e7eb))
|
|
603
|
+
|
|
604
|
+
# [2.9.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.8.0...@ant-design/pro-form@2.9.0) (2023-03-14)
|
|
605
|
+
|
|
606
|
+
### Bug Fixes
|
|
607
|
+
|
|
608
|
+
- **compoments:** remove .ant-pro dom ([403319f](https://github.com/ant-design/pro-components/commit/403319f2b80489d04101f51d65c3cb4dcbe4595d))
|
|
609
|
+
- **form:** fix AdvancedSearch demo no work error ([226fbac](https://github.com/ant-design/pro-components/commit/226fbac4e214a912a84973f69ccdd1183ffd34f0))
|
|
610
|
+
- **form:** fix collapse button unuse colorPrimary txt ([55b8aab](https://github.com/ant-design/pro-components/commit/55b8aabbc0d65ca7a50072e9c6e41dc91338e3a5))
|
|
611
|
+
|
|
612
|
+
### Features
|
|
613
|
+
|
|
614
|
+
- **form:** QueryFilter support submitterColSpanProps ([11dbc0c](https://github.com/ant-design/pro-components/commit/11dbc0cc989602a1c067bec8a9dcd01c1c9d2bec))
|
|
615
|
+
|
|
616
|
+
# [2.8.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.7.0...@ant-design/pro-form@2.8.0) (2023-03-09)
|
|
617
|
+
|
|
618
|
+
### Bug Fixes
|
|
619
|
+
|
|
620
|
+
- **layout:** fix menu item icon style error ([#6745](https://github.com/ant-design/pro-components/issues/6745)) ([87f9656](https://github.com/ant-design/pro-components/commit/87f965682e81d9ce166d140dd418a37a6020abcf))
|
|
621
|
+
|
|
622
|
+
# [2.7.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.6.0...@ant-design/pro-form@2.7.0) (2023-03-08)
|
|
623
|
+
|
|
624
|
+
### Features
|
|
625
|
+
|
|
626
|
+
- **components:** support antd\@5.4.0 ([#6730](https://github.com/ant-design/pro-components/issues/6730)) ([1ac506f](https://github.com/ant-design/pro-components/commit/1ac506f8e46a30089437cdfe58a5f96447c39f7a))
|
|
627
|
+
- **layout:** add ProHelp components ([#6654](https://github.com/ant-design/pro-components/issues/6654)) ([b1a175c](https://github.com/ant-design/pro-components/commit/b1a175c9ecbdf24a26f1cf34e10a92da05ab2b9c)), closes [#6671](https://github.com/ant-design/pro-components/issues/6671) [#6676](https://github.com/ant-design/pro-components/issues/6676)
|
|
628
|
+
|
|
629
|
+
# [2.6.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.8...@ant-design/pro-form@2.6.0) (2023-02-28)
|
|
630
|
+
|
|
631
|
+
### Bug Fixes
|
|
632
|
+
|
|
633
|
+
- 修复动态控制是否重渲染 demo 标题修改标签任有 required 提示的问题 ([#6640](https://github.com/ant-design/pro-components/issues/6640)) ([fd33f8c](https://github.com/ant-design/pro-components/commit/fd33f8cef4afa97d0e5964d91fd5c21b18d6cbde))
|
|
634
|
+
|
|
635
|
+
### Features
|
|
636
|
+
|
|
637
|
+
- **form:** ProFormTreeSelect support fetchDataOnSearch ([#6638](https://github.com/ant-design/pro-components/issues/6638)) ([4615f43](https://github.com/ant-design/pro-components/commit/4615f43a685b57245a6449454345e449bc8a2c4c))
|
|
638
|
+
|
|
639
|
+
## [2.5.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.7...@ant-design/pro-form@2.5.8) (2023-02-17)
|
|
640
|
+
|
|
641
|
+
### Bug Fixes
|
|
642
|
+
|
|
643
|
+
- **components:** src alway use es path ([4a13142](https://github.com/ant-design/pro-components/commit/4a1314225c08a60c5cef9d51f061cdf15a69ca13))
|
|
644
|
+
|
|
645
|
+
## [2.5.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.6...@ant-design/pro-form@2.5.7) (2023-02-17)
|
|
646
|
+
|
|
647
|
+
### Bug Fixes
|
|
648
|
+
|
|
649
|
+
- **components:** fix valuetype no work error ([f6215e9](https://github.com/ant-design/pro-components/commit/f6215e98eaeb46fa979c1ca4ac40ceaa0828f9f3))
|
|
650
|
+
|
|
651
|
+
## [2.5.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.5...@ant-design/pro-form@2.5.6) (2023-02-10)
|
|
652
|
+
|
|
653
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
654
|
+
|
|
655
|
+
## [2.5.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.4...@ant-design/pro-form@2.5.5) (2023-02-08)
|
|
656
|
+
|
|
657
|
+
### Bug Fixes
|
|
658
|
+
|
|
659
|
+
- **form:** dataindex should take precedence over key ([8249ccd](https://github.com/ant-design/pro-components/commit/8249ccd25fff4c2e9c8a60a0c47e0e1cbdde6a16))
|
|
660
|
+
- **form:** debounceTime 在 SchemaForm 上配置不生效的问题 ([#6557](https://github.com/ant-design/pro-components/issues/6557)) ([2790a94](https://github.com/ant-design/pro-components/commit/2790a94a434d8a9d43c949137b376d11489fb2ba))
|
|
661
|
+
- **form:** slove form list label defalut mode show problem ([#6549](https://github.com/ant-design/pro-components/issues/6549)) ([05d764d](https://github.com/ant-design/pro-components/commit/05d764d29eaf9d5db87527fc7f279701e04d4014))
|
|
662
|
+
- query filter ts error ([#6517](https://github.com/ant-design/pro-components/issues/6517)) ([af3ee8f](https://github.com/ant-design/pro-components/commit/af3ee8f237ff08c4bf880ca91a987efbef8ccdef))
|
|
663
|
+
|
|
664
|
+
## [2.5.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.3...@ant-design/pro-form@2.5.4) (2023-01-10)
|
|
665
|
+
|
|
666
|
+
### Bug Fixes
|
|
667
|
+
|
|
668
|
+
- **form:** fix formref no work error in BetaSchemaForm ([7b9bbdd](https://github.com/ant-design/pro-components/commit/7b9bbddbd7e1f51cca9490170ec24fc4817a1620))
|
|
669
|
+
|
|
670
|
+
## [2.5.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.2...@ant-design/pro-form@2.5.3) (2023-01-06)
|
|
671
|
+
|
|
672
|
+
### Bug Fixes
|
|
673
|
+
|
|
674
|
+
- **form:** fix ProFormDigitRange label formart style ([6250094](https://github.com/ant-design/pro-components/commit/6250094da2e09097d01c986cf6da03d7d011c595))
|
|
675
|
+
|
|
676
|
+
## [2.5.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.1...@ant-design/pro-form@2.5.2) (2023-01-04)
|
|
677
|
+
|
|
678
|
+
### Bug Fixes
|
|
679
|
+
|
|
680
|
+
- **form:** Light FilterightWrapper 当中清除功能的默认行为,使得 LightFilter 当中的 Checkbox 可以正常地被清除功能重置 ([#6450](https://github.com/ant-design/pro-components/issues/6450)) ([0cf5796](https://github.com/ant-design/pro-components/commit/0cf5796ad4882a043f418d7c8a61374f4159b137)), closes [#6429](https://github.com/ant-design/pro-components/issues/6429)
|
|
681
|
+
|
|
682
|
+
## [2.5.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.5.0...@ant-design/pro-form@2.5.1) (2022-12-29)
|
|
683
|
+
|
|
684
|
+
### Bug Fixes
|
|
685
|
+
|
|
686
|
+
- **provide:** fix configProvide no work error ([f162607](https://github.com/ant-design/pro-components/commit/f162607416c3f9342711e6bd59f37dcd9523e2b8))
|
|
687
|
+
|
|
688
|
+
# [2.5.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.7...@ant-design/pro-form@2.5.0) (2022-12-29)
|
|
689
|
+
|
|
690
|
+
### Bug Fixes
|
|
691
|
+
|
|
692
|
+
- **form:** `ProFormList` style does not work ([#6398](https://github.com/ant-design/pro-components/issues/6398)) ([17dc1b7](https://github.com/ant-design/pro-components/commit/17dc1b7d84e4874df83aab6c2f0dfed053117b66))
|
|
693
|
+
- **form:** do not remove collapsed dom ([769177f](https://github.com/ant-design/pro-components/commit/769177f5acdad0126fd146e8e6a1346a7c21d882))
|
|
694
|
+
- **list:** fix card list style error ([#6436](https://github.com/ant-design/pro-components/issues/6436)) ([81bcf52](https://github.com/ant-design/pro-components/commit/81bcf522ea68a2deeebe43fa13734adc43b01141))
|
|
695
|
+
- **table:** use flex replace Space ([#6426](https://github.com/ant-design/pro-components/issues/6426)) ([53699f8](https://github.com/ant-design/pro-components/commit/53699f8a13e152240d46c9a08b5722846c570ac2))
|
|
696
|
+
|
|
697
|
+
### Features
|
|
698
|
+
|
|
699
|
+
- **provide:** clear up import and support containerDomRef ([#6394](https://github.com/ant-design/pro-components/issues/6394)) ([ca6e054](https://github.com/ant-design/pro-components/commit/ca6e0547eb653af863e47d57847836db8cb6dea8))
|
|
700
|
+
|
|
701
|
+
## [2.4.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.6...@ant-design/pro-form@2.4.7) (2022-12-13)
|
|
702
|
+
|
|
703
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
704
|
+
|
|
705
|
+
## [2.4.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.5...@ant-design/pro-form@2.4.6) (2022-12-09)
|
|
706
|
+
|
|
707
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
708
|
+
|
|
709
|
+
## [2.4.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.4...@ant-design/pro-form@2.4.5) (2022-12-08)
|
|
710
|
+
|
|
711
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
712
|
+
|
|
713
|
+
## [2.4.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.3...@ant-design/pro-form@2.4.4) (2022-12-08)
|
|
714
|
+
|
|
715
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
716
|
+
|
|
717
|
+
## [2.4.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.2...@ant-design/pro-form@2.4.3) (2022-12-06)
|
|
718
|
+
|
|
719
|
+
### Bug Fixes
|
|
720
|
+
|
|
721
|
+
- **form:** fix style error ([3320a52](https://github.com/ant-design/pro-components/commit/3320a528131b4cb49f70d76e9d5d6c6ec8ca510f))
|
|
722
|
+
|
|
723
|
+
## [2.4.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.1...@ant-design/pro-form@2.4.2) (2022-12-05)
|
|
724
|
+
|
|
725
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
726
|
+
|
|
727
|
+
## [2.4.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.4.0...@ant-design/pro-form@2.4.1) (2022-12-01)
|
|
728
|
+
|
|
729
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
730
|
+
|
|
731
|
+
# [2.4.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.3.3...@ant-design/pro-form@2.4.0) (2022-11-30)
|
|
732
|
+
|
|
733
|
+
### Bug Fixes
|
|
734
|
+
|
|
735
|
+
- **form:** formRef repeats the assignment ([#6278](https://github.com/ant-design/pro-components/issues/6278)) ([810c3ed](https://github.com/ant-design/pro-components/commit/810c3ed88f35b1ba13d2fd7da8d13f8fcd90a550))
|
|
736
|
+
- **form:** new antd version use items props ([9f520bf](https://github.com/ant-design/pro-components/commit/9f520bfc3e25c1f5d4b8c14c9afc28865c569002))
|
|
737
|
+
|
|
738
|
+
### Features
|
|
739
|
+
|
|
740
|
+
- **layout:** fix dark style no work error ([3e06527](https://github.com/ant-design/pro-components/commit/3e0652738e6993973aba34af118ffd8a9af5815c))
|
|
741
|
+
- **layout:** support stylish ([60c0b54](https://github.com/ant-design/pro-components/commit/60c0b547bed047434962d6e61c34037e849331de))
|
|
742
|
+
|
|
743
|
+
## [2.3.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.3.2...@ant-design/pro-form@2.3.3) (2022-11-22)
|
|
744
|
+
|
|
745
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
746
|
+
|
|
747
|
+
## [2.3.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.3.1...@ant-design/pro-form@2.3.2) (2022-11-17)
|
|
748
|
+
|
|
749
|
+
### Bug Fixes
|
|
750
|
+
|
|
751
|
+
- **Descriptions:** fix ellipsis type error ([d051be5](https://github.com/ant-design/pro-components/commit/d051be53c40b49cffe7531bd622003dfeda60b10))
|
|
752
|
+
- **form:** 只读模式下的 ProFormSelect 应该支持 wrap ([#6235](https://github.com/ant-design/pro-components/issues/6235)) ([d4b0d06](https://github.com/ant-design/pro-components/commit/d4b0d065575262136089b0233df8ce8dcf705c4f))
|
|
753
|
+
|
|
754
|
+
## [2.3.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.3.0...@ant-design/pro-form@2.3.1) (2022-11-14)
|
|
755
|
+
|
|
756
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
757
|
+
|
|
758
|
+
# [2.3.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.17...@ant-design/pro-form@2.3.0) (2022-11-14)
|
|
759
|
+
|
|
760
|
+
### Bug Fixes
|
|
761
|
+
|
|
762
|
+
- **form:** reset ProFormList when new form ([b9ba5d0](https://github.com/ant-design/pro-components/commit/b9ba5d04c9f0cdebe296c507f81b35dcd710cfd2))
|
|
763
|
+
- **table:** column not working correctly after reset ([#6159](https://github.com/ant-design/pro-components/issues/6159)) ([6ec0307](https://github.com/ant-design/pro-components/commit/6ec0307041a7a439075af56c3a9a80809afb956f))
|
|
764
|
+
|
|
765
|
+
### Features
|
|
766
|
+
|
|
767
|
+
- add ProFormCascader auto getPopupContainer ([#6187](https://github.com/ant-design/pro-components/issues/6187)) ([1165c01](https://github.com/ant-design/pro-components/commit/1165c01d4e2d6f7276ab04bc5a0315ac36841c1a))
|
|
768
|
+
|
|
769
|
+
## [2.2.17](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.16...@ant-design/pro-form@2.2.17) (2022-11-08)
|
|
770
|
+
|
|
771
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
772
|
+
|
|
773
|
+
## [2.2.16](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.15...@ant-design/pro-form@2.2.16) (2022-11-07)
|
|
774
|
+
|
|
775
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
776
|
+
|
|
777
|
+
## [2.2.15](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.14...@ant-design/pro-form@2.2.15) (2022-11-03)
|
|
778
|
+
|
|
779
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
780
|
+
|
|
781
|
+
## [2.2.14](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.13...@ant-design/pro-form@2.2.14) (2022-10-28)
|
|
782
|
+
|
|
783
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
784
|
+
|
|
785
|
+
## [2.2.13](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.12...@ant-design/pro-form@2.2.13) (2022-10-27)
|
|
786
|
+
|
|
787
|
+
### Bug Fixes
|
|
788
|
+
|
|
789
|
+
- **form:** request should rewrite initialsValue ([8bfaead](https://github.com/ant-design/pro-components/commit/8bfaead59110026aef043285abbde212fc865029)), closes [/github.com/ant-design/pro-components/issues/5957#issuecomment-1289906573](https://github.com//github.com/ant-design/pro-components/issues/5957/issues/issuecomment-1289906573)
|
|
790
|
+
|
|
791
|
+
## [2.2.12](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.11...@ant-design/pro-form@2.2.12) (2022-10-25)
|
|
792
|
+
|
|
793
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
794
|
+
|
|
795
|
+
## [2.2.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.10...@ant-design/pro-form@2.2.11) (2022-10-24)
|
|
796
|
+
|
|
797
|
+
### Bug Fixes
|
|
798
|
+
|
|
799
|
+
- **table:** auto open hashid ([#6114](https://github.com/ant-design/pro-components/issues/6114)) ([3f72792](https://github.com/ant-design/pro-components/commit/3f72792762ae1c9d51b34f608352e776b645b3b0))
|
|
800
|
+
|
|
801
|
+
## [2.2.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.9...@ant-design/pro-form@2.2.10) (2022-10-21)
|
|
802
|
+
|
|
803
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
804
|
+
|
|
805
|
+
## [2.2.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.8...@ant-design/pro-form@2.2.9) (2022-10-21)
|
|
806
|
+
|
|
807
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
808
|
+
|
|
809
|
+
## [2.2.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.7...@ant-design/pro-form@2.2.8) (2022-10-19)
|
|
810
|
+
|
|
811
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
812
|
+
|
|
813
|
+
## [2.2.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.6...@ant-design/pro-form@2.2.7) (2022-10-14)
|
|
814
|
+
|
|
815
|
+
### Bug Fixes
|
|
816
|
+
|
|
817
|
+
- **form:** Fixed a bug with nested FormList ([2100074](https://github.com/ant-design/pro-components/commit/21000744dce4f9737c9bbcd7af72f0959480d715))
|
|
818
|
+
- **form:** ProFormList 组件 required 时需要提供加星号样式 ([#5995](https://github.com/ant-design/pro-components/issues/5995)) ([54122f5](https://github.com/ant-design/pro-components/commit/54122f50e67b56fed973bd8bc004308b4a6afe2a))
|
|
819
|
+
- **utils:** remove act import ([fc76519](https://github.com/ant-design/pro-components/commit/fc765195dcd2050fb2e4f4a5bd4b2e54d7519681))
|
|
820
|
+
|
|
821
|
+
## [2.2.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.5...@ant-design/pro-form@2.2.6) (2022-10-13)
|
|
822
|
+
|
|
823
|
+
### Bug Fixes
|
|
824
|
+
|
|
825
|
+
- **layout:** use inline style ([827349d](https://github.com/ant-design/pro-components/commit/827349dc9ba93d84645259b0da2794606c6038b1))
|
|
826
|
+
|
|
827
|
+
## [2.2.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.4...@ant-design/pro-form@2.2.5) (2022-10-11)
|
|
828
|
+
|
|
829
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
830
|
+
|
|
831
|
+
## [2.2.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.3...@ant-design/pro-form@2.2.4) (2022-10-11)
|
|
832
|
+
|
|
833
|
+
### Bug Fixes
|
|
834
|
+
|
|
835
|
+
- **field:** use open replace visible ([8dcf66a](https://github.com/ant-design/pro-components/commit/8dcf66a616781cbf7248a10da784f21c9f9b245d))
|
|
836
|
+
- **form:** ProFormDependency support T ([7b0c85d](https://github.com/ant-design/pro-components/commit/7b0c85d3ca69cbb2ad82e8f6d95ad77a0c24a463))
|
|
837
|
+
|
|
838
|
+
## [2.2.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.2...@ant-design/pro-form@2.2.3) (2022-10-10)
|
|
839
|
+
|
|
840
|
+
### Bug Fixes
|
|
841
|
+
|
|
842
|
+
- **form:** remove redundant code ([#6030](https://github.com/ant-design/pro-components/issues/6030)) ([e30e893](https://github.com/ant-design/pro-components/commit/e30e893ae236420d81636644ffaedb80f9f69a0c))
|
|
843
|
+
- **form:** 修复 ModalForm 和 DrawerForm 关闭过程中表单内容闪现初始值的问题 ([#6009](https://github.com/ant-design/pro-components/issues/6009)) ([dbad424](https://github.com/ant-design/pro-components/commit/dbad4249383bc4f647789f2a177e26ce6403ab36))
|
|
844
|
+
- **form:** 修复 ListItem 自定义样式和样式名称不生效的 BUG ([#5982](https://github.com/ant-design/pro-components/issues/5982)) ([02328a0](https://github.com/ant-design/pro-components/commit/02328a0a4ca4d1ccf31430d03a9a467952952479))
|
|
845
|
+
|
|
846
|
+
## [2.2.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.1...@ant-design/pro-form@2.2.2) (2022-09-28)
|
|
847
|
+
|
|
848
|
+
### Bug Fixes
|
|
849
|
+
|
|
850
|
+
- **LoginForm:** props title is not assignable to type 'ReactNode' ([#5979](https://github.com/ant-design/pro-components/issues/5979)) ([1af5f76](https://github.com/ant-design/pro-components/commit/1af5f76c9198619f61fddba9a56e276d7fd79e45))
|
|
851
|
+
|
|
852
|
+
## [2.2.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.2.0...@ant-design/pro-form@2.2.1) (2022-09-22)
|
|
853
|
+
|
|
854
|
+
### Bug Fixes
|
|
855
|
+
|
|
856
|
+
- **form:** export FormListContext ([#5968](https://github.com/ant-design/pro-components/issues/5968)) ([1e7b86e](https://github.com/ant-design/pro-components/commit/1e7b86e7a0e3e31961b067633e323075284bc443))
|
|
857
|
+
|
|
858
|
+
# [2.2.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.1.1...@ant-design/pro-form@2.2.0) (2022-09-21)
|
|
859
|
+
|
|
860
|
+
### Features
|
|
861
|
+
|
|
862
|
+
- **layout:** remove routers types ([6c54c7e](https://github.com/ant-design/pro-components/commit/6c54c7ec42fd4ae1cab7b990386eb80e2c4273b4))
|
|
863
|
+
|
|
864
|
+
## [2.1.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.1.0...@ant-design/pro-form@2.1.1) (2022-09-16)
|
|
865
|
+
|
|
866
|
+
### Bug Fixes
|
|
867
|
+
|
|
868
|
+
- **table:** fix dateformat no work error ([c30c107](https://github.com/ant-design/pro-components/commit/c30c107056e177d0afff6c7b7885a29b104c7d03))
|
|
869
|
+
|
|
870
|
+
# [2.1.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.6...@ant-design/pro-form@2.1.0) (2022-09-14)
|
|
871
|
+
|
|
872
|
+
### Bug Fixes
|
|
873
|
+
|
|
874
|
+
- **components:** fix ref error ([c9e1e98](https://github.com/ant-design/pro-components/commit/c9e1e98dab5e2b9004d7c43053291b663f551742))
|
|
875
|
+
|
|
876
|
+
### Features
|
|
877
|
+
|
|
878
|
+
- **form:** add ProFormSegmented ([#5913](https://github.com/ant-design/pro-components/issues/5913)) ([737c80d](https://github.com/ant-design/pro-components/commit/737c80d91fa9cfdc86ba05dce47b18ccb83058c4))
|
|
879
|
+
|
|
880
|
+
## [2.0.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.5...@ant-design/pro-form@2.0.6) (2022-09-09)
|
|
881
|
+
|
|
882
|
+
### Bug Fixes
|
|
883
|
+
|
|
884
|
+
- **components:** fix compareVersions error ([9751208](https://github.com/ant-design/pro-components/commit/9751208a9ecb9a4120b7d4c8291b8df8a5da9144))
|
|
885
|
+
|
|
886
|
+
## [2.0.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.4...@ant-design/pro-form@2.0.5) (2022-09-08)
|
|
887
|
+
|
|
888
|
+
### Bug Fixes
|
|
889
|
+
|
|
890
|
+
- **components:** fix css var error ([bd5d3bf](https://github.com/ant-design/pro-components/commit/bd5d3bf37f3bb89ea62b021a818690ca04994a49))
|
|
891
|
+
- **components:** fix open props warning ([77703c8](https://github.com/ant-design/pro-components/commit/77703c82140d46c4fb9ad82e77d561d313e0436e))
|
|
892
|
+
- **form:** fix optionType is only support in Radio.Group ([#5871](https://github.com/ant-design/pro-components/issues/5871)) ([c3fa14f](https://github.com/ant-design/pro-components/commit/c3fa14f208d922183ebfde2e8cfe0c2f18022855))
|
|
893
|
+
|
|
894
|
+
## [2.0.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.3...@ant-design/pro-form@2.0.4) (2022-09-05)
|
|
895
|
+
|
|
896
|
+
### Bug Fixes
|
|
897
|
+
|
|
898
|
+
- **components:** export more types from components ([#5840](https://github.com/ant-design/pro-components/issues/5840)) ([61de8de](https://github.com/ant-design/pro-components/commit/61de8dea3d7e8c517e647959bf252afa17bbf521))
|
|
899
|
+
|
|
900
|
+
## [2.0.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.2...@ant-design/pro-form@2.0.3) (2022-09-02)
|
|
901
|
+
|
|
902
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
903
|
+
|
|
904
|
+
## [2.0.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.74.5...@ant-design/pro-form@2.0.2) (2022-09-02)
|
|
905
|
+
|
|
906
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
907
|
+
|
|
908
|
+
## [2.0.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.26...@ant-design/pro-form@2.0.1) (2022-09-01)
|
|
909
|
+
|
|
910
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
911
|
+
|
|
912
|
+
# [2.0.0-experimental.26](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.25...@ant-design/pro-form@2.0.0-experimental.26) (2022-08-31)
|
|
913
|
+
|
|
914
|
+
### Bug Fixes
|
|
915
|
+
|
|
916
|
+
- **card:** 兼容 antd v4 TabPane 的能力支持 ([#5796](https://github.com/ant-design/pro-components/issues/5796)) ([beda6b1](https://github.com/ant-design/pro-components/commit/beda6b1b93e92825bba90efe9049b4bf6320c882))
|
|
917
|
+
|
|
918
|
+
# [2.0.0-experimental.25](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.74.4...@ant-design/pro-form@2.0.0-experimental.25) (2022-08-30)
|
|
919
|
+
|
|
920
|
+
### Bug Fixes
|
|
921
|
+
|
|
922
|
+
- update snapshot ([4db1605](https://github.com/ant-design/pro-components/commit/4db1605937c3b0cf22d22ad398ef4c11e21883cd))
|
|
923
|
+
- **form:** queryfilter css delete ([#5775](https://github.com/ant-design/pro-components/issues/5775)) ([12c2e07](https://github.com/ant-design/pro-components/commit/12c2e076bb03d0e4ba26a03bcabf58ad024b4fa2))
|
|
924
|
+
|
|
925
|
+
# [2.0.0-experimental.24](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.23...@ant-design/pro-form@2.0.0-experimental.24) (2022-08-29)
|
|
926
|
+
|
|
927
|
+
### Bug Fixes
|
|
928
|
+
|
|
929
|
+
- update snapshot ([4db1605](https://github.com/ant-design/pro-components/commit/4db1605937c3b0cf22d22ad398ef4c11e21883cd))
|
|
930
|
+
- **form:** after close theme reset fields ([ecc6923](https://github.com/ant-design/pro-components/commit/ecc69233c0befa29558f142c091693398e4fe32f))
|
|
931
|
+
|
|
932
|
+
# [2.0.0-experimental.23](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.74.3...@ant-design/pro-form@2.0.0-experimental.23) (2022-08-26)
|
|
933
|
+
|
|
934
|
+
### Bug Fixes
|
|
935
|
+
|
|
936
|
+
- **form:** queryfilter css delete ([#5775](https://github.com/ant-design/pro-components/issues/5775)) ([12c2e07](https://github.com/ant-design/pro-components/commit/12c2e076bb03d0e4ba26a03bcabf58ad024b4fa2))
|
|
937
|
+
|
|
938
|
+
# [2.0.0-experimental.22](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.21...@ant-design/pro-form@2.0.0-experimental.22) (2022-08-25)
|
|
939
|
+
|
|
940
|
+
### Bug Fixes
|
|
941
|
+
|
|
942
|
+
- **form:** queryfilter css delete ([#5775](https://github.com/ant-design/pro-components/issues/5775)) ([12c2e07](https://github.com/ant-design/pro-components/commit/12c2e076bb03d0e4ba26a03bcabf58ad024b4fa2))
|
|
943
|
+
|
|
944
|
+
# [2.0.0-experimental.21](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.20...@ant-design/pro-form@2.0.0-experimental.21) (2022-08-25)
|
|
945
|
+
|
|
946
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
947
|
+
|
|
948
|
+
# [2.0.0-experimental.20](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.74.2...@ant-design/pro-form@2.0.0-experimental.20) (2022-08-25)
|
|
949
|
+
|
|
950
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
951
|
+
|
|
952
|
+
# [2.0.0-experimental.19](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.18...@ant-design/pro-form@2.0.0-experimental.19) (2022-08-24)
|
|
953
|
+
|
|
954
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
955
|
+
|
|
956
|
+
# [2.0.0-experimental.18](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.17...@ant-design/pro-form@2.0.0-experimental.18) (2022-08-24)
|
|
957
|
+
|
|
958
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
959
|
+
|
|
960
|
+
# [2.0.0-experimental.17](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.16...@ant-design/pro-form@2.0.0-experimental.17) (2022-08-24)
|
|
961
|
+
|
|
962
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
963
|
+
|
|
964
|
+
# [2.0.0-experimental.16](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.15...@ant-design/pro-form@2.0.0-experimental.16) (2022-08-24)
|
|
965
|
+
|
|
966
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
967
|
+
|
|
968
|
+
# [2.0.0-experimental.15](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.14...@ant-design/pro-form@2.0.0-experimental.15) (2022-08-23)
|
|
969
|
+
|
|
970
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
971
|
+
|
|
972
|
+
# [2.0.0-experimental.14](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.74.1...@ant-design/pro-form@2.0.0-experimental.14) (2022-08-23)
|
|
973
|
+
|
|
974
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
975
|
+
|
|
976
|
+
# [1.74.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.73.0...@ant-design/pro-form@1.74.0) (2022-08-19)
|
|
977
|
+
|
|
978
|
+
### Features
|
|
979
|
+
|
|
980
|
+
- **form:** support Pro.useFormInstance ([d53eccc](https://github.com/ant-design/pro-components/commit/d53eccca812e477c68f59243b227e3141526ce69))
|
|
981
|
+
|
|
982
|
+
# [2.0.0-experimental.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.10...@ant-design/pro-form@2.0.0-experimental.11) (2022-08-18)
|
|
983
|
+
|
|
984
|
+
### Bug Fixes
|
|
985
|
+
|
|
986
|
+
- **field:** 修复金额输入框因正则问题导致格式化异常的问题 ([#5715](https://github.com/ant-design/pro-components/issues/5715)) ([d32df82](https://github.com/ant-design/pro-components/commit/d32df82a1fdf0e912c6e3818616256468aaa703a))
|
|
987
|
+
- **form:** destroyOnClose does not work as expected ([#5687](https://github.com/ant-design/pro-components/issues/5687)) ([c2fac32](https://github.com/ant-design/pro-components/commit/c2fac3270f9a936e84b683918b234a954b5417c8))
|
|
988
|
+
- **form:** UploadButton and UploadDragger readonly not working with Form Context ([#5689](https://github.com/ant-design/pro-components/issues/5689)) ([4a36c54](https://github.com/ant-design/pro-components/commit/4a36c54fbd1f64a7dc247a5f9c8f13768f824e14))
|
|
989
|
+
- **form:** 修复查询表单传入的 defaultColsNumber 与表单项数量相同时未显示展开按钮的问题 ([#5718](https://github.com/ant-design/pro-components/issues/5718)) ([e4520d1](https://github.com/ant-design/pro-components/commit/e4520d11e4861230153cd924adb412ff7a61f23f))
|
|
990
|
+
- **form:** 修复查询表单展示「展开」按钮的逻辑错误问题 ([#5723](https://github.com/ant-design/pro-components/issues/5723)) ([2f7b0e4](https://github.com/ant-design/pro-components/commit/2f7b0e4b5ce43ed83469cd6115169f729b2887fa))
|
|
991
|
+
|
|
992
|
+
### Features
|
|
993
|
+
|
|
994
|
+
- **locale:** Add multilingual translation ([#5685](https://github.com/ant-design/pro-components/issues/5685)) ([0de3c0d](https://github.com/ant-design/pro-components/commit/0de3c0dd559b4133c8b3195efbfb2590d26617fa))
|
|
995
|
+
|
|
996
|
+
# [2.0.0-experimental.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.9...@ant-design/pro-form@2.0.0-experimental.10) (2022-08-12)
|
|
997
|
+
|
|
998
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
999
|
+
|
|
1000
|
+
# [2.0.0-experimental.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.8...@ant-design/pro-form@2.0.0-experimental.9) (2022-08-10)
|
|
1001
|
+
|
|
1002
|
+
### Bug Fixes
|
|
1003
|
+
|
|
1004
|
+
- **form:** Stepsform to correctly unregister form ([#5668](https://github.com/ant-design/pro-components/issues/5668)) ([1a52400](https://github.com/ant-design/pro-components/commit/1a52400d16e361a79dfacdd252542144721279c6))
|
|
1005
|
+
|
|
1006
|
+
# [2.0.0-experimental.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.72.0...@ant-design/pro-form@2.0.0-experimental.8) (2022-08-05)
|
|
1007
|
+
|
|
1008
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1009
|
+
|
|
1010
|
+
# [2.0.0-experimental.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.6...@ant-design/pro-form@2.0.0-experimental.7) (2022-08-01)
|
|
1011
|
+
|
|
1012
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1013
|
+
|
|
1014
|
+
# [2.0.0-experimental.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.5...@ant-design/pro-form@2.0.0-experimental.6) (2022-08-01)
|
|
1015
|
+
|
|
1016
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1017
|
+
|
|
1018
|
+
# [2.0.0-experimental.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.4...@ant-design/pro-form@2.0.0-experimental.5) (2022-08-01)
|
|
1019
|
+
|
|
1020
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1021
|
+
|
|
1022
|
+
# [2.0.0-experimental.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.3...@ant-design/pro-form@2.0.0-experimental.4) (2022-08-01)
|
|
1023
|
+
|
|
1024
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1025
|
+
|
|
1026
|
+
# [2.0.0-experimental.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@2.0.0-experimental.2...@ant-design/pro-form@2.0.0-experimental.3) (2022-08-01)
|
|
1027
|
+
|
|
1028
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1029
|
+
|
|
1030
|
+
# [2.0.0-experimental.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.71.2...@ant-design/pro-form@2.0.0-experimental.2) (2022-08-01)
|
|
1031
|
+
|
|
1032
|
+
### Features
|
|
1033
|
+
|
|
1034
|
+
- **form:** export type CaptFieldRef from Captcha ([#5605](https://github.com/ant-design/pro-components/issues/5605)) ([f178778](https://github.com/ant-design/pro-components/commit/f17877804a0cf7c8bf8c86f34255ed2699cc9dbd))
|
|
1035
|
+
|
|
1036
|
+
## [1.71.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.71.1...@ant-design/pro-form@1.71.2) (2022-07-22)
|
|
1037
|
+
|
|
1038
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1039
|
+
|
|
1040
|
+
## [1.71.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.71.0...@ant-design/pro-form@1.71.1) (2022-07-21)
|
|
1041
|
+
|
|
1042
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1043
|
+
|
|
1044
|
+
# [1.71.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.70.3...@ant-design/pro-form@1.71.0) (2022-07-21)
|
|
1045
|
+
|
|
1046
|
+
### Features
|
|
1047
|
+
|
|
1048
|
+
- **form:** Form support readonly ([a5a9611](https://github.com/ant-design/pro-components/commit/a5a9611a9610281d9b4f71a617bbf205f84ca04a))
|
|
1049
|
+
|
|
1050
|
+
## [1.70.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.70.2...@ant-design/pro-form@1.70.3) (2022-07-14)
|
|
1051
|
+
|
|
1052
|
+
### Bug Fixes
|
|
1053
|
+
|
|
1054
|
+
- **form:** collapse calculation rules changed ([#5527](https://github.com/ant-design/pro-components/issues/5527)) ([b5c6060](https://github.com/ant-design/pro-components/commit/b5c6060ceae92953d2b261815700972b1e591568))
|
|
1055
|
+
- **form:** fix ProFormUpload typescript error ([5d871ed](https://github.com/ant-design/pro-components/commit/5d871ed051d1134c8e23ddf7ad8a59ceef79270c))
|
|
1056
|
+
|
|
1057
|
+
## [1.70.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.70.1...@ant-design/pro-form@1.70.2) (2022-07-11)
|
|
1058
|
+
|
|
1059
|
+
### Bug Fixes
|
|
1060
|
+
|
|
1061
|
+
- **form:** SchemaForm dependency use name, filedProps.name is deprecated ([aadbede](https://github.com/ant-design/pro-components/commit/aadbedeb44249115f9cd7763310876064b135c25))
|
|
1062
|
+
|
|
1063
|
+
## [1.70.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.70.0...@ant-design/pro-form@1.70.1) (2022-07-06)
|
|
1064
|
+
|
|
1065
|
+
### Bug Fixes
|
|
1066
|
+
|
|
1067
|
+
- **form:** fix sublist getCurrentRowData no work error ([47fe90c](https://github.com/ant-design/pro-components/commit/47fe90c1d90ef6b8e28bdbdda86a915454cb1d64))
|
|
1068
|
+
- ’添加一行数据 ' 国际化问题 ([#5469](https://github.com/ant-design/pro-components/issues/5469)) ([85cc727](https://github.com/ant-design/pro-components/commit/85cc7275bb58e52e84f25594952d9612742102a0))
|
|
1069
|
+
- **form:** onlu has one item, no render Collapse ([a3758b0](https://github.com/ant-design/pro-components/commit/a3758b019665d7c707ebad2991fbfc5f09de47c2))
|
|
1070
|
+
|
|
1071
|
+
# [1.70.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.69.4...@ant-design/pro-form@1.70.0) (2022-06-30)
|
|
1072
|
+
|
|
1073
|
+
### Bug Fixes
|
|
1074
|
+
|
|
1075
|
+
- **form:** fix FormItems in FormList umount unexpectedly ([#5413](https://github.com/ant-design/pro-components/issues/5413)) ([#5437](https://github.com/ant-design/pro-components/issues/5437)) ([632b4a2](https://github.com/ant-design/pro-components/commit/632b4a2a985f93a7bc2d64ddebf83c20d7943d99))
|
|
1076
|
+
- **form:** fix the abnormal width caused by addonAfter and addonB… ([#5417](https://github.com/ant-design/pro-components/issues/5417)) ([7cb9362](https://github.com/ant-design/pro-components/commit/7cb9362cfe62ed7a8d8c7754a051af2009d0a2a0))
|
|
1077
|
+
- **form:** use omit.js instead of lodash to avoid introducing the whole lodash lib ([#5438](https://github.com/ant-design/pro-components/issues/5438)) ([1a88877](https://github.com/ant-design/pro-components/commit/1a8887708378eeb92b5b2c368dd413d286f53a68))
|
|
1078
|
+
|
|
1079
|
+
### Features
|
|
1080
|
+
|
|
1081
|
+
- **form:** add captcha methods and createField function Fieldref ([#5398](https://github.com/ant-design/pro-components/issues/5398)) ([097fdce](https://github.com/ant-design/pro-components/commit/097fdce68c270e960a862089893760aab11fbefa)), closes [#5408](https://github.com/ant-design/pro-components/issues/5408) [#5410](https://github.com/ant-design/pro-components/issues/5410) [#5404](https://github.com/ant-design/pro-components/issues/5404)
|
|
1082
|
+
- **form:** add syncToUrlAsImportant prop ([#5421](https://github.com/ant-design/pro-components/issues/5421)) ([e71c827](https://github.com/ant-design/pro-components/commit/e71c827f9dc8b3672410e1de0e9b9a3c9957320d))
|
|
1083
|
+
|
|
1084
|
+
## [1.69.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.69.3...@ant-design/pro-form@1.69.4) (2022-06-16)
|
|
1085
|
+
|
|
1086
|
+
### Bug Fixes
|
|
1087
|
+
|
|
1088
|
+
- **form:** export all Form.Item ([0045a93](https://github.com/ant-design/pro-components/commit/0045a9370090e998c8bc1189559a4645427e9e9e))
|
|
1089
|
+
- **form:** SearchSelect component support fetchDataOnSearch ([#5321](https://github.com/ant-design/pro-components/issues/5321)) ([3c0cde3](https://github.com/ant-design/pro-components/commit/3c0cde32cc7491fef8665e314927e4bea2bbf97b))
|
|
1090
|
+
- typo ([#5346](https://github.com/ant-design/pro-components/issues/5346)) ([1c41d5f](https://github.com/ant-design/pro-components/commit/1c41d5fca836949b55c2a6401bf0e66ad53a0319))
|
|
1091
|
+
- **ProForm:** validateFieldsReturnFormatValue 可能为 undefined ([#5331](https://github.com/ant-design/pro-components/issues/5331)) ([5735476](https://github.com/ant-design/pro-components/commit/5735476227a499e45ba4f4b654f0ea4d759805ae))
|
|
1092
|
+
|
|
1093
|
+
## [1.69.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.69.2...@ant-design/pro-form@1.69.3) (2022-06-02)
|
|
1094
|
+
|
|
1095
|
+
### Bug Fixes
|
|
1096
|
+
|
|
1097
|
+
- **form:** fix options no work error ([ef9ebb0](https://github.com/ant-design/pro-components/commit/ef9ebb055a18b22885de3ab8e05792fae32c22e2))
|
|
1098
|
+
|
|
1099
|
+
## [1.69.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.69.1...@ant-design/pro-form@1.69.2) (2022-06-02)
|
|
1100
|
+
|
|
1101
|
+
### Bug Fixes
|
|
1102
|
+
|
|
1103
|
+
- **form:** defaultColsNumber did not meet expect ([#5329](https://github.com/ant-design/pro-components/issues/5329)) ([63827bb](https://github.com/ant-design/pro-components/commit/63827bb52d01b9f19c415057628101d3bad03c31)), closes [#5328](https://github.com/ant-design/pro-components/issues/5328)
|
|
1104
|
+
- **form:** fix addonAfter style error ([#5312](https://github.com/ant-design/pro-components/issues/5312)) ([981886d](https://github.com/ant-design/pro-components/commit/981886d746b380f05ce1a7b904e02c7a13630e15)), closes [#5309](https://github.com/ant-design/pro-components/issues/5309)
|
|
1105
|
+
- **form:** fix Cascader and TreeSelect no has light lable error ([#5310](https://github.com/ant-design/pro-components/issues/5310)) ([2058bf4](https://github.com/ant-design/pro-components/commit/2058bf4179246bd3dd9b2fc7888fb2665e316d30))
|
|
1106
|
+
- **form:** fix loginForm no support submitButtonProps error ([#5313](https://github.com/ant-design/pro-components/issues/5313)) ([78d47de](https://github.com/ant-design/pro-components/commit/78d47deb343820debbb5f1df87b3ec7c70bdfcf7))
|
|
1107
|
+
- **form:** reset form after onFinish return true value ([#5306](https://github.com/ant-design/pro-components/issues/5306)) ([d91f24b](https://github.com/ant-design/pro-components/commit/d91f24b9dc998a1b68e9ace20bef3d90161d9c29))
|
|
1108
|
+
- **form:** setting colProps in the Form dose not work ([#5318](https://github.com/ant-design/pro-components/issues/5318)) ([177a0e6](https://github.com/ant-design/pro-components/commit/177a0e695ca206a70e6a8cafbbf2536b7475e7bf))
|
|
1109
|
+
- **form:** support convertValue for BetaSchemaForm ([09186be](https://github.com/ant-design/pro-components/commit/09186bef8d62915f64d98c7788e402a7986ae2c0))
|
|
1110
|
+
- [#5273](https://github.com/ant-design/pro-components/issues/5273) for all components ([#5314](https://github.com/ant-design/pro-components/issues/5314)) ([d25e87c](https://github.com/ant-design/pro-components/commit/d25e87c68db8e3c8d120ffc4cc7cd95e33ce6c24))
|
|
1111
|
+
|
|
1112
|
+
## [1.69.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.69.0...@ant-design/pro-form@1.69.1) (2022-05-27)
|
|
1113
|
+
|
|
1114
|
+
### Bug Fixes
|
|
1115
|
+
|
|
1116
|
+
- **form:** input will be blur after setState ([#5298](https://github.com/ant-design/pro-components/issues/5298)) ([2a52800](https://github.com/ant-design/pro-components/commit/2a52800baa7a6c657cdad4ffad86efd8fce977b1))
|
|
1117
|
+
|
|
1118
|
+
# [1.69.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.68.2...@ant-design/pro-form@1.69.0) (2022-05-26)
|
|
1119
|
+
|
|
1120
|
+
### Bug Fixes
|
|
1121
|
+
|
|
1122
|
+
- **form:** default get a form ([2de054b](https://github.com/ant-design/pro-components/commit/2de054b9ab665a10f25b542ddda4983433987adb))
|
|
1123
|
+
- **form:** ProFormCheckBox support readonly lable ([ea574c4](https://github.com/ant-design/pro-components/commit/ea574c4d0206f70956a0a2009ba28722716a2ae3))
|
|
1124
|
+
- **form:** select placement api dont work in lightFilter ([#5279](https://github.com/ant-design/pro-components/issues/5279)) ([07ad53f](https://github.com/ant-design/pro-components/commit/07ad53f35a428839b11734f3b6bf754cf1d8b770))
|
|
1125
|
+
|
|
1126
|
+
### Features
|
|
1127
|
+
|
|
1128
|
+
- **table:** renderFormItem support ignoreFormItem ([7aae13d](https://github.com/ant-design/pro-components/commit/7aae13d791452121eedfc38c43676fc9a0f3ba05))
|
|
1129
|
+
- **table:** renderFormItem support ignoreFormItem ([#5296](https://github.com/ant-design/pro-components/issues/5296)) ([d6977b5](https://github.com/ant-design/pro-components/commit/d6977b5e2c75c100992b049f4bf1642fd22f351e))
|
|
1130
|
+
|
|
1131
|
+
## [1.68.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.68.1...@ant-design/pro-form@1.68.2) (2022-05-20)
|
|
1132
|
+
|
|
1133
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1134
|
+
|
|
1135
|
+
## [1.68.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.68.0...@ant-design/pro-form@1.68.1) (2022-05-20)
|
|
1136
|
+
|
|
1137
|
+
### Bug Fixes
|
|
1138
|
+
|
|
1139
|
+
- spaceProps.className doesn't work in Form.Group ([8c89b92](https://github.com/ant-design/pro-components/commit/8c89b924e04699d709c4db8e81067728d05ca1c8))
|
|
1140
|
+
|
|
1141
|
+
# [1.68.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.67.3...@ant-design/pro-form@1.68.0) (2022-05-16)
|
|
1142
|
+
|
|
1143
|
+
### Bug Fixes
|
|
1144
|
+
|
|
1145
|
+
- **form:** fix ProFormTreeSelect style no work error ([cb5dfa5](https://github.com/ant-design/pro-components/commit/cb5dfa5177e7f5ae12d8ff40f911bd01fdf43c85))
|
|
1146
|
+
|
|
1147
|
+
### Features
|
|
1148
|
+
|
|
1149
|
+
- **form:** `FieldProps` add `ref` type ([#5209](https://github.com/ant-design/pro-components/issues/5209)) ([de87b58](https://github.com/ant-design/pro-components/commit/de87b5854ae11d878fb4d75356db6a8710af4a68))
|
|
1150
|
+
|
|
1151
|
+
## [1.67.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.67.2...@ant-design/pro-form@1.67.3) (2022-05-12)
|
|
1152
|
+
|
|
1153
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1154
|
+
|
|
1155
|
+
## [1.67.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.67.1...@ant-design/pro-form@1.67.2) (2022-05-12)
|
|
1156
|
+
|
|
1157
|
+
### Bug Fixes
|
|
1158
|
+
|
|
1159
|
+
- add alwaysShowItemLabel ([0c0ba50](https://github.com/ant-design/pro-components/commit/0c0ba50c3ac6783df27828de93dacc6acf572c3a))
|
|
1160
|
+
- **form:** fix bgImg color cover style ([fea7f7d](https://github.com/ant-design/pro-components/commit/fea7f7d18a7c92c574a5f4944e87a8cb835cfd51))
|
|
1161
|
+
|
|
1162
|
+
## [1.67.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.67.0...@ant-design/pro-form@1.67.1) (2022-05-09)
|
|
1163
|
+
|
|
1164
|
+
### Bug Fixes
|
|
1165
|
+
|
|
1166
|
+
- **login:** fix loginPage style error ([d9941ee](https://github.com/ant-design/pro-components/commit/d9941eeb781448e4674e22b4e9c00a3a1043f707))
|
|
1167
|
+
|
|
1168
|
+
# [1.67.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.65.0...@ant-design/pro-form@1.67.0) (2022-05-07)
|
|
1169
|
+
|
|
1170
|
+
### Bug Fixes
|
|
1171
|
+
|
|
1172
|
+
- **form:** add missed ProFormTreeSelect to the form export ([#5133](https://github.com/ant-design/pro-components/issues/5133)) ([6e852f1](https://github.com/ant-design/pro-components/commit/6e852f119dbfaa5ff82a2ea62436157421756836))
|
|
1173
|
+
- **form:** StepDoms use context reg form ([82f0eff](https://github.com/ant-design/pro-components/commit/82f0eff2287f430756d1e236c4ad417d2649af80))
|
|
1174
|
+
- **form:** Supplementary English Documents ([#5139](https://github.com/ant-design/pro-components/issues/5139)) ([6fb2ccf](https://github.com/ant-design/pro-components/commit/6fb2ccf811f6262e29fa7782651ca20e10719caa))
|
|
1175
|
+
- **form:** unRegForm not work when use step ([#5190](https://github.com/ant-design/pro-components/issues/5190)) ([808c3c9](https://github.com/ant-design/pro-components/commit/808c3c964e4a6f368bf24ddb49d45073347e7485))
|
|
1176
|
+
- **table:** addEditRecord check parentKey is has record ([#5183](https://github.com/ant-design/pro-components/issues/5183)) ([d568c24](https://github.com/ant-design/pro-components/commit/d568c2425e3794a005ad3e34355f0af1c31a642d))
|
|
1177
|
+
|
|
1178
|
+
### Features
|
|
1179
|
+
|
|
1180
|
+
- **form:** collapse support hidden number ([#5116](https://github.com/ant-design/pro-components/issues/5116)) ([eb14e1a](https://github.com/ant-design/pro-components/commit/eb14e1a0e3cb4aab8888b592c612c3a840e65db0))
|
|
1181
|
+
|
|
1182
|
+
# [1.66.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.65.0...@ant-design/pro-form@1.66.0) (2022-04-29)
|
|
1183
|
+
|
|
1184
|
+
### Bug Fixes
|
|
1185
|
+
|
|
1186
|
+
- **form:** add missed ProFormTreeSelect to the form export ([#5133](https://github.com/ant-design/pro-components/issues/5133)) ([6e852f1](https://github.com/ant-design/pro-components/commit/6e852f119dbfaa5ff82a2ea62436157421756836))
|
|
1187
|
+
- **form:** Supplementary English Documents ([#5139](https://github.com/ant-design/pro-components/issues/5139)) ([6fb2ccf](https://github.com/ant-design/pro-components/commit/6fb2ccf811f6262e29fa7782651ca20e10719caa))
|
|
1188
|
+
|
|
1189
|
+
### Features
|
|
1190
|
+
|
|
1191
|
+
- **form:** collapse support hidden number ([#5116](https://github.com/ant-design/pro-components/issues/5116)) ([eb14e1a](https://github.com/ant-design/pro-components/commit/eb14e1a0e3cb4aab8888b592c612c3a840e65db0))
|
|
1192
|
+
|
|
1193
|
+
# [1.65.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.64.1...@ant-design/pro-form@1.65.0) (2022-04-24)
|
|
1194
|
+
|
|
1195
|
+
### Features
|
|
1196
|
+
|
|
1197
|
+
- **form:** 提交表单时,禁用取消按钮和右上角关闭按钮,直到 onFinish 异步回调执行完成 ([#5078](https://github.com/ant-design/pro-components/issues/5078)) ([ff1a4e0](https://github.com/ant-design/pro-components/commit/ff1a4e07df6a42282cf392fb5992d1afa25b7b48))
|
|
1198
|
+
|
|
1199
|
+
## [1.64.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.64.0...@ant-design/pro-form@1.64.1) (2022-04-18)
|
|
1200
|
+
|
|
1201
|
+
### Bug Fixes
|
|
1202
|
+
|
|
1203
|
+
- **form:** fix revalidateOnFocus alway work error-n ([0ea1618](https://github.com/ant-design/pro-components/commit/0ea1618154634f6e0ac9c64682a71746ab191807))
|
|
1204
|
+
- **form:** ProFormList RenderProps 透传总行数 count 参数 ([#5068](https://github.com/ant-design/pro-components/issues/5068)) ([b12fd9c](https://github.com/ant-design/pro-components/commit/b12fd9c2c5e2c0759bea0dcdc16a05e979423f34))
|
|
1205
|
+
|
|
1206
|
+
# [1.64.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.63.1...@ant-design/pro-form@1.64.0) (2022-04-14)
|
|
1207
|
+
|
|
1208
|
+
### Features
|
|
1209
|
+
|
|
1210
|
+
- **form:** add new components LoginFormPage ([5d6a2ee](https://github.com/ant-design/pro-components/commit/5d6a2ee0b9a57502c683319a3ff48d7a53481eaa))
|
|
1211
|
+
|
|
1212
|
+
## [1.63.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.63.0...@ant-design/pro-form@1.63.1) (2022-04-13)
|
|
1213
|
+
|
|
1214
|
+
### Bug Fixes
|
|
1215
|
+
|
|
1216
|
+
- **form:** clean react color deps ([#5044](https://github.com/ant-design/pro-components/issues/5044)) ([8977a26](https://github.com/ant-design/pro-components/commit/8977a2662195078efb7376e5fa4f0037641943ec))
|
|
1217
|
+
|
|
1218
|
+
# [1.63.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.62.1...@ant-design/pro-form@1.63.0) (2022-04-12)
|
|
1219
|
+
|
|
1220
|
+
### Bug Fixes
|
|
1221
|
+
|
|
1222
|
+
- **form:** fix array placeholder ([#5022](https://github.com/ant-design/pro-components/issues/5022)) ([9fdf86b](https://github.com/ant-design/pro-components/commit/9fdf86b083989f1b088790edb3b4ee2698079fc8))
|
|
1223
|
+
- **form:** fix document is null, will error ([#5025](https://github.com/ant-design/pro-components/issues/5025)) ([f2344b4](https://github.com/ant-design/pro-components/commit/f2344b40663955b7edc33a9261c7746b34db7c1d))
|
|
1224
|
+
- **form:** fix ProFormTreeSelect and ProFormCascader no work when LightFilter ([#5026](https://github.com/ant-design/pro-components/issues/5026)) ([b9db318](https://github.com/ant-design/pro-components/commit/b9db318da48bc775c40ff3e1c32827446df042b7))
|
|
1225
|
+
- **table:** supporting custom gutter for form ([#5015](https://github.com/ant-design/pro-components/issues/5015)) ([9528a5c](https://github.com/ant-design/pro-components/commit/9528a5ca1180dad07d25a0a50cd9719704be37d8))
|
|
1226
|
+
|
|
1227
|
+
### Features
|
|
1228
|
+
|
|
1229
|
+
- **form:** add placement in lightFilter ([#4974](https://github.com/ant-design/pro-components/issues/4974)) ([0e4179d](https://github.com/ant-design/pro-components/commit/0e4179d9e12a370048ec840abc443246d479ffc7))
|
|
1230
|
+
|
|
1231
|
+
## [1.62.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.62.0...@ant-design/pro-form@1.62.1) (2022-04-08)
|
|
1232
|
+
|
|
1233
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1234
|
+
|
|
1235
|
+
# [1.62.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.61.1...@ant-design/pro-form@1.62.0) (2022-04-07)
|
|
1236
|
+
|
|
1237
|
+
### Bug Fixes
|
|
1238
|
+
|
|
1239
|
+
- **form:** fix alwaysShowItemLabel no work error ([8bccdf7](https://github.com/ant-design/pro-components/commit/8bccdf7f18b7b6651b792938e1bef89cb06efc4f))
|
|
1240
|
+
- **form:** fix alwaysShowItemLabel no work error ([66a879c](https://github.com/ant-design/pro-components/commit/66a879c312f0823fdaa2bc0cff9da55659788c3e))
|
|
1241
|
+
|
|
1242
|
+
### Features
|
|
1243
|
+
|
|
1244
|
+
- **form:** Render Extra Content inside Pro Form List ([#4991](https://github.com/ant-design/pro-components/issues/4991)) ([ba73f4a](https://github.com/ant-design/pro-components/commit/ba73f4a5e686355d78125517bd039f7e34a446d5))
|
|
1245
|
+
|
|
1246
|
+
## [1.61.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.61.0...@ant-design/pro-form@1.61.1) (2022-04-06)
|
|
1247
|
+
|
|
1248
|
+
### Bug Fixes
|
|
1249
|
+
|
|
1250
|
+
- **form:** cacheForSwr not work ([#4976](https://github.com/ant-design/pro-components/issues/4976)) ([df6676d](https://github.com/ant-design/pro-components/commit/df6676de1c7602e3e7a72e1ce3bee5ade15593ed))
|
|
1251
|
+
- **form:** Invalid use of DatePicker format in ProFormList ([#4978](https://github.com/ant-design/pro-components/issues/4978)) ([3674d2e](https://github.com/ant-design/pro-components/commit/3674d2e450c549030251c82cd8015babea3f901f))
|
|
1252
|
+
- **table:** fix ts error ([db7e313](https://github.com/ant-design/pro-components/commit/db7e3138faf9ff7b8fcffd8e47a10f0551d1e0d6))
|
|
1253
|
+
|
|
1254
|
+
# [1.61.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.60.0...@ant-design/pro-form@1.61.0) (2022-03-28)
|
|
1255
|
+
|
|
1256
|
+
### Bug Fixes
|
|
1257
|
+
|
|
1258
|
+
- **form:** ConfigProvider setting componentSize dosen't work when using BaseForm ([#4927](https://github.com/ant-design/pro-components/issues/4927)) ([89729a2](https://github.com/ant-design/pro-components/commit/89729a2d4908ed5c5e0f05fea6c20137b5c73239))
|
|
1259
|
+
- **form:** do not re-execute fieldProps when onValuesChange is set ([#4922](https://github.com/ant-design/pro-components/issues/4922)) ([5d873eb](https://github.com/ant-design/pro-components/commit/5d873eb865d2353c8646a28f625622efc5d183d4))
|
|
1260
|
+
|
|
1261
|
+
### Features
|
|
1262
|
+
|
|
1263
|
+
- **form:** support setCurrentRowData and getCurrentRowData ([#4926](https://github.com/ant-design/pro-components/issues/4926)) ([3eb11e3](https://github.com/ant-design/pro-components/commit/3eb11e3ec6a814fed091b0d9204563f61f5e28f0))
|
|
1264
|
+
|
|
1265
|
+
# [1.60.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.59.3...@ant-design/pro-form@1.60.0) (2022-03-25)
|
|
1266
|
+
|
|
1267
|
+
### Bug Fixes
|
|
1268
|
+
|
|
1269
|
+
- **form:** field will be ignored when value=0 ([#4901](https://github.com/ant-design/pro-components/issues/4901)) ([1e8a213](https://github.com/ant-design/pro-components/commit/1e8a213bcadbfe702629996b407fa71ec74ea64c))
|
|
1270
|
+
|
|
1271
|
+
### Features
|
|
1272
|
+
|
|
1273
|
+
- **form:** support grid layout ([#4859](https://github.com/ant-design/pro-components/issues/4859)) ([266af92](https://github.com/ant-design/pro-components/commit/266af92b2c1e1ac22b7e93f9745a65cbf748bbb4))
|
|
1274
|
+
- **table:** support getRows, getRow, setRow ([#4904](https://github.com/ant-design/pro-components/issues/4904)) ([756340e](https://github.com/ant-design/pro-components/commit/756340ee97f13b55e5f51cc875ec6b344e953d24))
|
|
1275
|
+
|
|
1276
|
+
## [1.59.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.59.2...@ant-design/pro-form@1.59.3) (2022-03-22)
|
|
1277
|
+
|
|
1278
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1279
|
+
|
|
1280
|
+
## [1.59.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.59.1...@ant-design/pro-form@1.59.2) (2022-03-18)
|
|
1281
|
+
|
|
1282
|
+
### Bug Fixes
|
|
1283
|
+
|
|
1284
|
+
- **form:** fix modal and drawer form rerender error ([4b728f2](https://github.com/ant-design/pro-components/commit/4b728f2652f1c6f6d6ba20ff65c922dde1cd9894))
|
|
1285
|
+
- **table:** fix inlint error render dom ([bfeb81a](https://github.com/ant-design/pro-components/commit/bfeb81afc6bc4305b3d7ef2b84c0afc089dad7a0))
|
|
1286
|
+
|
|
1287
|
+
## [1.59.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.59.0...@ant-design/pro-form@1.59.1) (2022-03-16)
|
|
1288
|
+
|
|
1289
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1290
|
+
|
|
1291
|
+
# [1.59.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.58.1...@ant-design/pro-form@1.59.0) (2022-03-16)
|
|
1292
|
+
|
|
1293
|
+
### Features
|
|
1294
|
+
|
|
1295
|
+
- **form:** StepsForm support vertical direction ([#4848](https://github.com/ant-design/pro-components/issues/4848)) ([482f562](https://github.com/ant-design/pro-components/commit/482f562b7034826c9acdda6955c00d3f1899b139))
|
|
1296
|
+
|
|
1297
|
+
## [1.58.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.58.0...@ant-design/pro-form@1.58.1) (2022-03-15)
|
|
1298
|
+
|
|
1299
|
+
### Bug Fixes
|
|
1300
|
+
|
|
1301
|
+
- **form:** fix ProFormDependency no rendeer transform error ([5b163eb](https://github.com/ant-design/pro-components/commit/5b163eb1d6b3430281eee9ae73e86ddfc07d3f0c))
|
|
1302
|
+
- **table:** fix table has name, add new line will error ([74f83df](https://github.com/ant-design/pro-components/commit/74f83df88bebb3fdfbc9874960b2e6e3658e0ac1))
|
|
1303
|
+
|
|
1304
|
+
# [1.58.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.57.0...@ant-design/pro-form@1.58.0) (2022-03-14)
|
|
1305
|
+
|
|
1306
|
+
### Bug Fixes
|
|
1307
|
+
|
|
1308
|
+
- **form:** avoid executing setState after unmount ([#4814](https://github.com/ant-design/pro-components/issues/4814)) ([f227a80](https://github.com/ant-design/pro-components/commit/f227a801145af2893daedc6170acca895131fc76))
|
|
1309
|
+
- **form:** ModalForm and DrawerForm remove default value of forceRender ([#4842](https://github.com/ant-design/pro-components/issues/4842)) ([3e9589c](https://github.com/ant-design/pro-components/commit/3e9589c840ac19e2d914b75921a8ab6cdf467276))
|
|
1310
|
+
|
|
1311
|
+
### Features
|
|
1312
|
+
|
|
1313
|
+
- **utils:** 🎸 improve type and support external override type ([#4806](https://github.com/ant-design/pro-components/issues/4806)) ([13b590a](https://github.com/ant-design/pro-components/commit/13b590acaa69315dbecb22267411e8a275da8648))
|
|
1314
|
+
|
|
1315
|
+
# [1.57.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.56.1...@ant-design/pro-form@1.57.0) (2022-03-08)
|
|
1316
|
+
|
|
1317
|
+
### Bug Fixes
|
|
1318
|
+
|
|
1319
|
+
- **form:** switching current on `onFinish` has no effect ([#4790](https://github.com/ant-design/pro-components/issues/4790)) ([18db280](https://github.com/ant-design/pro-components/commit/18db28080eea705869d911a916c0cebfcc86375e))
|
|
1320
|
+
|
|
1321
|
+
### Features
|
|
1322
|
+
|
|
1323
|
+
- **form:** improve SchemaForm achieve ([#4786](https://github.com/ant-design/pro-components/issues/4786)) ([b6642d1](https://github.com/ant-design/pro-components/commit/b6642d12eb96b048651a4e4dcbea1dde2b9960ee))
|
|
1324
|
+
|
|
1325
|
+
## [1.56.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.56.0...@ant-design/pro-form@1.56.1) (2022-03-07)
|
|
1326
|
+
|
|
1327
|
+
### Bug Fixes
|
|
1328
|
+
|
|
1329
|
+
- **form:** FormList add no set key warning ([b677fef](https://github.com/ant-design/pro-components/commit/b677fef0f3b63448b1c29f0a167eef019b4522ed))
|
|
1330
|
+
- **form:** FormList min width=100% ([688b46f](https://github.com/ant-design/pro-components/commit/688b46fb783e0f2b49520cde5a94d96e1de4ed0e))
|
|
1331
|
+
|
|
1332
|
+
# [1.56.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.55.3...@ant-design/pro-form@1.56.0) (2022-03-07)
|
|
1333
|
+
|
|
1334
|
+
### Bug Fixes
|
|
1335
|
+
|
|
1336
|
+
- **form:** improve ModalForm and DrawerForm performance ([#4773](https://github.com/ant-design/pro-components/issues/4773)) ([30be82e](https://github.com/ant-design/pro-components/commit/30be82ee8f19164135b999a264469ea8848af574))
|
|
1337
|
+
- **form:** 修复类型错误,使用 itemRender,children 应该是非必须 ([#4784](https://github.com/ant-design/pro-components/issues/4784)) ([8b7f847](https://github.com/ant-design/pro-components/commit/8b7f8475efe7412b713c07dad832d720dc2886de))
|
|
1338
|
+
- **form:** range props not working because of SliderSingleProps ([#4682](https://github.com/ant-design/pro-components/issues/4682)) ([c0206ed](https://github.com/ant-design/pro-components/commit/c0206ede0fc732071f8ec916ab1cbc4c646c28a5))
|
|
1339
|
+
|
|
1340
|
+
### Features
|
|
1341
|
+
|
|
1342
|
+
- **form:** add `name` prop to `itemRender` ([#4779](https://github.com/ant-design/pro-components/issues/4779)) ([41b1796](https://github.com/ant-design/pro-components/commit/41b1796f0c1fbffa85dcea1331a0c7c18357a194))
|
|
1343
|
+
|
|
1344
|
+
## [1.55.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.55.2...@ant-design/pro-form@1.55.3) (2022-03-04)
|
|
1345
|
+
|
|
1346
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1347
|
+
|
|
1348
|
+
## [1.55.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.55.0...@ant-design/pro-form@1.55.2) (2022-03-04)
|
|
1349
|
+
|
|
1350
|
+
### Bug Fixes
|
|
1351
|
+
|
|
1352
|
+
- **form:** 🐛 hide upload button when fileList.length >= max ([#4752](https://github.com/ant-design/pro-components/issues/4752)) ([2828fac](https://github.com/ant-design/pro-components/commit/2828fac182e110c11e053085cceac4051c0835c5))
|
|
1353
|
+
- **form:** 修复 queryFilter 响应式会受 span 的属性顺序问题 ([#4722](https://github.com/ant-design/pro-components/issues/4722)) ([36cacf5](https://github.com/ant-design/pro-components/commit/36cacf5d3ba746c30da9079a27fba3ae65678a6c))
|
|
1354
|
+
- **form:** ignoreRules dosen't work ([#4687](https://github.com/ant-design/pro-components/issues/4687)) ([9173858](https://github.com/ant-design/pro-components/commit/9173858d5d869272c1b155f725887f7e6d635743))
|
|
1355
|
+
- **form:** ModalForm and Drawer alway forceRender ([2f41fe6](https://github.com/ant-design/pro-components/commit/2f41fe697559daa0f23a9a0ec5711006d373c950))
|
|
1356
|
+
- **form:** submitter default config overwrite by proFormProps.submitter ([#4751](https://github.com/ant-design/pro-components/issues/4751)) ([3e5fca7](https://github.com/ant-design/pro-components/commit/3e5fca789b0e24210c9bb5e2658b16f0e175715b))
|
|
1357
|
+
|
|
1358
|
+
## [1.55.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.55.0...@ant-design/pro-form@1.55.1) (2022-03-02)
|
|
1359
|
+
|
|
1360
|
+
### Bug Fixes
|
|
1361
|
+
|
|
1362
|
+
- **form:** 修复 queryFilter 响应式会受 span 的属性顺序问题 ([#4722](https://github.com/ant-design/pro-components/issues/4722)) ([36cacf5](https://github.com/ant-design/pro-components/commit/36cacf5d3ba746c30da9079a27fba3ae65678a6c))
|
|
1363
|
+
- **form:** ignoreRules dosen't work ([#4687](https://github.com/ant-design/pro-components/issues/4687)) ([9173858](https://github.com/ant-design/pro-components/commit/9173858d5d869272c1b155f725887f7e6d635743))
|
|
1364
|
+
|
|
1365
|
+
# [1.55.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.54.0...@ant-design/pro-form@1.55.0) (2022-02-24)
|
|
1366
|
+
|
|
1367
|
+
### Bug Fixes
|
|
1368
|
+
|
|
1369
|
+
- **form:** initialValue no cover ([0669ddd](https://github.com/ant-design/pro-components/commit/0669ddd4a6f29d92cb37353e66b03c0b42ebef0f))
|
|
1370
|
+
- 🐛 live code error ([#4690](https://github.com/ant-design/pro-components/issues/4690)) ([6ebd33b](https://github.com/ant-design/pro-components/commit/6ebd33bbf04bb19f98ba21da8a34eb66c039ecad))
|
|
1371
|
+
|
|
1372
|
+
### Features
|
|
1373
|
+
|
|
1374
|
+
- **form:** ProFormList 支持设置 min 和 max 控制条目数量 ([#4684](https://github.com/ant-design/pro-components/issues/4684)) ([0e648d4](https://github.com/ant-design/pro-components/commit/0e648d44f595f27eacd2a8d5f30634e29619683a))
|
|
1375
|
+
|
|
1376
|
+
# [1.54.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.7...@ant-design/pro-form@1.54.0) (2022-02-21)
|
|
1377
|
+
|
|
1378
|
+
### Bug Fixes
|
|
1379
|
+
|
|
1380
|
+
- **form:** 修复 modalForm 和 drawerForm 内容区表单按钮一闪而逝的问题 ([#4680](https://github.com/ant-design/pro-components/issues/4680)) ([f321fde](https://github.com/ant-design/pro-components/commit/f321fde3f88a5bc5745d68040a6c7b938eb58587))
|
|
1381
|
+
- **form:** fix FormItemProp no rerender error ([2365df4](https://github.com/ant-design/pro-components/commit/2365df4acf36c42c6489d474e5225b92dc16bf60))
|
|
1382
|
+
|
|
1383
|
+
### Features
|
|
1384
|
+
|
|
1385
|
+
- **form:** 更新货币符号 ([#4667](https://github.com/ant-design/pro-components/issues/4667)) ([b873a17](https://github.com/ant-design/pro-components/commit/b873a17d2d7c2265c7f381e2a09825ed8706444d))
|
|
1386
|
+
- **form:** improve dependency component archive ([#4678](https://github.com/ant-design/pro-components/issues/4678)) ([fcbc6c9](https://github.com/ant-design/pro-components/commit/fcbc6c9b944bb7e9e822ec5f0407cd7b413b11db))
|
|
1387
|
+
- **form,table,utils:** form 和 table 的 dateFormatter 支持函数 ([#4657](https://github.com/ant-design/pro-components/issues/4657)) ([bdbbae4](https://github.com/ant-design/pro-components/commit/bdbbae4212fede8bf230f9577feae853ce6bf287))
|
|
1388
|
+
|
|
1389
|
+
## [1.53.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.6...@ant-design/pro-form@1.53.7) (2022-02-18)
|
|
1390
|
+
|
|
1391
|
+
### Bug Fixes
|
|
1392
|
+
|
|
1393
|
+
- **form:** fix ignoreRules no work error ([5586970](https://github.com/ant-design/pro-components/commit/558697094fc0aa39b5ac372064608cdefa239798))
|
|
1394
|
+
- 🐛 make sure the formItemProps property is dosen't override ([#4662](https://github.com/ant-design/pro-components/issues/4662)) ([cd50ac4](https://github.com/ant-design/pro-components/commit/cd50ac44b319ce240f4435f10872733b4ba74690))
|
|
1395
|
+
- **table:** EditableProTable 支持在 renderFormItem 中的 record 中返回用户自定义的字段 ([#4644](https://github.com/ant-design/pro-components/issues/4644)) ([488122d](https://github.com/ant-design/pro-components/commit/488122d88f031472ee0786a98b2a3dd017c5cb5b))
|
|
1396
|
+
|
|
1397
|
+
## [1.53.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.5...@ant-design/pro-form@1.53.6) (2022-02-15)
|
|
1398
|
+
|
|
1399
|
+
### Bug Fixes
|
|
1400
|
+
|
|
1401
|
+
- **form:** fix ProFormDateTimePicker ts error ([0ca384d](https://github.com/ant-design/pro-components/commit/0ca384df21544250ba2d3074b1e49eb7de4c4865))
|
|
1402
|
+
- **form:** fix renderFormIten render null will show dom error ([8710ee3](https://github.com/ant-design/pro-components/commit/8710ee3c3da4a768d868d5255796786c5aee799f))
|
|
1403
|
+
|
|
1404
|
+
## [1.53.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.4...@ant-design/pro-form@1.53.5) (2022-02-14)
|
|
1405
|
+
|
|
1406
|
+
### Bug Fixes
|
|
1407
|
+
|
|
1408
|
+
- **form:** fix xxx moudle is null errror ([e134df7](https://github.com/ant-design/pro-components/commit/e134df779368cc00a0c44ea19bbeae2b7c343fcd))
|
|
1409
|
+
|
|
1410
|
+
## [1.53.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.3...@ant-design/pro-form@1.53.4) (2022-02-14)
|
|
1411
|
+
|
|
1412
|
+
### Bug Fixes
|
|
1413
|
+
|
|
1414
|
+
- **form:** improve type reminder ([#4618](https://github.com/ant-design/pro-components/issues/4618)) ([3930e14](https://github.com/ant-design/pro-components/commit/3930e14095635c4261366d38e81ff320fbf3bd79))
|
|
1415
|
+
|
|
1416
|
+
## [1.53.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.2...@ant-design/pro-form@1.53.3) (2022-02-11)
|
|
1417
|
+
|
|
1418
|
+
### Bug Fixes
|
|
1419
|
+
|
|
1420
|
+
- **form:** 解决行为守卫 insertIndex 为 undefined 的问题 ([#4606](https://github.com/ant-design/pro-components/issues/4606)) ([0885ccb](https://github.com/ant-design/pro-components/commit/0885ccb24f01a3f4b77b3990f8a435456cd79fbb)), closes [#4588](https://github.com/ant-design/pro-components/issues/4588)
|
|
1421
|
+
- **form:** fix getValuePropsFunc no work by newValue ([52ef52f](https://github.com/ant-design/pro-components/commit/52ef52f3e5c070166383957dfaeded8b40cdc030)), closes [#issuecomment-1034584412](https://github.com/ant-design/pro-components/issues/issuecomment-1034584412)
|
|
1422
|
+
|
|
1423
|
+
## [1.53.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.1...@ant-design/pro-form@1.53.2) (2022-02-10)
|
|
1424
|
+
|
|
1425
|
+
### Bug Fixes
|
|
1426
|
+
|
|
1427
|
+
- **form:** modal and drawer new render function ([#4597](https://github.com/ant-design/pro-components/issues/4597)) ([fabb06a](https://github.com/ant-design/pro-components/commit/fabb06a093eca0ad0dcbdef89507d0450fbcdc8d))
|
|
1428
|
+
|
|
1429
|
+
## [1.53.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.53.0...@ant-design/pro-form@1.53.1) (2022-02-10)
|
|
1430
|
+
|
|
1431
|
+
### Bug Fixes
|
|
1432
|
+
|
|
1433
|
+
- **form:** fix form list action error ([77dfdd1](https://github.com/ant-design/pro-components/commit/77dfdd1fb20df6e048ff0162ea18bdaf31985071))
|
|
1434
|
+
|
|
1435
|
+
# [1.53.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.14...@ant-design/pro-form@1.53.0) (2022-02-08)
|
|
1436
|
+
|
|
1437
|
+
### Bug Fixes
|
|
1438
|
+
|
|
1439
|
+
- **list:** 修复 ProList 传入 grid 属性时不触发 onRow 内配置事件的问题 ([#4558](https://github.com/ant-design/pro-components/issues/4558)) ([b7b6514](https://github.com/ant-design/pro-components/commit/b7b6514f106cc8e411a178fecbdcea38e62953b3)), closes [#4549](https://github.com/ant-design/pro-components/issues/4549)
|
|
1440
|
+
|
|
1441
|
+
### Features
|
|
1442
|
+
|
|
1443
|
+
- **form:** 表单列表支持设置行为守卫 ([#4518](https://github.com/ant-design/pro-components/issues/4518)) ([d29e37b](https://github.com/ant-design/pro-components/commit/d29e37b08d4b198404138df0d8f4422034842705)), closes [#4514](https://github.com/ant-design/pro-components/issues/4514)
|
|
1444
|
+
- **form:** form support convertValue ([b555dc5](https://github.com/ant-design/pro-components/commit/b555dc5293ae9e92793b1ac6ad09e3cfbaf1bf64))
|
|
1445
|
+
- **table:** reduce the dom of the form ([#4565](https://github.com/ant-design/pro-components/issues/4565)) ([38750ea](https://github.com/ant-design/pro-components/commit/38750ea6a1de21702d4285f520e5b7ffb57f8fab))
|
|
1446
|
+
|
|
1447
|
+
## [1.52.14](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.13...@ant-design/pro-form@1.52.14) (2022-01-25)
|
|
1448
|
+
|
|
1449
|
+
### Bug Fixes
|
|
1450
|
+
|
|
1451
|
+
- **form:** BetaSchemaForm setFieldsValue 失效 ([#4516](https://github.com/ant-design/pro-components/issues/4516)) ([99fb154](https://github.com/ant-design/pro-components/commit/99fb15446a85e1a36edd5fa59cd762c76a68a4d8))
|
|
1452
|
+
- **form:** make sure it is valid to get the form instance through formRef ([#4517](https://github.com/ant-design/pro-components/issues/4517)) ([38d1f92](https://github.com/ant-design/pro-components/commit/38d1f92199ddad1390679ee020d517e68c61c235))
|
|
1453
|
+
- **form:** proformlist style bug ([#4524](https://github.com/ant-design/pro-components/issues/4524)) ([02cb00a](https://github.com/ant-design/pro-components/commit/02cb00a4a8073b148dd97a577577f23bc6d954ef))
|
|
1454
|
+
|
|
1455
|
+
## [1.52.13](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.12...@ant-design/pro-form@1.52.13) (2022-01-21)
|
|
1456
|
+
|
|
1457
|
+
### Bug Fixes
|
|
1458
|
+
|
|
1459
|
+
- **form:** 🐛 readonly form will not render the latest value ([#4494](https://github.com/ant-design/pro-components/issues/4494)) ([2c169a8](https://github.com/ant-design/pro-components/commit/2c169a846b72351f9988c22fd5c2ef2b1684b577))
|
|
1460
|
+
- **form:** 🐛 type error ([#4485](https://github.com/ant-design/pro-components/issues/4485)) ([21f4852](https://github.com/ant-design/pro-components/commit/21f4852cbd35f24ab8e756876653daaabe9b1780))
|
|
1461
|
+
- **form:** add note for pro form list ([b477100](https://github.com/ant-design/pro-components/commit/b477100c519991cba8dda652ac08bc529dde26d4))
|
|
1462
|
+
- **form:** ProFormList should show label when form layout is horizontal ([#4513](https://github.com/ant-design/pro-components/issues/4513)) ([53aae7c](https://github.com/ant-design/pro-components/commit/53aae7cdfdec04f76812eac488df5ff2ecb4049a))
|
|
1463
|
+
- **form:** SchemaForm dependency add warning message ([#4478](https://github.com/ant-design/pro-components/issues/4478)) ([fad7fe0](https://github.com/ant-design/pro-components/commit/fad7fe093c917f65c6c846bacc01a19abbf2d2d7))
|
|
1464
|
+
|
|
1465
|
+
## [1.52.12](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.11...@ant-design/pro-form@1.52.12) (2022-01-18)
|
|
1466
|
+
|
|
1467
|
+
### Bug Fixes
|
|
1468
|
+
|
|
1469
|
+
- **form:** fix form list error ([c646dcf](https://github.com/ant-design/pro-components/commit/c646dcf48d2c61bc68a5f8ad4d947494941050b9))
|
|
1470
|
+
- **form:** ProFormDependency support shouldUpdate ([4d3a531](https://github.com/ant-design/pro-components/commit/4d3a531d18b23e235d6cfdf882ccfe54c286c7e5))
|
|
1471
|
+
|
|
1472
|
+
## [1.52.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.10...@ant-design/pro-form@1.52.11) (2022-01-17)
|
|
1473
|
+
|
|
1474
|
+
### Bug Fixes
|
|
1475
|
+
|
|
1476
|
+
- **form:** default close swr cache ([#4470](https://github.com/ant-design/pro-components/issues/4470)) ([770a0fb](https://github.com/ant-design/pro-components/commit/770a0fb3360b1b0eac67deb3879f563cf9d9071b))
|
|
1477
|
+
- **form:** drawer auto focus first input ([#4473](https://github.com/ant-design/pro-components/issues/4473)) ([a9394e2](https://github.com/ant-design/pro-components/commit/a9394e2690cbb8fda9be52f31431454fe39b52dd))
|
|
1478
|
+
- **form:** ProFormList use uuid ([#4479](https://github.com/ant-design/pro-components/issues/4479)) ([11b3f71](https://github.com/ant-design/pro-components/commit/11b3f717cf545d9a361f173975586a99375c6517))
|
|
1479
|
+
|
|
1480
|
+
## [1.52.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.9...@ant-design/pro-form@1.52.10) (2022-01-12)
|
|
1481
|
+
|
|
1482
|
+
### Bug Fixes
|
|
1483
|
+
|
|
1484
|
+
- **form:** fix ref no render error ([db98d79](https://github.com/ant-design/pro-components/commit/db98d79f876b8a4dd56b6fe040c0537fff1b6c0c))
|
|
1485
|
+
|
|
1486
|
+
## [1.52.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.8...@ant-design/pro-form@1.52.9) (2022-01-11)
|
|
1487
|
+
|
|
1488
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1489
|
+
|
|
1490
|
+
## [1.52.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.7...@ant-design/pro-form@1.52.8) (2022-01-11)
|
|
1491
|
+
|
|
1492
|
+
### Bug Fixes
|
|
1493
|
+
|
|
1494
|
+
- antd themes less file path ([#4436](https://github.com/ant-design/pro-components/issues/4436)) ([a6b66b4](https://github.com/ant-design/pro-components/commit/a6b66b4968e78a9c8175d17d2fe5a922cf70630f))
|
|
1495
|
+
- **form:** 🐛 DrawerForm cannot get form instance by formRef ([#4421](https://github.com/ant-design/pro-components/issues/4421)) ([179ac82](https://github.com/ant-design/pro-components/commit/179ac82072f4dcc51bbb607249a9670821d66662))
|
|
1496
|
+
- **form:** fix datePick typing error ([#4431](https://github.com/ant-design/pro-components/issues/4431)) ([cc8e893](https://github.com/ant-design/pro-components/commit/cc8e89360a209cff3182f9af316600c3ae2c6b97))
|
|
1497
|
+
- **form:** FormList same name will be cache problem ([#4426](https://github.com/ant-design/pro-components/issues/4426)) ([15ab36f](https://github.com/ant-design/pro-components/commit/15ab36f482aef5c6c6d78522d3ee41729197d54e))
|
|
1498
|
+
|
|
1499
|
+
## [1.52.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.6...@ant-design/pro-form@1.52.7) (2022-01-07)
|
|
1500
|
+
|
|
1501
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1502
|
+
|
|
1503
|
+
## [1.52.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.5...@ant-design/pro-form@1.52.6) (2022-01-05)
|
|
1504
|
+
|
|
1505
|
+
### Bug Fixes
|
|
1506
|
+
|
|
1507
|
+
- **form:** 表单 submitter 增加自动换行属性 ([#4406](https://github.com/ant-design/pro-components/issues/4406)) ([9f755ee](https://github.com/ant-design/pro-components/commit/9f755ee61c1e52a46fb5d3d11b524e5347d48f21))
|
|
1508
|
+
- **form:** DateRangePicker in LightFilter format is always set to YYYY-MM-DD ([#4374](https://github.com/ant-design/pro-components/issues/4374)) ([b3b84f2](https://github.com/ant-design/pro-components/commit/b3b84f27e8a315e8539fab9f93569f3b1f33f0db))
|
|
1509
|
+
- 重新给 LightFilter 内的表单项指定属性不生效 🐛\[BUG] [#4366](https://github.com/ant-design/pro-components/issues/4366) ([#4375](https://github.com/ant-design/pro-components/issues/4375)) ([b0e2ebc](https://github.com/ant-design/pro-components/commit/b0e2ebcc2ae356d69272bfe64b8824fb5fe70c94))
|
|
1510
|
+
- **form:** fix stepForm props error ([1eec8a2](https://github.com/ant-design/pro-components/commit/1eec8a2ff97c95f3fea8400651ff5e2875561193))
|
|
1511
|
+
- fix doc error ([#4370](https://github.com/ant-design/pro-components/issues/4370)) ([438fe64](https://github.com/ant-design/pro-components/commit/438fe64c1d290aeb20f249582a7363740c32d6ae))
|
|
1512
|
+
|
|
1513
|
+
## [1.52.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.4...@ant-design/pro-form@1.52.5) (2021-12-28)
|
|
1514
|
+
|
|
1515
|
+
### Bug Fixes
|
|
1516
|
+
|
|
1517
|
+
- **form:** fix ts error ([fbe853d](https://github.com/ant-design/pro-components/commit/fbe853d66aae90040ae0bc807c255fbf984611f2))
|
|
1518
|
+
|
|
1519
|
+
## [1.52.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.3...@ant-design/pro-form@1.52.4) (2021-12-28)
|
|
1520
|
+
|
|
1521
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1522
|
+
|
|
1523
|
+
## [1.52.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.2...@ant-design/pro-form@1.52.3) (2021-12-24)
|
|
1524
|
+
|
|
1525
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1526
|
+
|
|
1527
|
+
## [1.52.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.1...@ant-design/pro-form@1.52.2) (2021-12-23)
|
|
1528
|
+
|
|
1529
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1530
|
+
|
|
1531
|
+
## [1.52.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.52.0...@ant-design/pro-form@1.52.1) (2021-12-22)
|
|
1532
|
+
|
|
1533
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1534
|
+
|
|
1535
|
+
# [1.52.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.51.3...@ant-design/pro-form@1.52.0) (2021-12-22)
|
|
1536
|
+
|
|
1537
|
+
### Features
|
|
1538
|
+
|
|
1539
|
+
- **field:** add DigitRange component ([#4133](https://github.com/ant-design/pro-components/issues/4133)) ([227a42d](https://github.com/ant-design/pro-components/commit/227a42def19035dc70e52f56142b33f55dd65f4b))
|
|
1540
|
+
|
|
1541
|
+
## [1.51.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.51.2...@ant-design/pro-form@1.51.3) (2021-12-22)
|
|
1542
|
+
|
|
1543
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1544
|
+
|
|
1545
|
+
## [1.51.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.51.1...@ant-design/pro-form@1.51.2) (2021-12-20)
|
|
1546
|
+
|
|
1547
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1548
|
+
|
|
1549
|
+
## [1.51.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.51.0...@ant-design/pro-form@1.51.1) (2021-12-20)
|
|
1550
|
+
|
|
1551
|
+
### Bug Fixes
|
|
1552
|
+
|
|
1553
|
+
- **form:** fix drawer no trigger open error ([#4320](https://github.com/ant-design/pro-components/issues/4320)) ([17106af](https://github.com/ant-design/pro-components/commit/17106afaf32b9f06429cffbf666ad260b3269099))
|
|
1554
|
+
|
|
1555
|
+
# [1.51.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.50.1...@ant-design/pro-form@1.51.0) (2021-12-20)
|
|
1556
|
+
|
|
1557
|
+
### Bug Fixes
|
|
1558
|
+
|
|
1559
|
+
- **form:** fix the problem that the animation of the floating layer form is lost ([#4308](https://github.com/ant-design/pro-components/issues/4308)) ([d7888c6](https://github.com/ant-design/pro-components/commit/d7888c6e469dddc0a3c62877ecc1aaaea5528948))
|
|
1560
|
+
|
|
1561
|
+
### Features
|
|
1562
|
+
|
|
1563
|
+
- **form:** Support ProFormTreeSelect and valueType=treeSelect ([#4237](https://github.com/ant-design/pro-components/issues/4237)) ([31fab85](https://github.com/ant-design/pro-components/commit/31fab85ecc2c3ef873e88b050f26d1c3de4b8f98))
|
|
1564
|
+
|
|
1565
|
+
## [1.50.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.50.0...@ant-design/pro-form@1.50.1) (2021-12-17)
|
|
1566
|
+
|
|
1567
|
+
### Bug Fixes
|
|
1568
|
+
|
|
1569
|
+
- **form:** syncToUrl params error ([#4296](https://github.com/ant-design/pro-components/issues/4296)) ([95ab695](https://github.com/ant-design/pro-components/commit/95ab69560dbb88fcbd24570aa9b34815867789ca))
|
|
1570
|
+
|
|
1571
|
+
# [1.50.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.11...@ant-design/pro-form@1.50.0) (2021-12-13)
|
|
1572
|
+
|
|
1573
|
+
### Bug Fixes
|
|
1574
|
+
|
|
1575
|
+
- **form:** relay no render DrawerForm and ModalForm ([#4254](https://github.com/ant-design/pro-components/issues/4254)) ([f986ecb](https://github.com/ant-design/pro-components/commit/f986ecb9d89d4e3edef18d50eee4c37e730227d9))
|
|
1576
|
+
|
|
1577
|
+
### Features
|
|
1578
|
+
|
|
1579
|
+
- **layout:** settingDrawer use new antd new function ([#4042](https://github.com/ant-design/pro-components/issues/4042)) ([8e907d8](https://github.com/ant-design/pro-components/commit/8e907d8bbe48848c37e8ce1d5a584880e181f250))
|
|
1580
|
+
|
|
1581
|
+
## [1.49.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.10...@ant-design/pro-form@1.49.11) (2021-12-10)
|
|
1582
|
+
|
|
1583
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1584
|
+
|
|
1585
|
+
## [1.49.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.9...@ant-design/pro-form@1.49.10) (2021-12-10)
|
|
1586
|
+
|
|
1587
|
+
### Bug Fixes
|
|
1588
|
+
|
|
1589
|
+
- **provide:** close auto clean cache ([#4243](https://github.com/ant-design/pro-components/issues/4243)) ([e638cb5](https://github.com/ant-design/pro-components/commit/e638cb5ff7830793020c94328ef2833c20f352f7))
|
|
1590
|
+
|
|
1591
|
+
## [1.49.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.8...@ant-design/pro-form@1.49.9) (2021-12-09)
|
|
1592
|
+
|
|
1593
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1594
|
+
|
|
1595
|
+
## [1.49.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.7...@ant-design/pro-form@1.49.8) (2021-12-08)
|
|
1596
|
+
|
|
1597
|
+
### Bug Fixes
|
|
1598
|
+
|
|
1599
|
+
- **form:** 🐛 SchemaForm and StepsForm formRef error ([#4220](https://github.com/ant-design/pro-components/issues/4220)) ([d1f8e95](https://github.com/ant-design/pro-components/commit/d1f8e95dee00942d4470e3ba1c60e86f18c7b3bd))
|
|
1600
|
+
|
|
1601
|
+
## [1.49.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.6...@ant-design/pro-form@1.49.7) (2021-12-07)
|
|
1602
|
+
|
|
1603
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1604
|
+
|
|
1605
|
+
## [1.49.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.5...@ant-design/pro-form@1.49.6) (2021-12-01)
|
|
1606
|
+
|
|
1607
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1608
|
+
|
|
1609
|
+
## [1.49.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.4...@ant-design/pro-form@1.49.5) (2021-12-01)
|
|
1610
|
+
|
|
1611
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1612
|
+
|
|
1613
|
+
## [1.49.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.3...@ant-design/pro-form@1.49.4) (2021-11-30)
|
|
1614
|
+
|
|
1615
|
+
### Bug Fixes
|
|
1616
|
+
|
|
1617
|
+
- **form:** fix the problem that addonBefore Required does not work when formitem is set ([#4141](https://github.com/ant-design/pro-components/issues/4141)) ([a994430](https://github.com/ant-design/pro-components/commit/a994430828ab03fe5dc75723aec029f929ba20c5))
|
|
1618
|
+
|
|
1619
|
+
## [1.49.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.2...@ant-design/pro-form@1.49.3) (2021-11-23)
|
|
1620
|
+
|
|
1621
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1622
|
+
|
|
1623
|
+
## [1.49.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.1...@ant-design/pro-form@1.49.2) (2021-11-23)
|
|
1624
|
+
|
|
1625
|
+
### Bug Fixes
|
|
1626
|
+
|
|
1627
|
+
- **form:** default close render params to url ([cd4f0ab](https://github.com/ant-design/pro-components/commit/cd4f0abab77cc212a53f549ea16faafa70d00a15))
|
|
1628
|
+
|
|
1629
|
+
## [1.49.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.49.0...@ant-design/pro-form@1.49.1) (2021-11-22)
|
|
1630
|
+
|
|
1631
|
+
### Bug Fixes
|
|
1632
|
+
|
|
1633
|
+
- **ProForm:** 修复 ProForm 请求两次问题 ([#4074](https://github.com/ant-design/pro-components/issues/4074)) ([fe9d08c](https://github.com/ant-design/pro-components/commit/fe9d08c950497bb2447ca088471b9dc8b86acb67))
|
|
1634
|
+
|
|
1635
|
+
# [1.49.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.48.1...@ant-design/pro-form@1.49.0) (2021-11-18)
|
|
1636
|
+
|
|
1637
|
+
### Bug Fixes
|
|
1638
|
+
|
|
1639
|
+
- **form:** fix layout="vertical" style error ([#4054](https://github.com/ant-design/pro-components/issues/4054)) ([55392ad](https://github.com/ant-design/pro-components/commit/55392ad6dc4501fd66b40c702a23683c08e1561b))
|
|
1640
|
+
- **table:** pro table support lightProps ([#4068](https://github.com/ant-design/pro-components/issues/4068)) ([ce15148](https://github.com/ant-design/pro-components/commit/ce151487c7dbd17917a0be0aec09d4e01237ff6a))
|
|
1641
|
+
|
|
1642
|
+
### Features
|
|
1643
|
+
|
|
1644
|
+
- **form:** ProFormList support showItemLabel ([#4055](https://github.com/ant-design/pro-components/issues/4055)) ([1f8317a](https://github.com/ant-design/pro-components/commit/1f8317a14cb5d2a2f87c5a4fc747009398035694))
|
|
1645
|
+
|
|
1646
|
+
## [1.48.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.48.0...@ant-design/pro-form@1.48.1) (2021-11-16)
|
|
1647
|
+
|
|
1648
|
+
### Bug Fixes
|
|
1649
|
+
|
|
1650
|
+
- **form:** support onVisibleChange form set ([#4044](https://github.com/ant-design/pro-components/issues/4044)) ([004d78f](https://github.com/ant-design/pro-components/commit/004d78ff276eaa762f8f363404d4ec8fadeea70e))
|
|
1651
|
+
|
|
1652
|
+
# [1.48.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.47.0...@ant-design/pro-form@1.48.0) (2021-11-15)
|
|
1653
|
+
|
|
1654
|
+
### Features
|
|
1655
|
+
|
|
1656
|
+
- **form:** support antd next ([#4038](https://github.com/ant-design/pro-components/issues/4038)) ([96a64c3](https://github.com/ant-design/pro-components/commit/96a64c35d0fc6a359a4ff3d36b96f510f4580c63)), closes [#3770](https://github.com/ant-design/pro-components/issues/3770) [#3863](https://github.com/ant-design/pro-components/issues/3863)
|
|
1657
|
+
- **table:** add card table ([#4033](https://github.com/ant-design/pro-components/issues/4033)) ([b2a205d](https://github.com/ant-design/pro-components/commit/b2a205d72c2afe1e9cfca6fe0e61dcbf9a1611e5))
|
|
1658
|
+
|
|
1659
|
+
# [1.47.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.46.0...@ant-design/pro-form@1.47.0) (2021-11-12)
|
|
1660
|
+
|
|
1661
|
+
### Bug Fixes
|
|
1662
|
+
|
|
1663
|
+
- **form:** change modal/drawer form reset time ([#4024](https://github.com/ant-design/pro-components/issues/4024)) ([8f76d43](https://github.com/ant-design/pro-components/commit/8f76d435e908d1bfe011e697224d1956ce0a0e75))
|
|
1664
|
+
- **form:** fix form item width overflow problew ([#4023](https://github.com/ant-design/pro-components/issues/4023)) ([84e2d55](https://github.com/ant-design/pro-components/commit/84e2d554f8b55fef50be08bc34e14d36577ea6dc))
|
|
1665
|
+
- **form:** fix onchange rechange error ([#4022](https://github.com/ant-design/pro-components/issues/4022)) ([69b4335](https://github.com/ant-design/pro-components/commit/69b433533db8a6df71dec2de05a4a8c4e6a480fc))
|
|
1666
|
+
- **form:** fix proform.item no support QueryFilter error ([#4011](https://github.com/ant-design/pro-components/issues/4011)) ([5eff600](https://github.com/ant-design/pro-components/commit/5eff600f580d99452f9e1a84b7c36c315e55804f))
|
|
1667
|
+
- **form:** less render sum ([7b025e5](https://github.com/ant-design/pro-components/commit/7b025e5311646d64e7bc972c5cf17ddadde5f54e))
|
|
1668
|
+
- **layout:** Improve performance ([#4020](https://github.com/ant-design/pro-components/issues/4020)) ([f1f2502](https://github.com/ant-design/pro-components/commit/f1f25024589e86c3d6e0fc1efc9b1e9dd8cea534))
|
|
1669
|
+
- **table:** fix editor table rowkey error ([#4000](https://github.com/ant-design/pro-components/issues/4000)) ([8760aad](https://github.com/ant-design/pro-components/commit/8760aad6d95b514ab57ef857adf74219fe006e99))
|
|
1670
|
+
|
|
1671
|
+
### Features
|
|
1672
|
+
|
|
1673
|
+
- **field:** select request 添加防抖动属性 ([#3987](https://github.com/ant-design/pro-components/issues/3987)) ([887e654](https://github.com/ant-design/pro-components/commit/887e6541dae8e614789e651c74b32abc875e83e7))
|
|
1674
|
+
- **form:** money support numberPopover ([#4008](https://github.com/ant-design/pro-components/issues/4008)) ([0d720f1](https://github.com/ant-design/pro-components/commit/0d720f19bf196f31bf16f4f730b039dd1a87ba3d))
|
|
1675
|
+
|
|
1676
|
+
# [1.46.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.45.0...@ant-design/pro-form@1.46.0) (2021-11-02)
|
|
1677
|
+
|
|
1678
|
+
### Bug Fixes
|
|
1679
|
+
|
|
1680
|
+
- **form:** 完善 StepsForm 的 useCallback 依赖,修复可能导致的打包丢失依赖问题 ([#3938](https://github.com/ant-design/pro-components/issues/3938)) ([f0a335e](https://github.com/ant-design/pro-components/commit/f0a335e139fe230df4cf415303eec991f02273f1))
|
|
1681
|
+
- **list:** fix list style error ([#3943](https://github.com/ant-design/pro-components/issues/3943)) ([68e0eed](https://github.com/ant-design/pro-components/commit/68e0eede7131932eb9e16734bb5bbb3c8fa0572e))
|
|
1682
|
+
|
|
1683
|
+
### Features
|
|
1684
|
+
|
|
1685
|
+
- **form:** SchemaForm support dependency ([#3895](https://github.com/ant-design/pro-components/issues/3895)) ([7a5a509](https://github.com/ant-design/pro-components/commit/7a5a509f7b03311837e5f598feffa92078e81888))
|
|
1686
|
+
|
|
1687
|
+
# [1.45.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.44.0...@ant-design/pro-form@1.45.0) (2021-10-27)
|
|
1688
|
+
|
|
1689
|
+
### Features
|
|
1690
|
+
|
|
1691
|
+
- **form:** support Cascader ([#3904](https://github.com/ant-design/pro-components/issues/3904)) ([be63c81](https://github.com/ant-design/pro-components/commit/be63c81be1102fd2f099e9182fb296a01a8b59f0))
|
|
1692
|
+
|
|
1693
|
+
# [1.44.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.43.5...@ant-design/pro-form@1.44.0) (2021-10-26)
|
|
1694
|
+
|
|
1695
|
+
### Bug Fixes
|
|
1696
|
+
|
|
1697
|
+
- **form:** fix modal and darwer no animation error ([#3884](https://github.com/ant-design/pro-components/issues/3884)) ([806d615](https://github.com/ant-design/pro-components/commit/806d615656038d7acda95f71bc8a57764982d157))
|
|
1698
|
+
- **schema-form:** fix typo in Chinese doc ([#3873](https://github.com/ant-design/pro-components/issues/3873)) ([7eb6951](https://github.com/ant-design/pro-components/commit/7eb695102cca389c66f9368c5f3e83fc2417e74f))
|
|
1699
|
+
|
|
1700
|
+
### Features
|
|
1701
|
+
|
|
1702
|
+
- **form:** support autoFocusFirstInput props ([#3894](https://github.com/ant-design/pro-components/issues/3894)) ([a860555](https://github.com/ant-design/pro-components/commit/a860555f6ab683b52bb0cfd58e6be60fe98a70fe))
|
|
1703
|
+
- support ssr server ([69773c9](https://github.com/ant-design/pro-components/commit/69773c9dbaccd342d86312032c7b09958cdaed7c))
|
|
1704
|
+
|
|
1705
|
+
## [1.43.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.43.4...@ant-design/pro-form@1.43.5) (2021-10-19)
|
|
1706
|
+
|
|
1707
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1708
|
+
|
|
1709
|
+
## [1.43.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.43.3...@ant-design/pro-form@1.43.4) (2021-10-18)
|
|
1710
|
+
|
|
1711
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1712
|
+
|
|
1713
|
+
## [1.43.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.43.2...@ant-design/pro-form@1.43.3) (2021-10-15)
|
|
1714
|
+
|
|
1715
|
+
### Bug Fixes
|
|
1716
|
+
|
|
1717
|
+
- **form:** 修复 ProFormList 的 children 类型错误问题并添加 action 注入 ([#3835](https://github.com/ant-design/pro-components/issues/3835)) ([5593d4d](https://github.com/ant-design/pro-components/commit/5593d4d55197c685f4c4d92d2b010f3d8fbc9e94))
|
|
1718
|
+
- **form:** fix Abnormal operation of proformdependency in proform ([#3839](https://github.com/ant-design/pro-components/issues/3839)) ([d107ea9](https://github.com/ant-design/pro-components/commit/d107ea93c4bb8fe08c56cbe8eb52722ff327b9f6))
|
|
1719
|
+
- **form:** fix modal and drawer reset error ([#3838](https://github.com/ant-design/pro-components/issues/3838)) ([e76eee7](https://github.com/ant-design/pro-components/commit/e76eee762779a0b3718441b57bc037dc3a5bee89))
|
|
1720
|
+
|
|
1721
|
+
## [1.43.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.43.1...@ant-design/pro-form@1.43.2) (2021-10-12)
|
|
1722
|
+
|
|
1723
|
+
### Bug Fixes
|
|
1724
|
+
|
|
1725
|
+
- **card:** fix card ehen theme change no change color error ([#3804](https://github.com/ant-design/pro-components/issues/3804)) ([083ec08](https://github.com/ant-design/pro-components/commit/083ec08794ab555615d5eb2304c3ef2e4660e77f))
|
|
1726
|
+
|
|
1727
|
+
## [1.43.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.43.0...@ant-design/pro-form@1.43.1) (2021-10-08)
|
|
1728
|
+
|
|
1729
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1730
|
+
|
|
1731
|
+
# [1.43.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.42.1...@ant-design/pro-form@1.43.0) (2021-10-08)
|
|
1732
|
+
|
|
1733
|
+
### Bug Fixes
|
|
1734
|
+
|
|
1735
|
+
- **field:** timePicker 组件用 moment 解析时间不填入 format 是会直接 Invalid date ([#3745](https://github.com/ant-design/pro-components/issues/3745)) ([31fc899](https://github.com/ant-design/pro-components/commit/31fc8993aa5486281c76691df41ddb80d827074a))
|
|
1736
|
+
- **form:** fix form list preserve problem ([#3766](https://github.com/ant-design/pro-components/issues/3766)) ([d7b0fac](https://github.com/ant-design/pro-components/commit/d7b0face8caaca73291ffc88776d5bf3917bbaf0))
|
|
1737
|
+
- **form:** fix modal form rewrite getPopupContainer error ([#3763](https://github.com/ant-design/pro-components/issues/3763)) ([be13a54](https://github.com/ant-design/pro-components/commit/be13a540329cf17f34b1b6f863d8082f0e3afaf9))
|
|
1738
|
+
- **form:** ProFormField lightProps no work error ([#3765](https://github.com/ant-design/pro-components/issues/3765)) ([3fea703](https://github.com/ant-design/pro-components/commit/3fea7034936bb7728d160c99886b0e5ab7abdfa7))
|
|
1739
|
+
|
|
1740
|
+
### Features
|
|
1741
|
+
|
|
1742
|
+
- **form:** form support use singer function ([#3764](https://github.com/ant-design/pro-components/issues/3764)) ([3ec5d3c](https://github.com/ant-design/pro-components/commit/3ec5d3c9779f63a0a3e701d9825754ca32cc8111))
|
|
1743
|
+
|
|
1744
|
+
## [1.42.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.42.0...@ant-design/pro-form@1.42.1) (2021-09-26)
|
|
1745
|
+
|
|
1746
|
+
### Bug Fixes
|
|
1747
|
+
|
|
1748
|
+
- **form:** no use div ref render dom ([#3739](https://github.com/ant-design/pro-components/issues/3739)) ([a72dce8](https://github.com/ant-design/pro-components/commit/a72dce88912715b54308e54f2660c57ae227e4f5))
|
|
1749
|
+
|
|
1750
|
+
# [1.42.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.41.2...@ant-design/pro-form@1.42.0) (2021-09-24)
|
|
1751
|
+
|
|
1752
|
+
### Bug Fixes
|
|
1753
|
+
|
|
1754
|
+
- **form:** drawer/modal support getContainer=false ([#3727](https://github.com/ant-design/pro-components/issues/3727)) ([c2adde7](https://github.com/ant-design/pro-components/commit/c2adde7dd0bba55838022541987fdd674668a447))
|
|
1755
|
+
|
|
1756
|
+
### Features
|
|
1757
|
+
|
|
1758
|
+
- **form:** 增加验证并返回格式化后值的方法 validateFieldsReturnFormatValue ([fec07d9](https://github.com/ant-design/pro-components/commit/fec07d9f5fbc218f114ca73ee67d7629cf203362))
|
|
1759
|
+
|
|
1760
|
+
## [1.41.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.41.1...@ant-design/pro-form@1.41.2) (2021-09-18)
|
|
1761
|
+
|
|
1762
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1763
|
+
|
|
1764
|
+
## [1.41.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.41.0...@ant-design/pro-form@1.41.1) (2021-09-18)
|
|
1765
|
+
|
|
1766
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1767
|
+
|
|
1768
|
+
# [1.41.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.40.1...@ant-design/pro-form@1.41.0) (2021-09-17)
|
|
1769
|
+
|
|
1770
|
+
### Features
|
|
1771
|
+
|
|
1772
|
+
- **form:** support auto getPopupContainer ([#3685](https://github.com/ant-design/pro-components/issues/3685)) ([896c113](https://github.com/ant-design/pro-components/commit/896c11363f5a3d8043bf3e029bd75496d06ce83d))
|
|
1773
|
+
|
|
1774
|
+
## [1.40.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.40.0...@ant-design/pro-form@1.40.1) (2021-09-16)
|
|
1775
|
+
|
|
1776
|
+
### Bug Fixes
|
|
1777
|
+
|
|
1778
|
+
- **form:** fix the problem of multiple calls ([#3676](https://github.com/ant-design/pro-components/issues/3676)) ([cd43748](https://github.com/ant-design/pro-components/commit/cd43748c61c26b26386ffd7796cd802d5c41dc10))
|
|
1779
|
+
- **form:** fix the problem of repeated prompts ([#3671](https://github.com/ant-design/pro-components/issues/3671)) ([089226f](https://github.com/ant-design/pro-components/commit/089226f6af593d07caecef2d24c3d26ef3817810))
|
|
1780
|
+
- [#3651](https://github.com/ant-design/pro-components/issues/3651) 修复金额输入组件设置 width 无效的问题 ([#3654](https://github.com/ant-design/pro-components/issues/3654)) ([ef72dba](https://github.com/ant-design/pro-components/commit/ef72dbae77a77a5831a6056d4194ac3524f7afe8))
|
|
1781
|
+
|
|
1782
|
+
# [1.40.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.39.1...@ant-design/pro-form@1.40.0) (2021-09-10)
|
|
1783
|
+
|
|
1784
|
+
### Features
|
|
1785
|
+
|
|
1786
|
+
- **form:** formList support function children ([#3635](https://github.com/ant-design/pro-components/issues/3635)) ([93fb20d](https://github.com/ant-design/pro-components/commit/93fb20de2427470ca3ffbe0ba4c7b86a8ffb7cd4))
|
|
1787
|
+
|
|
1788
|
+
## [1.39.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.39.0...@ant-design/pro-form@1.39.1) (2021-09-09)
|
|
1789
|
+
|
|
1790
|
+
### Bug Fixes
|
|
1791
|
+
|
|
1792
|
+
- **form:** auto close KeyPress submit ([#3625](https://github.com/ant-design/pro-components/issues/3625)) ([6dfe99e](https://github.com/ant-design/pro-components/commit/6dfe99e0a0d2d1735abc40b948ee57c60531eb3b))
|
|
1793
|
+
- **form:** dependencies awalay run funtion ([3075858](https://github.com/ant-design/pro-components/commit/307585851997ffc4cc5ecc9aeb015bee9dfa48e2))
|
|
1794
|
+
- **form:** 解决有 addonBefore 或 addBefore 的情况下出现双重表单校验提示的问题 ([#3611](https://github.com/ant-design/pro-components/issues/3611)) ([aceeb06](https://github.com/ant-design/pro-components/commit/aceeb06b912c5f9da9c8922c3ab24109a03e3624)), closes [Form#3547](https://github.com/Form/issues/3547) [#3547](https://github.com/ant-design/pro-components/issues/3547) [#3601](https://github.com/ant-design/pro-components/issues/3601)
|
|
1795
|
+
|
|
1796
|
+
# [1.39.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.38.1...@ant-design/pro-form@1.39.0) (2021-09-07)
|
|
1797
|
+
|
|
1798
|
+
### Bug Fixes
|
|
1799
|
+
|
|
1800
|
+
- **form:** better FormGroup Space style ([#3562](https://github.com/ant-design/pro-components/issues/3562)) ([ddd89d9](https://github.com/ant-design/pro-components/commit/ddd89d9fbb51349deb8eb10e1a07e190b62c4c77))
|
|
1801
|
+
- **form:** if valueType need request, note need request ([#3575](https://github.com/ant-design/pro-components/issues/3575)) ([41bb815](https://github.com/ant-design/pro-components/commit/41bb81540408659256da329fe0eb02e5c1583ea5))
|
|
1802
|
+
- **Form:** 当原先在 url 中存在的字段被删除时,应该讲 params 中的该字段设置为 undefined, 以便触发 url 同步删除 ([#3558](https://github.com/ant-design/pro-components/issues/3558)) ([cbce2f8](https://github.com/ant-design/pro-components/commit/cbce2f8f6df5b1d19f29424368867c118941579a)), closes [Form#3547](https://github.com/Form/issues/3547) [#3547](https://github.com/ant-design/pro-components/issues/3547)
|
|
1803
|
+
|
|
1804
|
+
### Features
|
|
1805
|
+
|
|
1806
|
+
- **form,field:** 增加 ProFormMoney 组件 ([#3588](https://github.com/ant-design/pro-components/issues/3588)) ([2435ac3](https://github.com/ant-design/pro-components/commit/2435ac34b968ebbbeb018ab070f94f344822eddd)), closes [Form#3547](https://github.com/Form/issues/3547) [#3547](https://github.com/ant-design/pro-components/issues/3547)
|
|
1807
|
+
|
|
1808
|
+
## [1.38.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.38.0...@ant-design/pro-form@1.38.1) (2021-08-30)
|
|
1809
|
+
|
|
1810
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1811
|
+
|
|
1812
|
+
# [1.38.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.37.0...@ant-design/pro-form@1.38.0) (2021-08-30)
|
|
1813
|
+
|
|
1814
|
+
### Bug Fixes
|
|
1815
|
+
|
|
1816
|
+
- **form:** fix onGetCaptcha error will reset timimg ([#3544](https://github.com/ant-design/pro-components/issues/3544)) ([b75f843](https://github.com/ant-design/pro-components/commit/b75f8433e429e2dc8ec5531b0878a994da41117c))
|
|
1817
|
+
|
|
1818
|
+
### Features
|
|
1819
|
+
|
|
1820
|
+
- **form:** FormList support actionRef ([#3550](https://github.com/ant-design/pro-components/issues/3550)) ([8eea358](https://github.com/ant-design/pro-components/commit/8eea35894ec06aa738d761d3f8c9f2b0bf8a11f6))
|
|
1821
|
+
- **form:** LoginForm support logo ([#3545](https://github.com/ant-design/pro-components/issues/3545)) ([c10a960](https://github.com/ant-design/pro-components/commit/c10a960d9758523ba331e0a31888d99339569b14))
|
|
1822
|
+
- **layout:** support layout error boundaries ([#3551](https://github.com/ant-design/pro-components/issues/3551)) ([5b5f76a](https://github.com/ant-design/pro-components/commit/5b5f76a86df14ce42f12ce0e1e916e4b3b2ea357))
|
|
1823
|
+
|
|
1824
|
+
# [1.37.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.36.0...@ant-design/pro-form@1.37.0) (2021-08-26)
|
|
1825
|
+
|
|
1826
|
+
### Bug Fixes
|
|
1827
|
+
|
|
1828
|
+
- **form:** fix ranger date render error in table ([#3541](https://github.com/ant-design/pro-components/issues/3541)) ([3ba6022](https://github.com/ant-design/pro-components/commit/3ba6022c27be7c7b6fb7e8ba691d6f9e0cca9579))
|
|
1829
|
+
- **form:** if children is array, no use displayName ([#3536](https://github.com/ant-design/pro-components/issues/3536)) ([2a9859d](https://github.com/ant-design/pro-components/commit/2a9859d6d3e804a561ab280459f6d4486e25af7f))
|
|
1830
|
+
|
|
1831
|
+
### Features
|
|
1832
|
+
|
|
1833
|
+
- **form:** huge performance improvement ([#3528](https://github.com/ant-design/pro-components/issues/3528)) ([31be4cc](https://github.com/ant-design/pro-components/commit/31be4cc533b222607808742dd51d9016017fb4f0))
|
|
1834
|
+
- **form:** huge performance improvement ([#3533](https://github.com/ant-design/pro-components/issues/3533)) ([8092203](https://github.com/ant-design/pro-components/commit/8092203475a61380365821cf1c4e3b9886fec0b6))
|
|
1835
|
+
|
|
1836
|
+
# [1.36.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.35.0...@ant-design/pro-form@1.36.0) (2021-08-24)
|
|
1837
|
+
|
|
1838
|
+
### Bug Fixes
|
|
1839
|
+
|
|
1840
|
+
- **form:** fix incorrect formRef in demo code ([#3501](https://github.com/ant-design/pro-components/issues/3501)) ([857c95d](https://github.com/ant-design/pro-components/commit/857c95d4c38681d3f63850381937ffd21be444af))
|
|
1841
|
+
- **form:** fix ProForm onBlur no work error ([#3515](https://github.com/ant-design/pro-components/issues/3515)) ([abb5894](https://github.com/ant-design/pro-components/commit/abb5894db4a44565a4531535b16a75b313ccb583))
|
|
1842
|
+
- **form:** proformtext support prefix and suffix ([#3524](https://github.com/ant-design/pro-components/issues/3524)) ([d368def](https://github.com/ant-design/pro-components/commit/d368defbbc378edeb50ef3b2d4e86ec4c4805ca2))
|
|
1843
|
+
|
|
1844
|
+
### Features
|
|
1845
|
+
|
|
1846
|
+
- **form:** form columns support dependencies ([#3523](https://github.com/ant-design/pro-components/issues/3523)) ([73624c8](https://github.com/ant-design/pro-components/commit/73624c87cf81e417cc3547386050261a45903bce))
|
|
1847
|
+
|
|
1848
|
+
# [1.35.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.34.0...@ant-design/pro-form@1.35.0) (2021-08-19)
|
|
1849
|
+
|
|
1850
|
+
### Bug Fixes
|
|
1851
|
+
|
|
1852
|
+
- **form:** ProFormItem work same to Form.Item ([#3471](https://github.com/ant-design/pro-components/issues/3471)) ([eb0da77](https://github.com/ant-design/pro-components/commit/eb0da771a85cd4f7ae867b4c13315054270d5825))
|
|
1853
|
+
- **form:** remove onCaptcha deps ([#3419](https://github.com/ant-design/pro-components/issues/3419)) ([d30bb35](https://github.com/ant-design/pro-components/commit/d30bb35733bd6ebe50d07757263def2611f9e0ff))
|
|
1854
|
+
- **form:** 调整 Spin 大小使其保持垂直居中,更协调 ([#3446](https://github.com/ant-design/pro-components/issues/3446)) ([ddf7ac3](https://github.com/ant-design/pro-components/commit/ddf7ac3cb7effabda37e1ffc7d30f5e59d317be3))
|
|
1855
|
+
- **table:** fix table reload style error ([6967fc6](https://github.com/ant-design/pro-components/commit/6967fc61f7a425379876b31086f90381695bd413))
|
|
1856
|
+
- **table:** 添加滚动条,防止小屏幕下溢出 ([#3449](https://github.com/ant-design/pro-components/issues/3449)) ([cf23e82](https://github.com/ant-design/pro-components/commit/cf23e82dcd4263dd40a912ed6acebb8f9da3bf5e))
|
|
1857
|
+
|
|
1858
|
+
### Features
|
|
1859
|
+
|
|
1860
|
+
- **form:** FormList itemRender support index ([#3466](https://github.com/ant-design/pro-components/issues/3466)) ([1fcb715](https://github.com/ant-design/pro-components/commit/1fcb715a938d750ec917f64c49aa5655daa15e61))
|
|
1861
|
+
- **form:** support addonBefore and addonAfter ([#3434](https://github.com/ant-design/pro-components/issues/3434)) ([ff23de6](https://github.com/ant-design/pro-components/commit/ff23de663852e628447a25243b20c97395f30fc5))
|
|
1862
|
+
- **form:** support ProFormInstance types ([#3432](https://github.com/ant-design/pro-components/issues/3432)) ([e341b08](https://github.com/ant-design/pro-components/commit/e341b082994492eaca6773c325f37a3bebf29d00))
|
|
1863
|
+
|
|
1864
|
+
# [1.34.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.33.1...@ant-design/pro-form@1.34.0) (2021-08-09)
|
|
1865
|
+
|
|
1866
|
+
### Bug Fixes
|
|
1867
|
+
|
|
1868
|
+
- **table:** 订正 ProSchema 类型中 proFieldProps 的类型 & 导出 ProFormItemProps 类型 ([#3388](https://github.com/ant-design/pro-components/issues/3388)) ([b1aef5d](https://github.com/ant-design/pro-components/commit/b1aef5decddf6e8a790639c920a9d5ab12c6bf03))
|
|
1869
|
+
|
|
1870
|
+
### Features
|
|
1871
|
+
|
|
1872
|
+
- **form:** FormItem support FilterDropdown ([#3381](https://github.com/ant-design/pro-components/issues/3381)) ([f5f7dbb](https://github.com/ant-design/pro-components/commit/f5f7dbb2730496a836d684840462c08715caff62))
|
|
1873
|
+
- **table:** support defualt size ([#3383](https://github.com/ant-design/pro-components/issues/3383)) ([442f716](https://github.com/ant-design/pro-components/commit/442f716dcbd36dde436ebdf4a85a8fa6e9e3b1b1))
|
|
1874
|
+
|
|
1875
|
+
## [1.33.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.33.0...@ant-design/pro-form@1.33.1) (2021-08-05)
|
|
1876
|
+
|
|
1877
|
+
### Bug Fixes
|
|
1878
|
+
|
|
1879
|
+
- **form:** reset initialValues add warning ([#3364](https://github.com/ant-design/pro-components/issues/3364)) ([071cecf](https://github.com/ant-design/pro-components/commit/071cecf335dac1d2175a4e6b7bcdf3386c3c0501))
|
|
1880
|
+
|
|
1881
|
+
# [1.33.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.32.4...@ant-design/pro-form@1.33.0) (2021-08-03)
|
|
1882
|
+
|
|
1883
|
+
### Bug Fixes
|
|
1884
|
+
|
|
1885
|
+
- typo error ([#3349](https://github.com/ant-design/pro-components/issues/3349)) ([f1b4c73](https://github.com/ant-design/pro-components/commit/f1b4c736b35657e840d231771e3f332073811c2d))
|
|
1886
|
+
- **form:** error info undefined while label is undefined ([#3348](https://github.com/ant-design/pro-components/issues/3348)) ([2f8c784](https://github.com/ant-design/pro-components/commit/2f8c78423cbec6fe228c3fbf6187bb80edec4045))
|
|
1887
|
+
|
|
1888
|
+
### Features
|
|
1889
|
+
|
|
1890
|
+
- **form:** add login form ([#3328](https://github.com/ant-design/pro-components/issues/3328)) ([5966fad](https://github.com/ant-design/pro-components/commit/5966fad52ef3a139f313458090589d3f6a02f3dc))
|
|
1891
|
+
|
|
1892
|
+
## [1.32.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.32.3...@ant-design/pro-form@1.32.4) (2021-07-30)
|
|
1893
|
+
|
|
1894
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1895
|
+
|
|
1896
|
+
## [1.32.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.32.2...@ant-design/pro-form@1.32.3) (2021-07-30)
|
|
1897
|
+
|
|
1898
|
+
### Bug Fixes
|
|
1899
|
+
|
|
1900
|
+
- **form:** fix DrawerForm\&ModalForm submitter overwirter error ([#3332](https://github.com/ant-design/pro-components/issues/3332)) ([022b19b](https://github.com/ant-design/pro-components/commit/022b19b20f6a53c24107f879804f0d781b684a46))
|
|
1901
|
+
- **form:** ProFormSelect can not get values ([#3321](https://github.com/ant-design/pro-components/issues/3321)) ([fc9e448](https://github.com/ant-design/pro-components/commit/fc9e4487ef0ba661dc9e8c2e9470773d7e246eb0))
|
|
1902
|
+
|
|
1903
|
+
## [1.32.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.32.1...@ant-design/pro-form@1.32.2) (2021-07-26)
|
|
1904
|
+
|
|
1905
|
+
### Bug Fixes
|
|
1906
|
+
|
|
1907
|
+
- **form:** 修复 QueryFilter 组件 optionRender 设为 false 无效问题 ([#3283](https://github.com/ant-design/pro-components/issues/3283)) ([e4ab640](https://github.com/ant-design/pro-components/commit/e4ab6409f16f918f73540420567552bff92edab6))
|
|
1908
|
+
|
|
1909
|
+
## [1.32.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.32.0...@ant-design/pro-form@1.32.1) (2021-07-20)
|
|
1910
|
+
|
|
1911
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1912
|
+
|
|
1913
|
+
# [1.32.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.31.2...@ant-design/pro-form@1.32.0) (2021-07-19)
|
|
1914
|
+
|
|
1915
|
+
### Bug Fixes
|
|
1916
|
+
|
|
1917
|
+
- **form:** proform onValuesChange 触发两次 ([#3241](https://github.com/ant-design/pro-components/issues/3241)) ([864a795](https://github.com/ant-design/pro-components/commit/864a7955f0965975ab7cc89571556fb13e9890b5)), closes [#3240](https://github.com/ant-design/pro-components/issues/3240)
|
|
1918
|
+
- **form:** ProFormCheckbox 的 options 属性改为可选 ([#3195](https://github.com/ant-design/pro-components/issues/3195)) ([dd1aa43](https://github.com/ant-design/pro-components/commit/dd1aa43b771537086c176f58cd2cd6a214e94b06))
|
|
1919
|
+
- **form:** proformUploadDragger padding ([#3251](https://github.com/ant-design/pro-components/issues/3251)) ([3b2b43c](https://github.com/ant-design/pro-components/commit/3b2b43c050e324c92beb22f314a98dbab2988f06))
|
|
1920
|
+
- **form:** set BaseForm autoComplete=off ([#3246](https://github.com/ant-design/pro-components/issues/3246)) ([a71bade](https://github.com/ant-design/pro-components/commit/a71bade57acde696ec210e1113d2de9920651394))
|
|
1921
|
+
- **table:** fix onSave will merge origin data error ([#3221](https://github.com/ant-design/pro-components/issues/3221)) ([a16473e](https://github.com/ant-design/pro-components/commit/a16473ec56f1b3d1114c9b73fd18be97605ccfae))
|
|
1922
|
+
- **utils:** fix error import type and add check-deps script ([#3242](https://github.com/ant-design/pro-components/issues/3242)) ([7c49079](https://github.com/ant-design/pro-components/commit/7c49079746001e8434c187d8fad4288a39525f3d))
|
|
1923
|
+
|
|
1924
|
+
### Features
|
|
1925
|
+
|
|
1926
|
+
- **form:** StepForm support step props ([#3239](https://github.com/ant-design/pro-components/issues/3239)) ([3aaad4b](https://github.com/ant-design/pro-components/commit/3aaad4b2c47f76a0bf0b8f76ac78c844652af313))
|
|
1927
|
+
|
|
1928
|
+
## [1.31.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.31.1...@ant-design/pro-form@1.31.2) (2021-07-06)
|
|
1929
|
+
|
|
1930
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1931
|
+
|
|
1932
|
+
## [1.31.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.31.0...@ant-design/pro-form@1.31.1) (2021-07-01)
|
|
1933
|
+
|
|
1934
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
1935
|
+
|
|
1936
|
+
# [1.31.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.30.0...@ant-design/pro-form@1.31.0) (2021-06-28)
|
|
1937
|
+
|
|
1938
|
+
### Bug Fixes
|
|
1939
|
+
|
|
1940
|
+
- **form:** fix reg inclubes “(” error ([#3103](https://github.com/ant-design/pro-components/issues/3103)) ([cc1f9d0](https://github.com/ant-design/pro-components/commit/cc1f9d06eb796df620f0f28f4764ff797a96692f))
|
|
1941
|
+
- **form:** fix select optionGroup no filter error ([#3100](https://github.com/ant-design/pro-components/issues/3100)) ([5a9419c](https://github.com/ant-design/pro-components/commit/5a9419c89e40cf6de953258ef00a382887922519))
|
|
1942
|
+
- **form:** ProFormPropsType error type ([#3089](https://github.com/ant-design/pro-components/issues/3089)) ([15e9ce5](https://github.com/ant-design/pro-components/commit/15e9ce566cc341fb5235d3a5656410831fd134fc))
|
|
1943
|
+
- **table:** remove onchange form renderFormItem ([#3106](https://github.com/ant-design/pro-components/issues/3106)) ([00f5e44](https://github.com/ant-design/pro-components/commit/00f5e440eddf4e63c7af4b21bf9b315ee3363b32))
|
|
1944
|
+
|
|
1945
|
+
### Features
|
|
1946
|
+
|
|
1947
|
+
- **form:** add layout demo ([#3076](https://github.com/ant-design/pro-components/issues/3076)) ([1def19d](https://github.com/ant-design/pro-components/commit/1def19d061d148fec40cf3a4c4f39a1bfcc0c9ad))
|
|
1948
|
+
|
|
1949
|
+
# [1.30.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.29.1...@ant-design/pro-form@1.30.0) (2021-06-23)
|
|
1950
|
+
|
|
1951
|
+
### Bug Fixes
|
|
1952
|
+
|
|
1953
|
+
- **field:** autoClearSearchValue no work ([#3070](https://github.com/ant-design/pro-components/issues/3070)) ([a80611f](https://github.com/ant-design/pro-components/commit/a80611fe39001d0b2aeffcce4140c220c30d09d2))
|
|
1954
|
+
|
|
1955
|
+
### Features
|
|
1956
|
+
|
|
1957
|
+
- **form:** SchemaForm support steps form ([#3058](https://github.com/ant-design/pro-components/issues/3058)) ([146f0fb](https://github.com/ant-design/pro-components/commit/146f0fb32e1f01b24917c225da4cb32e81861524))
|
|
1958
|
+
|
|
1959
|
+
## [1.29.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.29.0...@ant-design/pro-form@1.29.1) (2021-06-17)
|
|
1960
|
+
|
|
1961
|
+
### Bug Fixes
|
|
1962
|
+
|
|
1963
|
+
- **form:** fix ProForm.Group size typescript ([#3030](https://github.com/ant-design/pro-components/issues/3030)) ([a7c7005](https://github.com/ant-design/pro-components/commit/a7c7005f28aaffb93b61f7fb9ed2ca1ee2e6f600))
|
|
1964
|
+
- **form:** fix ProFormDependency missing some dependency values ([#3031](https://github.com/ant-design/pro-components/issues/3031)) ([6c20a0b](https://github.com/ant-design/pro-components/commit/6c20a0b30a5e779cdc6108ae76789787d4532990)), closes [#2888](https://github.com/ant-design/pro-components/issues/2888)
|
|
1965
|
+
- **form:** switch width style fixed ([4e7543d](https://github.com/ant-design/pro-components/commit/4e7543daca5c5da3cfef2761737301e392a41cac))
|
|
1966
|
+
- **form:** use same antd lock ([#3043](https://github.com/ant-design/pro-components/issues/3043)) ([e6d46e5](https://github.com/ant-design/pro-components/commit/e6d46e54d2618537709ab2cdd8847d844f174fb1))
|
|
1967
|
+
|
|
1968
|
+
# [1.29.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.28.1...@ant-design/pro-form@1.29.0) (2021-06-15)
|
|
1969
|
+
|
|
1970
|
+
### Bug Fixes
|
|
1971
|
+
|
|
1972
|
+
- select 参数类型丢失 ([#3003](https://github.com/ant-design/pro-components/issues/3003)) ([1b0014d](https://github.com/ant-design/pro-components/commit/1b0014dfd7b103c031361d958498b1e4235cced4))
|
|
1973
|
+
- **table:** hideInForm true 的时候,hideInSearch 失效 ([#2986](https://github.com/ant-design/pro-components/issues/2986)) ([#2993](https://github.com/ant-design/pro-components/issues/2993)) ([908461b](https://github.com/ant-design/pro-components/commit/908461b5d2d402d6ccc8cb1db16b9783cee4d11f)), closes [#2446](https://github.com/ant-design/pro-components/issues/2446) [#2446](https://github.com/ant-design/pro-components/issues/2446) [#2446](https://github.com/ant-design/pro-components/issues/2446)
|
|
1974
|
+
|
|
1975
|
+
### Features
|
|
1976
|
+
|
|
1977
|
+
- **form:** ModalForm support footer is null ([#3001](https://github.com/ant-design/pro-components/issues/3001)) ([92c07b0](https://github.com/ant-design/pro-components/commit/92c07b02e8d9441843ce614821d4c41cc6842c7f))
|
|
1978
|
+
|
|
1979
|
+
## [1.28.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.28.0...@ant-design/pro-form@1.28.1) (2021-06-09)
|
|
1980
|
+
|
|
1981
|
+
### Bug Fixes
|
|
1982
|
+
|
|
1983
|
+
- **form:** fix ProFormCaptcha now work error ([#2981](https://github.com/ant-design/pro-components/issues/2981)) ([2784e0e](https://github.com/ant-design/pro-components/commit/2784e0ec5eb5127939aeb518ca31e5338f76099d))
|
|
1984
|
+
|
|
1985
|
+
# [1.28.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.27.1...@ant-design/pro-form@1.28.0) (2021-06-08)
|
|
1986
|
+
|
|
1987
|
+
### Bug Fixes
|
|
1988
|
+
|
|
1989
|
+
- **form:** add optionItemRender types ([#2951](https://github.com/ant-design/pro-components/issues/2951)) ([4626f54](https://github.com/ant-design/pro-components/commit/4626f545e635ac81fa6d5ba2e951b21e35e79bf4))
|
|
1990
|
+
- **form:** fix formitem lable display none ([#2928](https://github.com/ant-design/pro-components/issues/2928)) ([7de49c7](https://github.com/ant-design/pro-components/commit/7de49c7d20804551c010c4d8c80eaf0c55f2beb9))
|
|
1991
|
+
- **form:** fix scrollLocker no unlock error ([#2940](https://github.com/ant-design/pro-components/issues/2940)) ([b62979b](https://github.com/ant-design/pro-components/commit/b62979b477018e6004b53f9674048e07cdb49b9b))
|
|
1992
|
+
- **form:** hideInForm is invalid ([#2889](https://github.com/ant-design/pro-components/issues/2889)) ([361941d](https://github.com/ant-design/pro-components/commit/361941d1cca0d7b6289a484b3366b3993fbec643))
|
|
1993
|
+
- **form:** namePath and transform support omitNil ([#2913](https://github.com/ant-design/pro-components/issues/2913)) ([dd3f740](https://github.com/ant-design/pro-components/commit/dd3f740594f22e12ed9146dc00387ed276fd9072))
|
|
1994
|
+
- **table:** fix onChange multiple calls error ([#2945](https://github.com/ant-design/pro-components/issues/2945)) ([18cb698](https://github.com/ant-design/pro-components/commit/18cb698bf29de97e92350d365a10bb2f2f813137))
|
|
1995
|
+
|
|
1996
|
+
### Features
|
|
1997
|
+
|
|
1998
|
+
- **form:** LightFilter support footer ([#2794](https://github.com/ant-design/pro-components/issues/2794)) ([#2884](https://github.com/ant-design/pro-components/issues/2884)) ([042daa6](https://github.com/ant-design/pro-components/commit/042daa6035361ae65b401004eb06f697186f33c8))
|
|
1999
|
+
- **form:** support more tooltip props ([#2932](https://github.com/ant-design/pro-components/issues/2932)) ([bedd7eb](https://github.com/ant-design/pro-components/commit/bedd7ebb0784da8fbb9c4998651f39f5efff5354))
|
|
2000
|
+
|
|
2001
|
+
## [1.27.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.27.0...@ant-design/pro-form@1.27.1) (2021-05-31)
|
|
2002
|
+
|
|
2003
|
+
### Bug Fixes
|
|
2004
|
+
|
|
2005
|
+
- **form:** fix abnormal gap ([#2883](https://github.com/ant-design/pro-components/issues/2883)) ([6aa13f0](https://github.com/ant-design/pro-components/commit/6aa13f0ac1416d11e501f0be9c71f80137c0be82))
|
|
2006
|
+
- build error ([#2880](https://github.com/ant-design/pro-components/issues/2880)) ([c90591a](https://github.com/ant-design/pro-components/commit/c90591a82e91de886fd2ede7dcbb7059fac8ca83))
|
|
2007
|
+
|
|
2008
|
+
# [1.27.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.26.0...@ant-design/pro-form@1.27.0) (2021-05-28)
|
|
2009
|
+
|
|
2010
|
+
### Bug Fixes
|
|
2011
|
+
|
|
2012
|
+
- **form:** The label is displayed when the createButton above ([#2853](https://github.com/ant-design/pro-components/issues/2853)) ([30a173f](https://github.com/ant-design/pro-components/commit/30a173f595324c05d7280a45435d87ca7dbe12a9))
|
|
2013
|
+
|
|
2014
|
+
### Features
|
|
2015
|
+
|
|
2016
|
+
- step form value deep merge ([#2836](https://github.com/ant-design/pro-components/issues/2836)) ([e5ab9d4](https://github.com/ant-design/pro-components/commit/e5ab9d4e03a5f61c9f1528a27ccbcded9c0f27ef))
|
|
2017
|
+
|
|
2018
|
+
# [1.26.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.25.0...@ant-design/pro-form@1.26.0) (2021-05-25)
|
|
2019
|
+
|
|
2020
|
+
### Bug Fixes
|
|
2021
|
+
|
|
2022
|
+
- **form:** fix SchemaForm title function ([#2826](https://github.com/ant-design/pro-components/issues/2826)) ([7a48544](https://github.com/ant-design/pro-components/commit/7a48544e44729c4b46f0239dfb75f38dcad77f46))
|
|
2023
|
+
|
|
2024
|
+
### Features
|
|
2025
|
+
|
|
2026
|
+
- **table:** eidt table use Proform ([#2832](https://github.com/ant-design/pro-components/issues/2832)) ([5c8b4ba](https://github.com/ant-design/pro-components/commit/5c8b4bac7169d2d0c091b1d1d9a68f03166abd88))
|
|
2027
|
+
|
|
2028
|
+
# [1.25.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.24.2...@ant-design/pro-form@1.25.0) (2021-05-24)
|
|
2029
|
+
|
|
2030
|
+
### Bug Fixes
|
|
2031
|
+
|
|
2032
|
+
- **form:** fix formRef no work error ([#2816](https://github.com/ant-design/pro-components/issues/2816)) ([048c8e3](https://github.com/ant-design/pro-components/commit/048c8e3487f0c576f75d6f38357f562df9b7a4c9))
|
|
2033
|
+
|
|
2034
|
+
### Features
|
|
2035
|
+
|
|
2036
|
+
- **form:** form support request and params ([#2812](https://github.com/ant-design/pro-components/issues/2812)) ([8064293](https://github.com/ant-design/pro-components/commit/8064293532e9e937dea973be50d9e8fbc06c3aa9))
|
|
2037
|
+
|
|
2038
|
+
## [1.24.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.24.1...@ant-design/pro-form@1.24.2) (2021-05-23)
|
|
2039
|
+
|
|
2040
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2041
|
+
|
|
2042
|
+
## [1.24.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.24.0...@ant-design/pro-form@1.24.1) (2021-05-21)
|
|
2043
|
+
|
|
2044
|
+
### Bug Fixes
|
|
2045
|
+
|
|
2046
|
+
- **form:** space between button and form ([#2777](https://github.com/ant-design/pro-components/issues/2777)) ([ddceda2](https://github.com/ant-design/pro-components/commit/ddceda2ca019de0c0fe3a29b3a187e90b1ed3398))
|
|
2047
|
+
|
|
2048
|
+
# [1.24.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.23.0...@ant-design/pro-form@1.24.0) (2021-05-18)
|
|
2049
|
+
|
|
2050
|
+
### Bug Fixes
|
|
2051
|
+
|
|
2052
|
+
- **Descriptions:** fix proFieldKey is same error ([#2729](https://github.com/ant-design/pro-components/issues/2729)) ([be501ec](https://github.com/ant-design/pro-components/commit/be501ece15d04a9680fb08bd036e48587857dd9c))
|
|
2053
|
+
- **form:** clear collapsed fields when clear button clicked in more dropdown ([#2749](https://github.com/ant-design/pro-components/issues/2749)) ([6572759](https://github.com/ant-design/pro-components/commit/6572759d5cc6b5c3039532307be3ac45042fd2df))
|
|
2054
|
+
- **form:** nested-list causes Dependency error ([#2752](https://github.com/ant-design/pro-components/issues/2752)) ([27341e1](https://github.com/ant-design/pro-components/commit/27341e1cbddb8076981fa8e93ede924ba07c471e))
|
|
2055
|
+
|
|
2056
|
+
### Features
|
|
2057
|
+
|
|
2058
|
+
- add table drag demo ([#2736](https://github.com/ant-design/pro-components/issues/2736)) ([cedb26e](https://github.com/ant-design/pro-components/commit/cedb26ee26733a1a9e83184b0a1a87b0e2866d60))
|
|
2059
|
+
|
|
2060
|
+
# [1.23.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.22.1...@ant-design/pro-form@1.23.0) (2021-05-11)
|
|
2061
|
+
|
|
2062
|
+
### Bug Fixes
|
|
2063
|
+
|
|
2064
|
+
- **form:** fix ligthfilter no wrap style ([a220685](https://github.com/ant-design/pro-components/commit/a220685f4b4bd7bf5f332377b643cb97baa54d22))
|
|
2065
|
+
- **form:** LightFilter 折叠的 ProFormFields 行为异常 ([#2657](https://github.com/ant-design/pro-components/issues/2657)) ([938db61](https://github.com/ant-design/pro-components/commit/938db61a2dc4e15b536f4e445acf4c5995b35a72))
|
|
2066
|
+
- **table:** fix defaultRender will gen two label error ([#2715](https://github.com/ant-design/pro-components/issues/2715)) ([687d51b](https://github.com/ant-design/pro-components/commit/687d51b9edf6e0ed7ae07fc49af02701b7355457))
|
|
2067
|
+
- **table:** fix the style problem of the fixed new button ([#2661](https://github.com/ant-design/pro-components/issues/2661)) ([b80c99f](https://github.com/ant-design/pro-components/commit/b80c99fa298152adc9d4ef39ecfc2c2ac5e4c21f))
|
|
2068
|
+
|
|
2069
|
+
### Features
|
|
2070
|
+
|
|
2071
|
+
- **table:** support sync pageinfo to url ([#2701](https://github.com/ant-design/pro-components/issues/2701)) ([384ca36](https://github.com/ant-design/pro-components/commit/384ca364e0606535e4538920d6ecc85cff70c164))
|
|
2072
|
+
|
|
2073
|
+
## [1.22.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.22.0...@ant-design/pro-form@1.22.1) (2021-04-29)
|
|
2074
|
+
|
|
2075
|
+
### Bug Fixes
|
|
2076
|
+
|
|
2077
|
+
- **form:** support formRef ([36b09f4](https://github.com/ant-design/pro-components/commit/36b09f4a76e73ffde52cff1a3c9a01ddc8506b69))
|
|
2078
|
+
|
|
2079
|
+
# [1.22.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.21.5...@ant-design/pro-form@1.22.0) (2021-04-29)
|
|
2080
|
+
|
|
2081
|
+
### Bug Fixes
|
|
2082
|
+
|
|
2083
|
+
- 修复 ProTable 轻量筛选,小屏幕下变形 [#2637](https://github.com/ant-design/pro-components/issues/2637) ([#2638](https://github.com/ant-design/pro-components/issues/2638)) ([5531a95](https://github.com/ant-design/pro-components/commit/5531a95941f262fca479cc0820987aca6fbc0fe5))
|
|
2084
|
+
- **form:** fix formItemProps type ([66ac501](https://github.com/ant-design/pro-components/commit/66ac5014b3d49c171e2e6e89d5913e7e12d37e4c))
|
|
2085
|
+
- **form:** ispicturecard judgment logic ([#2619](https://github.com/ant-design/pro-components/issues/2619)) ([8642196](https://github.com/ant-design/pro-components/commit/8642196d6c32550047d77bdf27662b8339c70a32))
|
|
2086
|
+
|
|
2087
|
+
### Features
|
|
2088
|
+
|
|
2089
|
+
- **form:** FieldSet support type=group ([#2628](https://github.com/ant-design/pro-components/issues/2628)) ([4e737dd](https://github.com/ant-design/pro-components/commit/4e737dd566a3eea4b292b427836c407523b3c48b))
|
|
2090
|
+
|
|
2091
|
+
## [1.21.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.21.4...@ant-design/pro-form@1.21.5) (2021-04-22)
|
|
2092
|
+
|
|
2093
|
+
### Bug Fixes
|
|
2094
|
+
|
|
2095
|
+
- **form:** sync url should no alawys set reset ([#2568](https://github.com/ant-design/pro-components/issues/2568)) ([a06d17b](https://github.com/ant-design/pro-components/commit/a06d17b69c561c60751baaf72aef36bd8dbba407))
|
|
2096
|
+
|
|
2097
|
+
## [1.21.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.21.3...@ant-design/pro-form@1.21.4) (2021-04-19)
|
|
2098
|
+
|
|
2099
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2100
|
+
|
|
2101
|
+
## [1.21.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.21.2...@ant-design/pro-form@1.21.3) (2021-04-19)
|
|
2102
|
+
|
|
2103
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2104
|
+
|
|
2105
|
+
## [1.21.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.21.1...@ant-design/pro-form@1.21.2) (2021-04-19)
|
|
2106
|
+
|
|
2107
|
+
### Bug Fixes
|
|
2108
|
+
|
|
2109
|
+
- **table:** fix add end will error in pagination ([#2529](https://github.com/ant-design/pro-components/issues/2529)) ([a74e410](https://github.com/ant-design/pro-components/commit/a74e410e8f6ffa3f84b455c4399130008ebb509c))
|
|
2110
|
+
|
|
2111
|
+
## [1.21.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.21.0...@ant-design/pro-form@1.21.1) (2021-04-15)
|
|
2112
|
+
|
|
2113
|
+
### Bug Fixes
|
|
2114
|
+
|
|
2115
|
+
- **form:** fix build form error ([9fb9e3f](https://github.com/ant-design/pro-components/commit/9fb9e3fe6b4ace4fd66566483b7511b67d5bd5b1))
|
|
2116
|
+
|
|
2117
|
+
# [1.21.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.20.0...@ant-design/pro-form@1.21.0) (2021-04-15)
|
|
2118
|
+
|
|
2119
|
+
### Bug Fixes
|
|
2120
|
+
|
|
2121
|
+
- **form:** drawer and modal add scrollLocker ([#2493](https://github.com/ant-design/pro-components/issues/2493)) ([deb1baa](https://github.com/ant-design/pro-components/commit/deb1baa64e492a788a34f9496e5d31999d1006c4))
|
|
2122
|
+
- **form:** fix ProFormUploadButton listType=picture-card style error ([#2483](https://github.com/ant-design/pro-components/issues/2483)) ([e8aa155](https://github.com/ant-design/pro-components/commit/e8aa1557f4dbb52fd914f196d11f8f59d57184f1))
|
|
2123
|
+
- **form:** transform support format config ([#2489](https://github.com/ant-design/pro-components/issues/2489)) ([c3dd999](https://github.com/ant-design/pro-components/commit/c3dd9993d71032703e7f5ef7010bee0db2485a0c))
|
|
2124
|
+
- **table:** fix valueType no work error ([#2486](https://github.com/ant-design/pro-components/issues/2486)) ([1379087](https://github.com/ant-design/pro-components/commit/1379087051b10d6358ed329e29744ea61e1c3c22))
|
|
2125
|
+
|
|
2126
|
+
### Features
|
|
2127
|
+
|
|
2128
|
+
- **form:** group support align ([#2457](https://github.com/ant-design/pro-components/issues/2457)) ([73df402](https://github.com/ant-design/pro-components/commit/73df402db96cb8ce83d7a18cb87ab33eab09b74a))
|
|
2129
|
+
- **form:** support SchemaForm ([#2040](https://github.com/ant-design/pro-components/issues/2040)) ([423f476](https://github.com/ant-design/pro-components/commit/423f4761eecde5a62c4a8476441aa0484ff94711))
|
|
2130
|
+
|
|
2131
|
+
# [1.20.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.19.1...@ant-design/pro-form@1.20.0) (2021-04-06)
|
|
2132
|
+
|
|
2133
|
+
### Bug Fixes
|
|
2134
|
+
|
|
2135
|
+
- RadioGroup do not pass rest props ([#2386](https://github.com/ant-design/pro-components/issues/2386)) ([9fb1c3f](https://github.com/ant-design/pro-components/commit/9fb1c3f9f508bcb9f1dd8b2215e1247b8021e773))
|
|
2136
|
+
- **form:** fix ProForm.Item no work in ProFormList ([#2377](https://github.com/ant-design/pro-components/issues/2377)) ([8bee408](https://github.com/ant-design/pro-components/commit/8bee408cb83b5070150296f64c896003afd85adb))
|
|
2137
|
+
|
|
2138
|
+
### Features
|
|
2139
|
+
|
|
2140
|
+
- **form:** creatorRecord support function ([#2383](https://github.com/ant-design/pro-components/issues/2383)) ([e9a5ba9](https://github.com/ant-design/pro-components/commit/e9a5ba9612146277b5b4cf375b5b25695db812af))
|
|
2141
|
+
|
|
2142
|
+
## [1.19.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.19.0...@ant-design/pro-form@1.19.1) (2021-03-31)
|
|
2143
|
+
|
|
2144
|
+
### Bug Fixes
|
|
2145
|
+
|
|
2146
|
+
- **card:** remove antd charts demos, replaced with img ([#2343](https://github.com/ant-design/pro-components/issues/2343)) ([cb69b10](https://github.com/ant-design/pro-components/commit/cb69b104ba0be6ad94de118cb60a9e03834ba2ba))
|
|
2147
|
+
- **form:** fix form list hidde label error ([#2360](https://github.com/ant-design/pro-components/issues/2360)) ([adcf0dd](https://github.com/ant-design/pro-components/commit/adcf0dd3930c1a88db7744e40d9230d2567e7a3f))
|
|
2148
|
+
- **form:** fix moblie style width is over ([#2357](https://github.com/ant-design/pro-components/issues/2357)) ([02511c5](https://github.com/ant-design/pro-components/commit/02511c5bc1d546cb2e27805ed73df7ab27acbc59))
|
|
2149
|
+
- **form:** fix StepsForm min-width error ([#2351](https://github.com/ant-design/pro-components/issues/2351)) ([5affd94](https://github.com/ant-design/pro-components/commit/5affd940b9a023413dfd5134ad143f9c9953ae42))
|
|
2150
|
+
|
|
2151
|
+
# [1.19.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.18.4...@ant-design/pro-form@1.19.0) (2021-03-29)
|
|
2152
|
+
|
|
2153
|
+
### Bug Fixes
|
|
2154
|
+
|
|
2155
|
+
- **form:** call synctourl props during onreset ([#2258](https://github.com/ant-design/pro-components/issues/2258)) ([11e8995](https://github.com/ant-design/pro-components/commit/11e899569c70f49ec8ccdbd948482eed2b51b0d4))
|
|
2156
|
+
- **form:** fix form item control no work error ([#2303](https://github.com/ant-design/pro-components/issues/2303)) ([65f0e4c](https://github.com/ant-design/pro-components/commit/65f0e4c869310ea9e305ffb8602f32e24c8a8726))
|
|
2157
|
+
|
|
2158
|
+
### Features
|
|
2159
|
+
|
|
2160
|
+
- **table:** search form support className ([#2254](https://github.com/ant-design/pro-components/issues/2254)) ([4b36710](https://github.com/ant-design/pro-components/commit/4b36710e6b314a2054b69b319bf071e3754727be))
|
|
2161
|
+
|
|
2162
|
+
## [1.18.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.18.3...@ant-design/pro-form@1.18.4) (2021-03-18)
|
|
2163
|
+
|
|
2164
|
+
### Bug Fixes
|
|
2165
|
+
|
|
2166
|
+
- **form:** fix drawer and modal from render error ([#2221](https://github.com/ant-design/pro-components/issues/2221)) ([55ee6c9](https://github.com/ant-design/pro-components/commit/55ee6c9a7831db1b67c3cde224dfbbcb4e311736))
|
|
2167
|
+
- **form:** if width<16, no rerender form layout ([#2220](https://github.com/ant-design/pro-components/issues/2220)) ([dd2ebe0](https://github.com/ant-design/pro-components/commit/dd2ebe02a8dd95366830d46c852ddcdc75b4a33d))
|
|
2168
|
+
|
|
2169
|
+
## [1.18.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.18.2...@ant-design/pro-form@1.18.3) (2021-03-17)
|
|
2170
|
+
|
|
2171
|
+
### Bug Fixes
|
|
2172
|
+
|
|
2173
|
+
- **from:** form button porps support=false ([#2215](https://github.com/ant-design/pro-components/issues/2215)) ([c5bab24](https://github.com/ant-design/pro-components/commit/c5bab246658b8626cb34c516510e8533f513eaea))
|
|
2174
|
+
|
|
2175
|
+
## [1.18.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.18.1...@ant-design/pro-form@1.18.2) (2021-03-16)
|
|
2176
|
+
|
|
2177
|
+
### Bug Fixes
|
|
2178
|
+
|
|
2179
|
+
- **form:** fix list form label no display error ([#2190](https://github.com/ant-design/pro-components/issues/2190)) ([b426a6f](https://github.com/ant-design/pro-components/commit/b426a6ffcd513236d40aa9c46f2d0eb7f57a46a7))
|
|
2180
|
+
- **form:** fix ProFormDateRangePicker type error ([#2181](https://github.com/ant-design/pro-components/issues/2181)) ([e01d519](https://github.com/ant-design/pro-components/commit/e01d5198a999267c34c9695460a5c618dd700e73))
|
|
2181
|
+
- **form:** fix width<16, layout will change error ([#2180](https://github.com/ant-design/pro-components/issues/2180)) ([67018c5](https://github.com/ant-design/pro-components/commit/67018c57ade57088229953c23e3155ed578dd5ae))
|
|
2182
|
+
|
|
2183
|
+
## [1.18.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.18.0...@ant-design/pro-form@1.18.1) (2021-03-11)
|
|
2184
|
+
|
|
2185
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2186
|
+
|
|
2187
|
+
# [1.18.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.17.0...@ant-design/pro-form@1.18.0) (2021-03-11)
|
|
2188
|
+
|
|
2189
|
+
### Bug Fixes
|
|
2190
|
+
|
|
2191
|
+
- **form:** fix copy trigger rerender error ([#2136](https://github.com/ant-design/pro-components/issues/2136)) ([5823c83](https://github.com/ant-design/pro-components/commit/5823c83a7be2b72140c04b202dac83c24bbd0d0c))
|
|
2192
|
+
|
|
2193
|
+
### Features
|
|
2194
|
+
|
|
2195
|
+
- **card:** migrate StatisticCard ([#2023](https://github.com/ant-design/pro-components/issues/2023)) ([317549d](https://github.com/ant-design/pro-components/commit/317549d814401b795726562fa4b4ee5471afe3ba))
|
|
2196
|
+
|
|
2197
|
+
# [1.17.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.16.3...@ant-design/pro-form@1.17.0) (2021-03-08)
|
|
2198
|
+
|
|
2199
|
+
### Bug Fixes
|
|
2200
|
+
|
|
2201
|
+
- **form:** fix form dateFormatter no export error ([#2123](https://github.com/ant-design/pro-components/issues/2123)) ([4842a3b](https://github.com/ant-design/pro-components/commit/4842a3be1a7467dd4507e7987bd4ca9c15085e23))
|
|
2202
|
+
- **form:** fix form list copy no work error ([#2081](https://github.com/ant-design/pro-components/issues/2081)) ([00329b8](https://github.com/ant-design/pro-components/commit/00329b8ca01b370092cfdef3f272b9f45c89069c))
|
|
2203
|
+
- **form:** fix ProFormDigit width no work error ([#2069](https://github.com/ant-design/pro-components/issues/2069)) ([5d39229](https://github.com/ant-design/pro-components/commit/5d3922970c8d203a91d2c6aa4a37c0ee16d7beb7))
|
|
2204
|
+
- **form:** fix QueryFilter span and colSize error ([#2072](https://github.com/ant-design/pro-components/issues/2072)) ([7392f88](https://github.com/ant-design/pro-components/commit/7392f8828e2c2976978db39c4161b0f1d2663923))
|
|
2205
|
+
- **form:** FormList support rules ([#2070](https://github.com/ant-design/pro-components/issues/2070)) ([db1cb1f](https://github.com/ant-design/pro-components/commit/db1cb1f1ef6975af11899bb3365dcc73eac25c89))
|
|
2206
|
+
- **form:** if button=1,no render space ([#2091](https://github.com/ant-design/pro-components/issues/2091)) ([a310a11](https://github.com/ant-design/pro-components/commit/a310a11fceac7d7be699834f931c7c89e99af721))
|
|
2207
|
+
- **form:** remove no work error ([#2078](https://github.com/ant-design/pro-components/issues/2078)) ([729b102](https://github.com/ant-design/pro-components/commit/729b102e11fd0992aa55e9f2bc7bb68cfaf34549))
|
|
2208
|
+
- **list:** fix nested list copy no work error ([#2117](https://github.com/ant-design/pro-components/issues/2117)) ([a054ef3](https://github.com/ant-design/pro-components/commit/a054ef3f18d25f3b8e781461b7eac9e911946a08))
|
|
2209
|
+
|
|
2210
|
+
### Features
|
|
2211
|
+
|
|
2212
|
+
- **field:** add color pick ([#2089](https://github.com/ant-design/pro-components/issues/2089)) ([e83c2ee](https://github.com/ant-design/pro-components/commit/e83c2ee36f67b66070074562f80f248cbfc1a6e3))
|
|
2213
|
+
|
|
2214
|
+
## [1.16.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.16.2...@ant-design/pro-form@1.16.3) (2021-02-28)
|
|
2215
|
+
|
|
2216
|
+
### Bug Fixes
|
|
2217
|
+
|
|
2218
|
+
- **form:** fix multiple data no work error ([#2028](https://github.com/ant-design/pro-components/issues/2028)) ([8c1dd51](https://github.com/ant-design/pro-components/commit/8c1dd514cbed03d06d918bdf0661270676186033))
|
|
2219
|
+
- **form:** update form list style ([a877ef7](https://github.com/ant-design/pro-components/commit/a877ef73d1a6390ad2c3a726f53b6583f289a935))
|
|
2220
|
+
- **select:** no overwirtter defalut select props ([#2041](https://github.com/ant-design/pro-components/issues/2041)) ([0b4f1ea](https://github.com/ant-design/pro-components/commit/0b4f1ea1d4af7d15c7f4494b88236f32f8608a11))
|
|
2221
|
+
|
|
2222
|
+
## [1.16.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.16.1...@ant-design/pro-form@1.16.2) (2021-02-25)
|
|
2223
|
+
|
|
2224
|
+
### Bug Fixes
|
|
2225
|
+
|
|
2226
|
+
- **form:** fix placeholder no work error ([#1991](https://github.com/ant-design/pro-components/issues/1991)) ([353c49d](https://github.com/ant-design/pro-components/commit/353c49dc0b44e193681f38366774a4040982e521))
|
|
2227
|
+
- **form:** form list support formlist ([#1995](https://github.com/ant-design/pro-components/issues/1995)) ([94e5d7b](https://github.com/ant-design/pro-components/commit/94e5d7b28bf0d2677da2dab2afbb1388bfaa9502))
|
|
2228
|
+
|
|
2229
|
+
## [1.16.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.16.0...@ant-design/pro-form@1.16.1) (2021-02-23)
|
|
2230
|
+
|
|
2231
|
+
### Bug Fixes
|
|
2232
|
+
|
|
2233
|
+
- **filed:** fix select show showArrow error ([#1937](https://github.com/ant-design/pro-components/issues/1937)) ([0bc0cda](https://github.com/ant-design/pro-components/commit/0bc0cda1a1de669e6628951b898f7996fac4f948))
|
|
2234
|
+
- **form:** modelForm and DrawerForm stopPropagation ([#1939](https://github.com/ant-design/pro-components/issues/1939)) ([22e5049](https://github.com/ant-design/pro-components/commit/22e50498196be00c21698847d9e5ba90d57c0e2f))
|
|
2235
|
+
- **form:** fix breakpoint xl width error ([#1946](https://github.com/ant-design/pro-components/issues/1946)) ([00fba77](https://github.com/ant-design/pro-components/commit/00fba77095a7d2abf4b474b77eaa3e1cd2564240))
|
|
2236
|
+
- **form:** fix modalForm reset time ([69fe97c](https://github.com/ant-design/pro-components/commit/69fe97cba2e602ae908a68c0aeed11afc20a992f))
|
|
2237
|
+
- **form:** ProFormSelect support params ([52a4a40](https://github.com/ant-design/pro-components/commit/52a4a40ea40b4410b4fcfc3a3c4422838f26a187))
|
|
2238
|
+
|
|
2239
|
+
# [1.16.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.15.4...@ant-design/pro-form@1.16.0) (2021-02-22)
|
|
2240
|
+
|
|
2241
|
+
### Bug Fixes
|
|
2242
|
+
|
|
2243
|
+
- **field:** omit fieldProps and support onChange ([#1886](https://github.com/ant-design/pro-components/issues/1886)) ([8d7c963](https://github.com/ant-design/pro-components/commit/8d7c9639073822daa554db07a5f0c8c0ea334a65))
|
|
2244
|
+
- **form:** fix searchText and resetText no work error ([#1872](https://github.com/ant-design/pro-components/issues/1872)) ([9ab0251](https://github.com/ant-design/pro-components/commit/9ab025184084a766f7f0c043be037858054cbf9c))
|
|
2245
|
+
- **layout:** use @umijs/use-params ([#1895](https://github.com/ant-design/pro-components/issues/1895)) ([80aac76](https://github.com/ant-design/pro-components/commit/80aac7665115c8f884c473d78c2fcc12ac042bb3))
|
|
2246
|
+
- **table:** fix the problem of onInit call sequence ([#1889](https://github.com/ant-design/pro-components/issues/1889)) ([b9e9ae5](https://github.com/ant-design/pro-components/commit/b9e9ae5d57d23b1fc7dd932ea2e225d90f345c85))
|
|
2247
|
+
|
|
2248
|
+
### Features
|
|
2249
|
+
|
|
2250
|
+
- **field:** support timeRange ([#1884](https://github.com/ant-design/pro-components/issues/1884)) ([4665efc](https://github.com/ant-design/pro-components/commit/4665efca7114737bcd7314ff3de6caad4afe30ae))
|
|
2251
|
+
- **form:** support form list ([#1908](https://github.com/ant-design/pro-components/issues/1908)) ([bc34d34](https://github.com/ant-design/pro-components/commit/bc34d34e490d83a73c890e6514d12d451a0161f9))
|
|
2252
|
+
- **select:** support SearchSelect ([#1916](https://github.com/ant-design/pro-components/issues/1916)) ([4cb5710](https://github.com/ant-design/pro-components/commit/4cb57100453856e079fe435f70d8fa2f7e62440c))
|
|
2253
|
+
|
|
2254
|
+
## [1.15.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.15.3...@ant-design/pro-form@1.15.4) (2021-02-04)
|
|
2255
|
+
|
|
2256
|
+
### Bug Fixes
|
|
2257
|
+
|
|
2258
|
+
- **form:** modal and drawer form close not reset ([#1827](https://github.com/ant-design/pro-components/issues/1827)) ([71d456c](https://github.com/ant-design/pro-components/commit/71d456c5d07222046bfdfcd08de953dd5c269bd0))
|
|
2259
|
+
|
|
2260
|
+
## [1.15.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.15.2...@ant-design/pro-form@1.15.3) (2021-02-02)
|
|
2261
|
+
|
|
2262
|
+
### Bug Fixes
|
|
2263
|
+
|
|
2264
|
+
- StepsForm document error ([#1800](https://github.com/ant-design/pro-components/issues/1800)) ([b9b9a1b](https://github.com/ant-design/pro-components/commit/b9b9a1b36a27c9b97ef831f8e0ca35ef8cb169cb))
|
|
2265
|
+
|
|
2266
|
+
## [1.15.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.15.1...@ant-design/pro-form@1.15.2) (2021-01-25)
|
|
2267
|
+
|
|
2268
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2269
|
+
|
|
2270
|
+
## [1.15.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.15.0...@ant-design/pro-form@1.15.1) (2021-01-21)
|
|
2271
|
+
|
|
2272
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2273
|
+
|
|
2274
|
+
# [1.15.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.14.1...@ant-design/pro-form@1.15.0) (2021-01-21)
|
|
2275
|
+
|
|
2276
|
+
### Bug Fixes
|
|
2277
|
+
|
|
2278
|
+
- **field:** select support labelInValue ([#1708](https://github.com/ant-design/pro-components/issues/1708)) ([45a653f](https://github.com/ant-design/pro-components/commit/45a653fa0b0d9fc27d650655083db66f50e04585))
|
|
2279
|
+
- **form:** fix from reset error ([#1709](https://github.com/ant-design/pro-components/issues/1709)) ([6877918](https://github.com/ant-design/pro-components/commit/687791816b1706debf0f75d3609e17e08f88a5e5))
|
|
2280
|
+
- **form:** fix StepsForm onFinish error ([35c1369](https://github.com/ant-design/pro-components/commit/35c1369fcd13ad32f92f396d62b33df3c2be16e2))
|
|
2281
|
+
- **form:** fix StepsForm onFinish error ([#1714](https://github.com/ant-design/pro-components/issues/1714)) ([380b8ee](https://github.com/ant-design/pro-components/commit/380b8eea5f59a5fb09c896509a5958389e32b08b))
|
|
2282
|
+
|
|
2283
|
+
### Features
|
|
2284
|
+
|
|
2285
|
+
- **table:** EditableProTable support onValuesChange ([#1713](https://github.com/ant-design/pro-components/issues/1713)) ([8e67799](https://github.com/ant-design/pro-components/commit/8e67799125e37c44d356166a309479c611895d86))
|
|
2286
|
+
- **table:** proTable supports polling ([#1694](https://github.com/ant-design/pro-components/issues/1694)) ([b37fe69](https://github.com/ant-design/pro-components/commit/b37fe69c53363acfc431900e01d6c5512fdae118))
|
|
2287
|
+
|
|
2288
|
+
## [1.14.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.14.0...@ant-design/pro-form@1.14.1) (2021-01-18)
|
|
2289
|
+
|
|
2290
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2291
|
+
|
|
2292
|
+
# [1.14.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.10...@ant-design/pro-form@1.14.0) (2021-01-18)
|
|
2293
|
+
|
|
2294
|
+
### Bug Fixes
|
|
2295
|
+
|
|
2296
|
+
- **form:** form supports generic types ([#1662](https://github.com/ant-design/pro-components/issues/1662)) ([aedbc18](https://github.com/ant-design/pro-components/commit/aedbc18c75177ae8132dc1861384bcd5d2660d25))
|
|
2297
|
+
- **form:** onFinish close loading when throw error ([#1639](https://github.com/ant-design/pro-components/issues/1639)) ([3a1451c](https://github.com/ant-design/pro-components/commit/3a1451c41900bf8cd0e1f574210fd2f562e75ac5))
|
|
2298
|
+
- **form:** query form support open rules ([#1653](https://github.com/ant-design/pro-components/issues/1653)) ([5833ea2](https://github.com/ant-design/pro-components/commit/5833ea2c0e5279a143d9e4cd53a0036d1c2fd4f1))
|
|
2299
|
+
- **form:** visible=true when simulate onVisibleChange ([#1658](https://github.com/ant-design/pro-components/issues/1658)) ([210ae8a](https://github.com/ant-design/pro-components/commit/210ae8a84b142a629997386d820869f8d3e4365b))
|
|
2300
|
+
|
|
2301
|
+
### Features
|
|
2302
|
+
|
|
2303
|
+
- **form:** form support omitNil ([#1666](https://github.com/ant-design/pro-components/issues/1666)) ([67e8416](https://github.com/ant-design/pro-components/commit/67e8416fa85a531c3b6e7b98c8ae0874a8c9b8f8))
|
|
2304
|
+
- **form:** QueryForm support preserve ([#1665](https://github.com/ant-design/pro-components/issues/1665)) ([fba2ed5](https://github.com/ant-design/pro-components/commit/fba2ed5a8462a27965b0df84f34a1563e41a216e))
|
|
2305
|
+
- **form:** support sync url ([#1650](https://github.com/ant-design/pro-components/issues/1650)) ([df6a8ec](https://github.com/ant-design/pro-components/commit/df6a8ec7340891691334ab4acc1c7d8679f649d7))
|
|
2306
|
+
- **table:** support hideInSetting props ([#1651](https://github.com/ant-design/pro-components/issues/1651)) ([2dee954](https://github.com/ant-design/pro-components/commit/2dee95453c79de23d967f285bb8aa9351b8b8cb0))
|
|
2307
|
+
|
|
2308
|
+
## [1.13.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.9...@ant-design/pro-form@1.13.10) (2021-01-13)
|
|
2309
|
+
|
|
2310
|
+
### Bug Fixes
|
|
2311
|
+
|
|
2312
|
+
- **form:** default render form ([#1611](https://github.com/ant-design/pro-components/issues/1611)) ([fcdfeb6](https://github.com/ant-design/pro-components/commit/fcdfeb659c776250c7b70c4d71db2ac0609ee550))
|
|
2313
|
+
|
|
2314
|
+
## [1.13.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.8...@ant-design/pro-form@1.13.9) (2021-01-12)
|
|
2315
|
+
|
|
2316
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2317
|
+
|
|
2318
|
+
## [1.13.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.7...@ant-design/pro-form@1.13.8) (2021-01-11)
|
|
2319
|
+
|
|
2320
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2321
|
+
|
|
2322
|
+
## [1.13.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.6...@ant-design/pro-form@1.13.7) (2021-01-11)
|
|
2323
|
+
|
|
2324
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2325
|
+
|
|
2326
|
+
## [1.13.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.5...@ant-design/pro-form@1.13.6) (2021-01-08)
|
|
2327
|
+
|
|
2328
|
+
### Bug Fixes
|
|
2329
|
+
|
|
2330
|
+
- **form:** fix defaultColsNumber no work error ([#1551](https://github.com/ant-design/pro-components/issues/1551)) ([4a30512](https://github.com/ant-design/pro-components/commit/4a305123f82ed26f9bac170aad887a6398c51cdd))
|
|
2331
|
+
- **form:** fix ModalForm and DrawerFrom props error ([#1534](https://github.com/ant-design/pro-components/issues/1534)) ([9d4e028](https://github.com/ant-design/pro-components/commit/9d4e028d4a508013bf407a5920c9e541faa28a63))
|
|
2332
|
+
- **form:** fix ProFormRadio.Group vertical style error ([#1542](https://github.com/ant-design/pro-components/issues/1542)) ([e7d42d7](https://github.com/ant-design/pro-components/commit/e7d42d704961965d0aa9e38c53868e4242044fa7))
|
|
2333
|
+
|
|
2334
|
+
## [1.13.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.4...@ant-design/pro-form@1.13.5) (2021-01-07)
|
|
2335
|
+
|
|
2336
|
+
### Bug Fixes
|
|
2337
|
+
|
|
2338
|
+
- **form:** fix form width no work error ([#1516](https://github.com/ant-design/pro-components/issues/1516)) ([0ce87ea](https://github.com/ant-design/pro-components/commit/0ce87ea5093aece6e0245d9c72ee0edc6137bb28))
|
|
2339
|
+
|
|
2340
|
+
## [1.13.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.3...@ant-design/pro-form@1.13.4) (2021-01-06)
|
|
2341
|
+
|
|
2342
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2343
|
+
|
|
2344
|
+
## [1.13.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.2...@ant-design/pro-form@1.13.3) (2021-01-05)
|
|
2345
|
+
|
|
2346
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2347
|
+
|
|
2348
|
+
## [1.13.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.1...@ant-design/pro-form@1.13.2) (2021-01-05)
|
|
2349
|
+
|
|
2350
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2351
|
+
|
|
2352
|
+
## [1.13.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.13.0...@ant-design/pro-form@1.13.1) (2021-01-04)
|
|
2353
|
+
|
|
2354
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2355
|
+
|
|
2356
|
+
# [1.13.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.12.0...@ant-design/pro-form@1.13.0) (2021-01-02)
|
|
2357
|
+
|
|
2358
|
+
### Bug Fixes
|
|
2359
|
+
|
|
2360
|
+
- **form:** add footer warning ([#1469](https://github.com/ant-design/pro-components/issues/1469)) ([4dd1590](https://github.com/ant-design/pro-components/commit/4dd15900a13227704ebe8d769ba840eec0362bbd))
|
|
2361
|
+
- **form:** fix form submitButtonProps no work error ([#1476](https://github.com/ant-design/pro-components/issues/1476)) ([e6bea59](https://github.com/ant-design/pro-components/commit/e6bea5945218cbea5d5009b489f8f4fca6fc05fe))
|
|
2362
|
+
|
|
2363
|
+
### Features
|
|
2364
|
+
|
|
2365
|
+
- **from:** support ProFormDependency ([#1475](https://github.com/ant-design/pro-components/issues/1475)) ([a761e47](https://github.com/ant-design/pro-components/commit/a761e4796c1162082d60b26a53102bdb8146b63c))
|
|
2366
|
+
|
|
2367
|
+
# [1.12.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.7...@ant-design/pro-form@1.12.0) (2021-01-01)
|
|
2368
|
+
|
|
2369
|
+
### Bug Fixes
|
|
2370
|
+
|
|
2371
|
+
- **table:** fix table form submit time error ([#1466](https://github.com/ant-design/pro-components/issues/1466)) ([5591a87](https://github.com/ant-design/pro-components/commit/5591a8754d0e911eecdd8bdac7b5d010e2824451))
|
|
2372
|
+
|
|
2373
|
+
### Features
|
|
2374
|
+
|
|
2375
|
+
- **table:** support customization valueType ([#1456](https://github.com/ant-design/pro-components/issues/1456)) ([cbce5ba](https://github.com/ant-design/pro-components/commit/cbce5baf9ae456a1ab32a748e7ac86ee592b4344))
|
|
2376
|
+
|
|
2377
|
+
## [1.11.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.6...@ant-design/pro-form@1.11.7) (2020-12-31)
|
|
2378
|
+
|
|
2379
|
+
### Bug Fixes
|
|
2380
|
+
|
|
2381
|
+
- **form:** fix ProFormCaptcha name error ([#1459](https://github.com/ant-design/pro-components/issues/1459)) ([92c56bf](https://github.com/ant-design/pro-components/commit/92c56bf5eb3e4dee82c56092bc28b2e376054b32))
|
|
2382
|
+
|
|
2383
|
+
## [1.11.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.5...@ant-design/pro-form@1.11.6) (2020-12-31)
|
|
2384
|
+
|
|
2385
|
+
### Bug Fixes
|
|
2386
|
+
|
|
2387
|
+
- **form:** add defaultXXX warning ([#1457](https://github.com/ant-design/pro-components/issues/1457)) ([805607b](https://github.com/ant-design/pro-components/commit/805607b46e1d076ae7199bef9aa68301f75dedcd))
|
|
2388
|
+
|
|
2389
|
+
## [1.11.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.4...@ant-design/pro-form@1.11.5) (2020-12-28)
|
|
2390
|
+
|
|
2391
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2392
|
+
|
|
2393
|
+
## [1.11.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.3...@ant-design/pro-form@1.11.4) (2020-12-28)
|
|
2394
|
+
|
|
2395
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2396
|
+
|
|
2397
|
+
## [1.11.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.2...@ant-design/pro-form@1.11.3) (2020-12-28)
|
|
2398
|
+
|
|
2399
|
+
### Bug Fixes
|
|
2400
|
+
|
|
2401
|
+
- **form:** fix ProFormSet no work error ([#1420](https://github.com/ant-design/pro-components/issues/1420)) ([e5c6f18](https://github.com/ant-design/pro-components/commit/e5c6f188e83bc9db282a57735f5f60f583999e07))
|
|
2402
|
+
- **form:** fix QueryFilter span style error ([#1419](https://github.com/ant-design/pro-components/issues/1419)) ([857aa70](https://github.com/ant-design/pro-components/commit/857aa704ec4f98a8e5637fe4a96b5ffb7a5cf03f))
|
|
2403
|
+
- fix typo ([#1412](https://github.com/ant-design/pro-components/issues/1412)) ([2f629ba](https://github.com/ant-design/pro-components/commit/2f629ba193746c2829e48fadcbab779d6e4a8cef))
|
|
2404
|
+
|
|
2405
|
+
## [1.11.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.11.1...@ant-design/pro-form@1.11.2) (2020-12-25)
|
|
2406
|
+
|
|
2407
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2408
|
+
|
|
2409
|
+
## [1.11.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.3...@ant-design/pro-form@1.11.1) (2020-12-25)
|
|
2410
|
+
|
|
2411
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2412
|
+
|
|
2413
|
+
# [1.11.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.10.4...@ant-design/pro-form@1.11.0) (2020-12-24)
|
|
2414
|
+
|
|
2415
|
+
### Features
|
|
2416
|
+
|
|
2417
|
+
- **chore:** adjust information structure ([#1383](https://github.com/ant-design/pro-components/issues/1383)) ([76b3f29](https://github.com/ant-design/pro-components/commit/76b3f2929c5a5dcd4ed78e723b2a01e3a5cdfbf5)), closes [#1376](https://github.com/ant-design/pro-components/issues/1376) [#1380](https://github.com/ant-design/pro-components/issues/1380)
|
|
2418
|
+
- **form:** 懒加载 DrawerForm 和 ModalFrom 优化性能 ([#1370](https://github.com/ant-design/pro-components/issues/1370)) ([743a0ce](https://github.com/ant-design/pro-components/commit/743a0ce00d00e326b02dd83a3ab349405ef92aff))
|
|
2419
|
+
|
|
2420
|
+
## [1.10.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.10.3...@ant-design/pro-form@1.10.4) (2020-12-21)
|
|
2421
|
+
|
|
2422
|
+
### Bug Fixes
|
|
2423
|
+
|
|
2424
|
+
- **table:** form 修复问题和清空操作冲突,改成 hasOwnProperty 判断 ([#1363](https://github.com/ant-design/pro-components/issues/1363)) ([7820466](https://github.com/ant-design/pro-components/commit/7820466504bef2335e6900b8a658fb3214b507e3))
|
|
2425
|
+
|
|
2426
|
+
## [1.10.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.10.2...@ant-design/pro-form@1.10.3) (2020-12-21)
|
|
2427
|
+
|
|
2428
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2429
|
+
|
|
2430
|
+
## [1.10.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.10.1...@ant-design/pro-form@1.10.2) (2020-12-17)
|
|
2431
|
+
|
|
2432
|
+
### Bug Fixes
|
|
2433
|
+
|
|
2434
|
+
- **form:** 修复 lightFilter 在 collapse 的情况下 form 失效的 bug ([#1323](https://github.com/ant-design/pro-components/issues/1323)) ([c026a83](https://github.com/ant-design/pro-components/commit/c026a8384c0d768129a45e79d1efc7396f64d49e))
|
|
2435
|
+
- **form:** 修复 ModalForm 和 DrawerForm 的编写错误 ([#1328](https://github.com/ant-design/pro-components/issues/1328)) ([27ed75a](https://github.com/ant-design/pro-components/commit/27ed75a6bf25d63179a265bd981fe4c663d119c8))
|
|
2436
|
+
|
|
2437
|
+
## [1.10.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.10.0...@ant-design/pro-form@1.10.1) (2020-12-15)
|
|
2438
|
+
|
|
2439
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2440
|
+
|
|
2441
|
+
# [1.10.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.9.0...@ant-design/pro-form@1.10.0) (2020-12-14)
|
|
2442
|
+
|
|
2443
|
+
### Features
|
|
2444
|
+
|
|
2445
|
+
- **desciption:** support editable ([#1273](https://github.com/ant-design/pro-components/issues/1273)) ([bc8821b](https://github.com/ant-design/pro-components/commit/bc8821bce05faadaa7d9337ae2287131c41791e0))
|
|
2446
|
+
- **table:** EditableTable support max length ([#1286](https://github.com/ant-design/pro-components/issues/1286)) ([dac9844](https://github.com/ant-design/pro-components/commit/dac9844e42ed19d5a539b6b0eae42ea35d6f958d))
|
|
2447
|
+
|
|
2448
|
+
# [1.9.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.8.1...@ant-design/pro-form@1.9.0) (2020-12-10)
|
|
2449
|
+
|
|
2450
|
+
### Features
|
|
2451
|
+
|
|
2452
|
+
- **form:** support getPopupContainer ([#1251](https://github.com/ant-design/pro-components/issues/1251)) ([d1f20a9](https://github.com/ant-design/pro-components/commit/d1f20a9191783c3eb3992f284822e3ad2d2d9cea))
|
|
2453
|
+
|
|
2454
|
+
## [1.8.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.8.0...@ant-design/pro-form@1.8.1) (2020-12-09)
|
|
2455
|
+
|
|
2456
|
+
### Bug Fixes
|
|
2457
|
+
|
|
2458
|
+
- **colsize:** fix colsize warning ([#1245](https://github.com/ant-design/pro-components/issues/1245)) ([af674b6](https://github.com/ant-design/pro-components/commit/af674b661f53ef7f537bd49bea32784274cf0d34))
|
|
2459
|
+
|
|
2460
|
+
# [1.8.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.6...@ant-design/pro-form@1.8.0) (2020-12-08)
|
|
2461
|
+
|
|
2462
|
+
### Features
|
|
2463
|
+
|
|
2464
|
+
- **table:** fieldProps support function ([#1227](https://github.com/ant-design/pro-components/issues/1227)) ([bc34fb0](https://github.com/ant-design/pro-components/commit/bc34fb0ce11d006c83b06166f6cf8903bd5d3e1a))
|
|
2465
|
+
|
|
2466
|
+
## [1.7.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.5...@ant-design/pro-form@1.7.6) (2020-12-07)
|
|
2467
|
+
|
|
2468
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2469
|
+
|
|
2470
|
+
## [1.7.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.4...@ant-design/pro-form@1.7.5) (2020-12-04)
|
|
2471
|
+
|
|
2472
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2473
|
+
|
|
2474
|
+
## [1.7.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.3...@ant-design/pro-form@1.7.4) (2020-12-03)
|
|
2475
|
+
|
|
2476
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2477
|
+
|
|
2478
|
+
## [1.7.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.2...@ant-design/pro-form@1.7.3) (2020-12-03)
|
|
2479
|
+
|
|
2480
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2481
|
+
|
|
2482
|
+
## [1.7.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.1...@ant-design/pro-form@1.7.2) (2020-12-02)
|
|
2483
|
+
|
|
2484
|
+
### Bug Fixes
|
|
2485
|
+
|
|
2486
|
+
- **form:** fix optionRender no has form error ([#1147](https://github.com/ant-design/pro-components/issues/1147)) ([3398fb9](https://github.com/ant-design/pro-components/commit/3398fb999952eebf6b9ba5736e6dc5d44a5fecce))
|
|
2487
|
+
|
|
2488
|
+
## [1.7.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.7.0...@ant-design/pro-form@1.7.1) (2020-11-30)
|
|
2489
|
+
|
|
2490
|
+
### Bug Fixes
|
|
2491
|
+
|
|
2492
|
+
- **form:** fix setState() call inside `Field` error ([#1137](https://github.com/ant-design/pro-components/issues/1137)) ([f72f9f6](https://github.com/ant-design/pro-components/commit/f72f9f6e07cd18c1c01d4679f19076df06b6fbf5))
|
|
2493
|
+
- **form:** No longer generate redundant dom ([#1121](https://github.com/ant-design/pro-components/issues/1121)) ([4fb8379](https://github.com/ant-design/pro-components/commit/4fb8379f0d24dcd7d40d924b1885a0a708851400))
|
|
2494
|
+
|
|
2495
|
+
# [1.7.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.6.2...@ant-design/pro-form@1.7.0) (2020-11-27)
|
|
2496
|
+
|
|
2497
|
+
### Bug Fixes
|
|
2498
|
+
|
|
2499
|
+
- **form:** drawerForm\&modalForm trigger 区域调整 ([#1063](https://github.com/ant-design/pro-components/issues/1063)) ([4865f50](https://github.com/ant-design/pro-components/commit/4865f50a79f97880064297c40f52ec021d3f40a9))
|
|
2500
|
+
- **table:** optimize table demos and table style. ([#1105](https://github.com/ant-design/pro-components/issues/1105)) ([6e6437e](https://github.com/ant-design/pro-components/commit/6e6437e621200932a24a9199ee729ff4253d71c0))
|
|
2501
|
+
|
|
2502
|
+
### Features
|
|
2503
|
+
|
|
2504
|
+
- **form:** add table demos and fix form layout styles ([#1069](https://github.com/ant-design/pro-components/issues/1069)) ([4a25cf2](https://github.com/ant-design/pro-components/commit/4a25cf2b2475e534598360e0d62b6a0a3cf69354))
|
|
2505
|
+
- **table:** support editor table ([#994](https://github.com/ant-design/pro-components/issues/994)) ([35f40fe](https://github.com/ant-design/pro-components/commit/35f40feb72dd10ea6fefb7d6a59943d43d0a7325))
|
|
2506
|
+
- **table:** table support fieldProps.onChange ([#1068](https://github.com/ant-design/pro-components/issues/1068)) ([b8fe662](https://github.com/ant-design/pro-components/commit/b8fe662fd042dda92c4ad0e35c24e1afe2870996))
|
|
2507
|
+
|
|
2508
|
+
## [1.6.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.6.1...@ant-design/pro-form@1.6.2) (2020-11-19)
|
|
2509
|
+
|
|
2510
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2511
|
+
|
|
2512
|
+
## [1.6.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.6.0...@ant-design/pro-form@1.6.1) (2020-11-19)
|
|
2513
|
+
|
|
2514
|
+
### Bug Fixes
|
|
2515
|
+
|
|
2516
|
+
- **form:** modal and drawer render to body ([#1031](https://github.com/ant-design/pro-components/issues/1031)) ([807c052](https://github.com/ant-design/pro-components/commit/807c05265d3d327537233a2db265589bf6d58e60))
|
|
2517
|
+
- **table:** fix the problem that the table rendering is not timely ([#1024](https://github.com/ant-design/pro-components/issues/1024)) ([19d3af5](https://github.com/ant-design/pro-components/commit/19d3af58e692dbfa5a4b32644afe9672ba5719cf))
|
|
2518
|
+
|
|
2519
|
+
# [1.6.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.5.1...@ant-design/pro-form@1.6.0) (2020-11-18)
|
|
2520
|
+
|
|
2521
|
+
### Bug Fixes
|
|
2522
|
+
|
|
2523
|
+
- ProFromFieldSet to ProFormFieldSet ([#1012](https://github.com/ant-design/pro-components/issues/1012)) ([9ecec85](https://github.com/ant-design/pro-components/commit/9ecec85928588c5ecca7bf65b1ac9fba65577c45))
|
|
2524
|
+
|
|
2525
|
+
### Features
|
|
2526
|
+
|
|
2527
|
+
- **form:** onFinish support reset form ([cf84064](https://github.com/ant-design/pro-components/commit/cf8406411b2445399290b476b3d8dff959507db3))
|
|
2528
|
+
|
|
2529
|
+
## [1.5.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.5.0...@ant-design/pro-form@1.5.1) (2020-11-17)
|
|
2530
|
+
|
|
2531
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2532
|
+
|
|
2533
|
+
# [1.5.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.4.1...@ant-design/pro-form@1.5.0) (2020-11-17)
|
|
2534
|
+
|
|
2535
|
+
### Bug Fixes
|
|
2536
|
+
|
|
2537
|
+
- **form:** FieldSet igrone no Element ([aa40d77](https://github.com/ant-design/pro-components/commit/aa40d7744bfe4687699c8c5703baeefdc928f2ee))
|
|
2538
|
+
- **form:** fix form captcha loading error ([#945](https://github.com/ant-design/pro-components/issues/945)) ([2d3db9e](https://github.com/ant-design/pro-components/commit/2d3db9eac98dfaa40ba8248a4417b181a59d094b)), closes [#943](https://github.com/ant-design/pro-components/issues/943)
|
|
2539
|
+
|
|
2540
|
+
### Features
|
|
2541
|
+
|
|
2542
|
+
- **form:** LightFilter support allowClear ([#974](https://github.com/ant-design/pro-components/issues/974)) ([6ef984a](https://github.com/ant-design/pro-components/commit/6ef984ae6ba9560737c200c0ca39e5d2f3d7286b))
|
|
2543
|
+
- **form:** support readonly ([#963](https://github.com/ant-design/pro-components/issues/963)) ([2b27e91](https://github.com/ant-design/pro-components/commit/2b27e917707c530c2a9d9c91fa27c1b663a07bf4))
|
|
2544
|
+
|
|
2545
|
+
## [1.4.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.4.0...@ant-design/pro-form@1.4.1) (2020-11-10)
|
|
2546
|
+
|
|
2547
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2548
|
+
|
|
2549
|
+
# [1.4.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.3.0...@ant-design/pro-form@1.4.0) (2020-11-09)
|
|
2550
|
+
|
|
2551
|
+
### Features
|
|
2552
|
+
|
|
2553
|
+
- **table:** 修复 ListToolBar 样式问题 & 调整部分 Table 样式的 demo ([#918](https://github.com/ant-design/pro-components/issues/918)) ([a217c6e](https://github.com/ant-design/pro-components/commit/a217c6ea309f5232fd1864b2d886f449f49f2b6a))
|
|
2554
|
+
|
|
2555
|
+
# [1.3.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.2.1...@ant-design/pro-form@1.3.0) (2020-11-04)
|
|
2556
|
+
|
|
2557
|
+
### Features
|
|
2558
|
+
|
|
2559
|
+
- **form:** submit button text localization ([#896](https://github.com/ant-design/pro-components/issues/896)) ([d209ea1](https://github.com/ant-design/pro-components/commit/d209ea1073cf12672b04a585c1343e02f5841fd2))
|
|
2560
|
+
|
|
2561
|
+
## [1.2.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.2.0...@ant-design/pro-form@1.2.1) (2020-11-02)
|
|
2562
|
+
|
|
2563
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2564
|
+
|
|
2565
|
+
# [1.2.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.6...@ant-design/pro-form@1.2.0) (2020-11-02)
|
|
2566
|
+
|
|
2567
|
+
### Bug Fixes
|
|
2568
|
+
|
|
2569
|
+
- **form:** Radio and Checkbox should support children ([#857](https://github.com/ant-design/pro-components/issues/857)) ([297757d](https://github.com/ant-design/pro-components/commit/297757dc1be40e94bbdb16c0f271414c27699e61))
|
|
2570
|
+
|
|
2571
|
+
### Features
|
|
2572
|
+
|
|
2573
|
+
- **form:** localize stepsform texts ([#868](https://github.com/ant-design/pro-components/issues/868)) ([4d0f86f](https://github.com/ant-design/pro-components/commit/4d0f86f2d4812265893ba1d4e8e8994787609de2))
|
|
2574
|
+
|
|
2575
|
+
## [1.1.6](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.5...@ant-design/pro-form@1.1.6) (2020-10-29)
|
|
2576
|
+
|
|
2577
|
+
### Bug Fixes
|
|
2578
|
+
|
|
2579
|
+
- **table:** renderFormItem should run in form init ([#852](https://github.com/ant-design/pro-components/issues/852)) ([612b04a](https://github.com/ant-design/pro-components/commit/612b04a7225ccc93b8c081d268981d988c333d4c))
|
|
2580
|
+
|
|
2581
|
+
## [1.1.5](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.4...@ant-design/pro-form@1.1.5) (2020-10-26)
|
|
2582
|
+
|
|
2583
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2584
|
+
|
|
2585
|
+
## [1.1.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.3...@ant-design/pro-form@1.1.4) (2020-10-23)
|
|
2586
|
+
|
|
2587
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2588
|
+
|
|
2589
|
+
## [1.1.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.2...@ant-design/pro-form@1.1.3) (2020-10-23)
|
|
2590
|
+
|
|
2591
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2592
|
+
|
|
2593
|
+
## [1.1.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.1...@ant-design/pro-form@1.1.2) (2020-10-22)
|
|
2594
|
+
|
|
2595
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2596
|
+
|
|
2597
|
+
## [1.1.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.1.0...@ant-design/pro-form@1.1.1) (2020-10-21)
|
|
2598
|
+
|
|
2599
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2600
|
+
|
|
2601
|
+
# [1.1.0](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.4...@ant-design/pro-form@1.1.0) (2020-10-19)
|
|
2602
|
+
|
|
2603
|
+
### Features
|
|
2604
|
+
|
|
2605
|
+
- **form:** add effective style to LightFilter when collapse ([#746](https://github.com/ant-design/pro-components/issues/746)) ([af7eb93](https://github.com/ant-design/pro-components/commit/af7eb93285f13b4b8fb087186515421e5c9a7a35))
|
|
2606
|
+
|
|
2607
|
+
## [1.0.4](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.3...@ant-design/pro-form@1.0.4) (2020-10-15)
|
|
2608
|
+
|
|
2609
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2610
|
+
|
|
2611
|
+
## [1.0.3](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.2...@ant-design/pro-form@1.0.3) (2020-10-15)
|
|
2612
|
+
|
|
2613
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2614
|
+
|
|
2615
|
+
## [1.0.2](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.1...@ant-design/pro-form@1.0.2) (2020-10-12)
|
|
2616
|
+
|
|
2617
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2618
|
+
|
|
2619
|
+
## [1.0.1](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.31...@ant-design/pro-form@1.0.1) (2020-10-12)
|
|
2620
|
+
|
|
2621
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2622
|
+
|
|
2623
|
+
# [1.0.0-beta.31](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.30...@ant-design/pro-form@1.0.0-beta.31) (2020-10-12)
|
|
2624
|
+
|
|
2625
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2626
|
+
|
|
2627
|
+
# [1.0.0-beta.30](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.28...@ant-design/pro-form@1.0.0-beta.30) (2020-09-29)
|
|
2628
|
+
|
|
2629
|
+
### Bug Fixes
|
|
2630
|
+
|
|
2631
|
+
- **from:** 修改 ProFormRadio 中 options 中 value 的类型:string -> (string | number) ([e644058](https://github.com/ant-design/pro-components/commit/e644058e06298b5c594398bf353c136dabf988d2))
|
|
2632
|
+
|
|
2633
|
+
### Features
|
|
2634
|
+
|
|
2635
|
+
- ProTable & ProList support LightFilter ([#622](https://github.com/ant-design/pro-components/issues/622)) ([ce925c1](https://github.com/ant-design/pro-components/commit/ce925c191330956dadbad752b25ad4c7481d9663))
|
|
2636
|
+
- **field:** 支持密码类型 ([#475](https://github.com/ant-design/pro-components/issues/475)) ([b5a3bd2](https://github.com/ant-design/pro-components/commit/b5a3bd2493a0476ab9186e3fd279742e9bf79458))
|
|
2637
|
+
|
|
2638
|
+
# [1.0.0-beta.28](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.27...@ant-design/pro-form@1.0.0-beta.28) (2020-09-22)
|
|
2639
|
+
|
|
2640
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2641
|
+
|
|
2642
|
+
# [1.0.0-beta.27](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.26...@ant-design/pro-form@1.0.0-beta.27) (2020-09-22)
|
|
2643
|
+
|
|
2644
|
+
### Bug Fixes
|
|
2645
|
+
|
|
2646
|
+
- DatePicker light mode dropdown style detail ([0fc2dc7](https://github.com/ant-design/pro-components/commit/0fc2dc7ba7836b432381bbe75a268ab1d57b54aa))
|
|
2647
|
+
|
|
2648
|
+
# [1.0.0-beta.26](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.25...@ant-design/pro-form@1.0.0-beta.26) (2020-09-14)
|
|
2649
|
+
|
|
2650
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2651
|
+
|
|
2652
|
+
# [1.0.0-beta.25](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.24...@ant-design/pro-form@1.0.0-beta.25) (2020-09-14)
|
|
2653
|
+
|
|
2654
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2655
|
+
|
|
2656
|
+
# [1.0.0-beta.24](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.23...@ant-design/pro-form@1.0.0-beta.24) (2020-09-10)
|
|
2657
|
+
|
|
2658
|
+
### Bug Fixes
|
|
2659
|
+
|
|
2660
|
+
- query filter demo bug & progress bug when value < 0 ([#448](https://github.com/ant-design/pro-components/issues/448)) ([e9b6afe](https://github.com/ant-design/pro-components/commit/e9b6afe918aa9e203664f046d83ba20d2498cb2d))
|
|
2661
|
+
|
|
2662
|
+
### Features
|
|
2663
|
+
|
|
2664
|
+
- **from:** support ProFormDatePicker.Month & Quarter & Year ([#436](https://github.com/ant-design/pro-components/issues/436)) ([dade507](https://github.com/ant-design/pro-components/commit/dade507a45b0b27aa7f00c103a09db1f0bd1264f))
|
|
2665
|
+
|
|
2666
|
+
# [1.0.0-beta.23](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.22...@ant-design/pro-form@1.0.0-beta.23) (2020-09-08)
|
|
2667
|
+
|
|
2668
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2669
|
+
|
|
2670
|
+
# [1.0.0-beta.22](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.21...@ant-design/pro-form@1.0.0-beta.22) (2020-09-07)
|
|
2671
|
+
|
|
2672
|
+
### Features
|
|
2673
|
+
|
|
2674
|
+
- **form:** LightFilter support i18n ([#379](https://github.com/ant-design/pro-components/issues/379)) ([6e70e85](https://github.com/ant-design/pro-components/commit/6e70e85556291c2baf4b4b582b2a476e1aefe806))
|
|
2675
|
+
- **form:** new form component ProFormDatePicker.Week & LightFilter support bordered ([#385](https://github.com/ant-design/pro-components/issues/385)) ([c6bb939](https://github.com/ant-design/pro-components/commit/c6bb939c016e1d278485fe0cd3808c242b4eb117))
|
|
2676
|
+
|
|
2677
|
+
# [1.0.0-beta.21](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.20...@ant-design/pro-form@1.0.0-beta.21) (2020-08-31)
|
|
2678
|
+
|
|
2679
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2680
|
+
|
|
2681
|
+
# [1.0.0-beta.20](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.19...@ant-design/pro-form@1.0.0-beta.20) (2020-08-26)
|
|
2682
|
+
|
|
2683
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2684
|
+
|
|
2685
|
+
# [1.0.0-beta.19](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.18...@ant-design/pro-form@1.0.0-beta.19) (2020-08-25)
|
|
2686
|
+
|
|
2687
|
+
### Bug Fixes
|
|
2688
|
+
|
|
2689
|
+
- **table:** actions intl message ([#289](https://github.com/ant-design/pro-components/issues/289)) ([7bc99fe](https://github.com/ant-design/pro-components/commit/7bc99fe9b8420565c17956872f9936e41d6b82b8))
|
|
2690
|
+
|
|
2691
|
+
# [1.0.0-beta.18](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.17...@ant-design/pro-form@1.0.0-beta.18) (2020-08-24)
|
|
2692
|
+
|
|
2693
|
+
### Features
|
|
2694
|
+
|
|
2695
|
+
- **form:** ProForm new Layout LightFilter support ([#173](https://github.com/ant-design/pro-components/issues/173)) ([e558c62](https://github.com/ant-design/pro-components/commit/e558c62a14e9d3b85050f790c72de96dbaa82321))
|
|
2696
|
+
|
|
2697
|
+
# [1.0.0-beta.17](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.16...@ant-design/pro-form@1.0.0-beta.17) (2020-08-19)
|
|
2698
|
+
|
|
2699
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2700
|
+
|
|
2701
|
+
# [1.0.0-beta.16](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.15...@ant-design/pro-form@1.0.0-beta.16) (2020-08-18)
|
|
2702
|
+
|
|
2703
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2704
|
+
|
|
2705
|
+
# [1.0.0-beta.15](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.14...@ant-design/pro-form@1.0.0-beta.15) (2020-08-17)
|
|
2706
|
+
|
|
2707
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2708
|
+
|
|
2709
|
+
# [1.0.0-beta.14](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.13...@ant-design/pro-form@1.0.0-beta.14) (2020-08-14)
|
|
2710
|
+
|
|
2711
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2712
|
+
|
|
2713
|
+
# [1.0.0-beta.13](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.12...@ant-design/pro-form@1.0.0-beta.13) (2020-08-14)
|
|
2714
|
+
|
|
2715
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2716
|
+
|
|
2717
|
+
# [1.0.0-beta.12](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.11...@ant-design/pro-form@1.0.0-beta.12) (2020-08-12)
|
|
2718
|
+
|
|
2719
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2720
|
+
|
|
2721
|
+
# [1.0.0-beta.11](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.10...@ant-design/pro-form@1.0.0-beta.11) (2020-08-12)
|
|
2722
|
+
|
|
2723
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2724
|
+
|
|
2725
|
+
# [1.0.0-beta.10](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.9...@ant-design/pro-form@1.0.0-beta.10) (2020-08-12)
|
|
2726
|
+
|
|
2727
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2728
|
+
|
|
2729
|
+
# [1.0.0-beta.9](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.8...@ant-design/pro-form@1.0.0-beta.9) (2020-08-10)
|
|
2730
|
+
|
|
2731
|
+
### Bug Fixes
|
|
2732
|
+
|
|
2733
|
+
- **form:** improve QueryFilter responsive rules ([#96](https://github.com/ant-design/pro-components/issues/96)) ([8c88ba3](https://github.com/ant-design/pro-components/commit/8c88ba38789ca49f834048e4ecac6c792e9d7a7a))
|
|
2734
|
+
- serach filter demo style detail ([#94](https://github.com/ant-design/pro-components/issues/94)) ([0666697](https://github.com/ant-design/pro-components/commit/06666972e0c1b8c12f483e657df50380c3d2fb31))
|
|
2735
|
+
|
|
2736
|
+
### Features
|
|
2737
|
+
|
|
2738
|
+
- SearchFilter 合并到 QueryFilter ([#75](https://github.com/ant-design/pro-components/issues/75)) ([7b20381](https://github.com/ant-design/pro-components/commit/7b20381fae342d52d13e394d5144348f12f42339))
|
|
2739
|
+
|
|
2740
|
+
# [1.0.0-beta.8](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.7...@ant-design/pro-form@1.0.0-beta.8) (2020-07-30)
|
|
2741
|
+
|
|
2742
|
+
### Bug Fixes
|
|
2743
|
+
|
|
2744
|
+
- use rc-resize-observer for response logic and improve test coverage ([#44](https://github.com/ant-design/pro-components/issues/44)) ([15315e9](https://github.com/ant-design/pro-components/commit/15315e9fde969e6b80d9f9142e5b21f2d83afe56))
|
|
2745
|
+
|
|
2746
|
+
# [1.0.0-beta.7](https://github.com/ant-design/pro-components/compare/@ant-design/pro-form@1.0.0-beta.6...@ant-design/pro-form@1.0.0-beta.7) (2020-07-25)
|
|
2747
|
+
|
|
2748
|
+
**Note:** Version bump only for package @ant-design/pro-form
|
|
2749
|
+
|
|
2750
|
+
# 1.0.0-beta.6 (2020-07-24)
|
|
2751
|
+
|
|
2752
|
+
### Bug Fixes
|
|
2753
|
+
|
|
2754
|
+
- rename @ant-design/form -> @ant-design/pro-form ([#16](https://github.com/ant-design/pro-components/issues/16)) ([82e0b6d](https://github.com/ant-design/pro-components/commit/82e0b6d20decc4b391925d469b1c250c69ded485))
|
|
2755
|
+
- secondary typescript define ([32f8571](https://github.com/ant-design/pro-components/commit/32f8571e4e1a8007f4208736cc0aec87548b1874))
|
|
2756
|
+
- useForm not work problem ([c7a0dba](https://github.com/ant-design/pro-components/commit/c7a0dbaa99b9f5c32d37820420764662a3aeeddd))
|
|
2757
|
+
|
|
2758
|
+
### Features
|
|
2759
|
+
|
|
2760
|
+
- add new Radio form component ([#18](https://github.com/ant-design/pro-components/issues/18)) ([47c41aa](https://github.com/ant-design/pro-components/commit/47c41aa556972b0f7cbb51c164432f9f5bdbf9b0))
|
|
2761
|
+
- Group titleRender support props ([1c2e669](https://github.com/ant-design/pro-components/commit/1c2e669a7041657b43332cc97068a4f9a4bd926b))
|
|
2762
|
+
- init ProForm SearchFilter & LightFilter ([#15](https://github.com/ant-design/pro-components/issues/15)) ([1939b8d](https://github.com/ant-design/pro-components/commit/1939b8d5b76e14ce01f727304fbc75aabd46ca6e))
|
|
2763
|
+
- QueryFilter support colSize ([530b084](https://github.com/ant-design/pro-components/commit/530b084a7520a7d8aeb4e5e14f435455efe73ecb))
|
|
2764
|
+
- QueryFilter support labelWidth ([6b7d13b](https://github.com/ant-design/pro-components/commit/6b7d13bda3b040c6ff4b344fdc49ff0be53cfd9f))
|
|
2765
|
+
- support colSize ([70ab58b](https://github.com/ant-design/pro-components/commit/70ab58b8082ef87bd323a0b93871e649c02ae665))
|
|
2766
|
+
|
|
2767
|
+
# [1.0.0-beta.5](https://github.com/ant-design/pro-components/compare/@ant-design/form@1.0.0-beta.4...@ant-design/form@1.0.0-beta.5) (2020-07-16)
|
|
2768
|
+
|
|
2769
|
+
**Note:** Version bump only for package @ant-design/form
|
|
2770
|
+
|
|
2771
|
+
# [1.0.0-beta.4](https://github.com/ant-design/pro-components/compare/@ant-design/form@1.0.0-beta.3...@ant-design/form@1.0.0-beta.4) (2020-07-14)
|
|
2772
|
+
|
|
2773
|
+
**Note:** Version bump only for package @ant-design/form
|
|
2774
|
+
|
|
2775
|
+
# 1.0.0-beta.3 (2020-07-09)
|
|
2776
|
+
|
|
2777
|
+
**Note:** Version bump only for package @ant-design/form
|
|
2778
|
+
|
|
2779
|
+
# 1.0.0-beta.2 (2020-07-01)
|
|
2780
|
+
|
|
2781
|
+
**Note:** Version bump only for package @ant-design/from
|