From fcaedc525a7fd6575865fcf56d8a3a99ff998f2e Mon Sep 17 00:00:00 2001 From: tanjinzhou <415800467@qq.com> Date: Thu, 10 Dec 2020 20:06:48 +0800 Subject: [PATCH] bump 2.0.0-rc.4 --- CHANGELOG.en-US.md | 10 ++++++++++ CHANGELOG.zh-CN.md | 12 +++++++++++- components/input/Password.tsx | 1 + package.json | 4 ++-- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 8ed757b82..450df5e6a 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -10,6 +10,16 @@ --- +## 2.0.0-rc.4 + +`2020-12-10` + +- 🌟 Input.Password supports custom icons [#3320](https://github.com/vueComponent/ant-design-vue/issues/3320) +- 🐞 Fix the issue that the Select Option click event does not trigger [#4ea00d](https://github.com/vueComponent/ant-design-vue/commit/4ea00d3a70d0afd7bea07f814df03ab7d0b25ebd) +- 🐞 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) +- 🐞 Fix Menu console vue key some waring [#520d6a](https://github.com/vueComponent/ant-design-vue/commit/520d6a5e85eb391e5294211c9d7b2ea598c59119) +- 🐞 Remove console passive prompt log [#8d1669](https://github.com/vueComponent/ant-design-vue/commit/8d1669b8896d84a67c61d3a00d0b13c42d70f30f) + ## 2.0.0-rc.3 `2020-12-05` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 87c313df6..e3ddd4d38 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -10,12 +10,22 @@ --- +## 2.0.0-rc.4 + +`2020-12-10` + +- 🌟 Input.Password 支持自定义图标 [#3320](https://github.com/vueComponent/ant-design-vue/issues/3320) +- 🐞 修复 Select Option click 事件不触发问题 [#4ea00d](https://github.com/vueComponent/ant-design-vue/commit/4ea00d3a70d0afd7bea07f814df03ab7d0b25ebd) +- 🐞 修复 Menu 超出宽度后 dark 主题不生效问题 [#10f35a](https://github.com/vueComponent/ant-design-vue/commit/10f35a1fa510de91e9484b07fcfff253920cee29) +- 🐞 修复 Menu 控制台 vue key some waring [#520d6a](https://github.com/vueComponent/ant-design-vue/commit/520d6a5e85eb391e5294211c9d7b2ea598c59119) +- 🐞 移除控制台 passive 提示日志 [#8d1669](https://github.com/vueComponent/ant-design-vue/commit/8d1669b8896d84a67c61d3a00d0b13c42d70f30f) + ## 2.0.0-rc.3 `2020-12-05` - 🐞 修复函数式组件在 Vue 3.0.3 下报类型错误问题 [#f5cf7e](https://github.com/vueComponent/ant-design-vue/commit/f5cf7e0920a51f0ac024046996c99260aa41becf) -- 🐞 修复 Menu 查出宽度后显示错误问题 [#3262](https://github.com/vueComponent/ant-design-vue/issues/3262) +- 🐞 修复 Menu 超出宽度后显示错误问题 [#3262](https://github.com/vueComponent/ant-design-vue/issues/3262) - 🐞 修复 Menu subMenuOpenDelay subMenuCloseDelay 不生效问题 [#3291](https://github.com/vueComponent/ant-design-vue/pull/3291) - 🐞 修复 TreeSelect 堆栈溢出问题 [#28aeea](https://github.com/vueComponent/ant-design-vue/commit/28aeea6f0b142ed68950a3738f7cf2c1581a7a5b) - 🐞 修复 Input 自定义 style class 被覆盖问题 [#3273](https://github.com/vueComponent/ant-design-vue/issues/3273) diff --git a/components/input/Password.tsx b/components/input/Password.tsx index d1a428a6b..f48905533 100644 --- a/components/input/Password.tsx +++ b/components/input/Password.tsx @@ -87,6 +87,7 @@ export default defineComponent({ suffix, action, visibilityToggle, + iconRender, ...restProps } = getOptionProps(this); const { class: className } = this.$attrs; diff --git a/package.json b/package.json index 55955560e..2a26b0aad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ant-design-vue", - "version": "2.0.0-rc.3", + "version": "2.0.0-rc.4", "title": "Ant Design Vue", "description": "An enterprise-class UI design language and Vue-based implementation", "keywords": [ @@ -202,7 +202,7 @@ }, "dependencies": { "@ant-design-vue/use": "^0.0.1-0", - "@ant-design/icons-vue": "^5.1.6", + "@ant-design/icons-vue": "^5.1.7", "@babel/runtime": "^7.10.5", "@simonwep/pickr": "~1.7.0", "add-dom-event-listener": "^1.0.2",