mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
docs: upgrade-nodes add 0.11 => 0.12
This commit is contained in:
parent
97894e9c80
commit
1f83809d25
@ -5,6 +5,26 @@
|
||||
|
||||
---
|
||||
|
||||
## 0.11 => 0.12
|
||||
|
||||
### 使用 Form 提供的校验功能代替 Validation
|
||||
|
||||
Validation 已经被废弃,并会在以后的版本完全移除,所以建议尽快使用 Form 自带的校验功能替换 Validation。具体使用方式可以查阅文档和例子([#1](http://ant.design/components/form/#demo-validate-basic) [#2](http://ant.design/components/form/#demo-validate-other) [#3](http://ant.design/components/form/#demo-validate-customized))。
|
||||
|
||||
### Progress `format` 属性的值改为函数
|
||||
|
||||
把使用了 `format` 属性的代码,如:
|
||||
|
||||
```jsx
|
||||
<Progress.Circle percent={100} format={<Icon type="check" />} />
|
||||
```
|
||||
|
||||
改为:
|
||||
|
||||
```jsx
|
||||
<Progress.Circle percent={100} format={(_) => <Icon type="check" />} />
|
||||
```
|
||||
|
||||
## 0.10 => 0.11
|
||||
|
||||
`0.11.x` 版本有大量更新,其中部分为不兼容更新。以下列表为其中不兼容的更新及对应升级方案。如果您在升级过程中遇到下面没有提到的情况,可以到 Github 上面咨询。
|
||||
|
Loading…
Reference in New Issue
Block a user