Skip to content

Commit 3274896

Browse files
committed
release 3.1.0-rc.6
1 parent a154ecd commit 3274896

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.en-US.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010

1111
---
1212

13+
## 3.1.0-rc.6
14+
15+
`2022-04-01`
16+
17+
- 🌟 Optimize `Table` performance, reduce the number of render times when hovering [900464](https://github.com/vueComponent/ant-design-vue/commit/900464473823277e4b06ace1c1ddc69ab3ef21d9)
18+
- 🐞 Fix `Tabs` not folding when setting addIcon [669b22](https://github.com/vueComponent/ant-design-vue/commit/669b22a54b33892c193dfd36150ae1ac2fb350dd)
19+
- 🐞 Fix `Mentions` component cannot be selected [#5432](https://github.com/vueComponent/ant-design-vue/issues/5432)
20+
- 🐞 Fix component focus and blur events do not carry event parameters, resulting in popover error [#5434](https://github.com/vueComponent/ant-design-vue/issues/5434)
21+
- 🐞 Fix `Select.Option`, when setting Tooltip, error is reported [#5307](https://github.com/vueComponent/ant-design-vue/issues/5307
22+
1323
## 3.1.0-rc.5
1424

1525
`2022-03-28`

CHANGELOG.zh-CN.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010

1111
---
1212

13+
## 3.1.0-rc.6
14+
15+
`2022-04-01`
16+
17+
- 🌟 优化 `Table` 性能,减少 hover 时 render 次数 [900464](https://github.com/vueComponent/ant-design-vue/commit/900464473823277e4b06ace1c1ddc69ab3ef21d9)
18+
- 🐞 修复 `Tabs` 在设置 addIcon 时,未折叠问题 [669b22](https://github.com/vueComponent/ant-design-vue/commit/669b22a54b33892c193dfd36150ae1ac2fb350dd)
19+
- 🐞 修复 `Mentions` 组件无法选中问题 [#5432](https://github.com/vueComponent/ant-design-vue/issues/5432)
20+
- 🐞 修复组件 focus、blur 事件未携带 event 参数,导致 popover 报错 [#5434](https://github.com/vueComponent/ant-design-vue/issues/5434)
21+
- 🐞 修复 `Select.Option`,设置 Tooltip 时,报错问题 [#5307](https://github.com/vueComponent/ant-design-vue/issues/5307)
22+
1323
## 3.1.0-rc.5
1424

1525
`2022-03-28`

components/slider/__tests__/__snapshots__/index.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ exports[`Slider should show tooltip when hovering slider handler 1`] = `
1616
<div style="position: absolute; top: 0px; left: 0px; width: 100%;">
1717
<div>
1818
<!---->
19-
<div class="ant-tooltip ant-slider-tooltip" style="pointer-events: none;">
19+
<div class="ant-tooltip ant-slider-tooltip" style="">
2020
<div class="ant-tooltip-content">
2121
<div class="ant-tooltip-arrow"><span class="ant-tooltip-arrow-content"></span></div>
2222
<div class="ant-tooltip-inner" role="tooltip">30</div>
@@ -42,7 +42,7 @@ exports[`Slider should show tooltip when hovering slider handler 2`] = `
4242
<div style="position: absolute; top: 0px; left: 0px; width: 100%;">
4343
<div>
4444
<!---->
45-
<div class="ant-tooltip ant-slider-tooltip" style="pointer-events: none; display: none;">
45+
<div class="ant-tooltip ant-slider-tooltip" style="display: none;">
4646
<div class="ant-tooltip-content">
4747
<div class="ant-tooltip-arrow"><span class="ant-tooltip-arrow-content"></span></div>
4848
<div class="ant-tooltip-inner" role="tooltip">30</div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "3.1.0-rc.5",
3+
"version": "3.1.0-rc.6",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [

0 commit comments

Comments
 (0)