Skip to content

Commit fcaedc5

Browse files
committed
bump 2.0.0-rc.4
1 parent a65416a commit fcaedc5

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.en-US.md

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

1111
---
1212

13+
## 2.0.0-rc.4
14+
15+
`2020-12-10`
16+
17+
- 🌟 Input.Password supports custom icons [#3320](https://github.com/vueComponent/ant-design-vue/issues/3320)
18+
- 🐞 Fix the issue that the Select Option click event does not trigger [#4ea00d](https://github.com/vueComponent/ant-design-vue/commit/4ea00d3a70d0afd7bea07f814df03ab7d0b25ebd)
19+
- 🐞 Fix the problem that the dark theme does not work after the Menu exceeds the width [#10f35a](https://github.com/vueComponent/ant-design-vue/commit/10f35a1fa510de91e9484b07fcfff253920cee29)
20+
- 🐞 Fix Menu console vue key some waring [#520d6a](https://github.com/vueComponent/ant-design-vue/commit/520d6a5e85eb391e5294211c9d7b2ea598c59119)
21+
- 🐞 Remove console passive prompt log [#8d1669](https://github.com/vueComponent/ant-design-vue/commit/8d1669b8896d84a67c61d3a00d0b13c42d70f30f)
22+
1323
## 2.0.0-rc.3
1424

1525
`2020-12-05`

CHANGELOG.zh-CN.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,22 @@
1010

1111
---
1212

13+
## 2.0.0-rc.4
14+
15+
`2020-12-10`
16+
17+
- 🌟 Input.Password 支持自定义图标 [#3320](https://github.com/vueComponent/ant-design-vue/issues/3320)
18+
- 🐞 修复 Select Option click 事件不触发问题 [#4ea00d](https://github.com/vueComponent/ant-design-vue/commit/4ea00d3a70d0afd7bea07f814df03ab7d0b25ebd)
19+
- 🐞 修复 Menu 超出宽度后 dark 主题不生效问题 [#10f35a](https://github.com/vueComponent/ant-design-vue/commit/10f35a1fa510de91e9484b07fcfff253920cee29)
20+
- 🐞 修复 Menu 控制台 vue key some waring [#520d6a](https://github.com/vueComponent/ant-design-vue/commit/520d6a5e85eb391e5294211c9d7b2ea598c59119)
21+
- 🐞 移除控制台 passive 提示日志 [#8d1669](https://github.com/vueComponent/ant-design-vue/commit/8d1669b8896d84a67c61d3a00d0b13c42d70f30f)
22+
1323
## 2.0.0-rc.3
1424

1525
`2020-12-05`
1626

1727
- 🐞 修复函数式组件在 Vue 3.0.3 下报类型错误问题 [#f5cf7e](https://github.com/vueComponent/ant-design-vue/commit/f5cf7e0920a51f0ac024046996c99260aa41becf)
18-
- 🐞 修复 Menu 查出宽度后显示错误问题 [#3262](https://github.com/vueComponent/ant-design-vue/issues/3262)
28+
- 🐞 修复 Menu 超出宽度后显示错误问题 [#3262](https://github.com/vueComponent/ant-design-vue/issues/3262)
1929
- 🐞 修复 Menu subMenuOpenDelay subMenuCloseDelay 不生效问题 [#3291](https://github.com/vueComponent/ant-design-vue/pull/3291)
2030
- 🐞 修复 TreeSelect 堆栈溢出问题 [#28aeea](https://github.com/vueComponent/ant-design-vue/commit/28aeea6f0b142ed68950a3738f7cf2c1581a7a5b)
2131
- 🐞 修复 Input 自定义 style class 被覆盖问题 [#3273](https://github.com/vueComponent/ant-design-vue/issues/3273)

components/input/Password.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export default defineComponent({
8787
suffix,
8888
action,
8989
visibilityToggle,
90+
iconRender,
9091
...restProps
9192
} = getOptionProps(this);
9293
const { class: className } = this.$attrs;

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-design-vue",
3-
"version": "2.0.0-rc.3",
3+
"version": "2.0.0-rc.4",
44
"title": "Ant Design Vue",
55
"description": "An enterprise-class UI design language and Vue-based implementation",
66
"keywords": [
@@ -202,7 +202,7 @@
202202
},
203203
"dependencies": {
204204
"@ant-design-vue/use": "^0.0.1-0",
205-
"@ant-design/icons-vue": "^5.1.6",
205+
"@ant-design/icons-vue": "^5.1.7",
206206
"@babel/runtime": "^7.10.5",
207207
"@simonwep/pickr": "~1.7.0",
208208
"add-dom-event-listener": "^1.0.2",

0 commit comments

Comments
 (0)