Skip to content

Commit 722f3f2

Browse files
committed
release 3.2.0
1 parent 7bbf6d5 commit 722f3f2

File tree

5 files changed

+45
-3
lines changed

5 files changed

+45
-3
lines changed

CHANGELOG.en-US.md

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@
1010

1111
---
1212

13+
## 3.2.0
14+
15+
`2022-04-19`
16+
17+
- 🌟 `InputNumber` supports lazy modifier
18+
- 🌟 `Image` add `previewMask` property, `error` event [#5479](https://github.com/vueComponent/ant-design-vue/issues/5479)
19+
- 🌟 `Modal` style supports string type [#5449](https://github.com/vueComponent/ant-design-vue/issues/5449)
20+
- 🌟 `Cascader` supports `clearIcon`, `removeIcon` slots
21+
- 🌟 Optimize `DatePicker` panel switching logic [#5488](https://github.com/vueComponent/ant-design-vue/issues/5488)
22+
- 🐞 Fix `Cascader` not automatically correcting the popup position [#5482](https://github.com/vueComponent/ant-design-vue/issues/5482)
23+
- 🐞 `Tabs` left, right direction disable animation [#5464](https://github.com/vueComponent/ant-design-vue/issues/5464)
24+
- 🐞 `TimeRangePicker` value ts type supports string
25+
- 🐞 `Tree` supports deep monitoring [#5480](https://github.com/vueComponent/ant-design-vue/issues/5480)
26+
- 🐞 Fix `Table` not showing virtual scroll bar when keepalive active
27+
- 🐞 Fix `Input` size warning [#5508](https://github.com/vueComponent/ant-design-vue/issues/5508)
28+
1329
## 3.1.1
1430

1531
`2022-04-06`

CHANGELOG.zh-CN.md

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@
1010

1111
---
1212

13+
## 3.2.0
14+
15+
`2022-04-19`
16+
17+
- 🌟 `InputNumber` 支持 lazy 修饰符
18+
- 🌟 `Image` 新增 `previewMask` 属性, `error`事件 [#5479](https://github.com/vueComponent/ant-design-vue/issues/5479)
19+
- 🌟 `Modal` style 支持字符串类型 [#5449](https://github.com/vueComponent/ant-design-vue/issues/5449)
20+
- 🌟 `Cascader` 支持 `clearIcon``removeIcon` 插槽
21+
- 🌟 优化 `DatePicker` 面板切换逻辑 [#5488](https://github.com/vueComponent/ant-design-vue/issues/5488)
22+
- 🐞 修复 `Cascader` 没有自动修正弹窗位置 [#5482](https://github.com/vueComponent/ant-design-vue/issues/5482)
23+
- 🐞 `Tabs` left、right 方向禁止动画 [#5464](https://github.com/vueComponent/ant-design-vue/issues/5464)
24+
- 🐞 `TimeRangePicker` value ts type 支持 string
25+
- 🐞 `Tree` 支持深度监听 [#5480](https://github.com/vueComponent/ant-design-vue/issues/5480)
26+
- 🐞 修复 `Table` 在 keepalive 激活时未显示虚拟滚动条
27+
- 🐞 修复 `Input` size warning [#5508](https://github.com/vueComponent/ant-design-vue/issues/5508)
28+
1329
## 3.1.1
1430

1531
`2022-04-06`

components/image/index.en-US.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ Previewable image.
2424
| src | Image path | string | - | 2.0.0 |
2525
| previewMask | custom mask | slot | - | 3.2.0 |
2626
| width | Image width | string \| number | - | 2.0.0 |
27-
| onError | Load failed callback | (event: Event) => void | - | 3.2.0 |
27+
28+
### events
29+
30+
| Events Name | Description | Arguments | Version |
31+
| ----------- | -------------------- | ---------------------- | ------- |
32+
| error | Load failed callback | (event: Event) => void | 3.2.0 |
2833

2934
### previewType
3035

components/image/index.zh-CN.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ cover: https://gw.alipayobjects.com/zos/antfincdn/D1dXz9PZqa/image.svg
2525
| src | 图片地址 | string | - | 2.0.0 |
2626
| previewMask | 自定义 mask | slot | - | 3.2.0 |
2727
| width | 图像宽度 | string \| number | - | 2.0.0 |
28-
| onError | 加载错误回调 | (event: Event) => void | - | 3.2.0 |
28+
29+
### 事件
30+
31+
| 事件名称 | 说明 | 回调参数 | 版本 |
32+
| -------- | ------------ | ---------------------- | ----- |
33+
| error | 加载错误回调 | (event: Event) => void | 3.2.0 |
2934

3035
### previewType
3136

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)