From 273b2f505d4fafdbbe769f602531a270c755a876 Mon Sep 17 00:00:00 2001 From: tanjinzhou <415800467@qq.com> Date: Wed, 27 Nov 2019 13:57:17 +0800 Subject: [PATCH] bump 1.4.7 --- CHANGELOG.en-US.md | 20 ++++++++++++++++---- CHANGELOG.zh-CN.md | 12 ++++++++++++ package.json | 4 ++-- 3 files changed, 30 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 8120ddf64..84a56515c 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -10,15 +10,26 @@ --- +## 1.4.7 + +`2019-11-27` + +- 🌟 `getPopupContainer` of`ConfigProvider` Added popup context as the second parameter for uniform configuration of `getPopupContainer` in`Modal` [7a3c88] (https://github.com/vueComponent/ant-design -vue / commit / 7a3c88107598b4b1cf6842d3254b43dc26103c14) +- 🐞 Fix `ConfigProvider` reporting error in Vue 2.5 [309baa](https://github.com/vueComponent/ant-design-vue/commit/309baa138a9c9a1885c17ef636c9132349024359) +- 🐞 Fix `Menu` click event is triggered twice [#1450](https://github.com/vueComponent/ant-design-vue/issues/1427) +- 🐞 Fix incorrect width of input box in `Select` [#1458](https://github.com/vueComponent/ant-design-vue/issues/1458) +- 🐞 Fix `Select` the problem that `placeholder` does not disappear when inputting Chinese [#1458](https://github.com/vueComponent/ant-design-vue/issues/1458#issuecomment-557477782) +- 🌟 Add the TS type declaration for the `Comment` component [#1453](https://github.com/vueComponent/ant-design-vue/pull/1453) + ## 1.4.6 `2019-11-20` - 🐞 Fix `Cascader` can't enter a space question [#1427](https://github.com/vueComponent/ant-design-vue/issues/1427) -- 🐞 Fix `AutoComplete` can't delete the last character [#1429] (https://github.com/vueComponent/ant-design-vue/issues/1427) -- 🐞 Update `dbclick` in `Tree`'s `expandAction` to `dblclick` [#1437] (https://github.com/vueComponent/ant-design-vue/issues/1437) -- 🐞 Update `dbclick` in the `Table` document to `dblclick` [#1437] (https://github.com/vueComponent/ant-design-vue/issues/1437) -- 🌟 Add the TS type declaration for the `Empty` component [#1439] (https://github.com/vueComponent/ant-design-vue/pull/1439) +- 🐞 Fix `AutoComplete` can't delete the last character [#1429](https://github.com/vueComponent/ant-design-vue/issues/1427) +- 🐞 Update `dbclick` in `Tree`'s `expandAction` to `dblclick` [#1437](https://github.com/vueComponent/ant-design-vue/issues/1437) +- 🐞 Update `dbclick` in the `Table` document to `dblclick` [#1437](https://github.com/vueComponent/ant-design-vue/issues/1437) +- 🌟 Add the TS type declaration for the `Empty` component [#1439](https://github.com/vueComponent/ant-design-vue/pull/1439) ## 1.4.5 @@ -28,6 +39,7 @@ - 🌟 `Input` `Select` `DatePicker` trigger change event after input Chinese, reducing unnecessary performance consumption [#1281](https://github.com/vueComponent/ant-design-vue/issues/1281) - 🐞 Fixed when the placeholder of `Input` `Select` is Chinese, the change event is automatically triggered under ie [#1387](https://github.com/vueComponent/ant-design-vue/issues/1387) - Tree + - 🌟 Add the `replaceFields` field to customize the `title` `children` [#1395](https://github.com/vueComponent/ant-design-vue/issues/1395) - 🌟 update event `doubleclick` to `dbclick` [5e27ff](https://github.com/vueComponent/ant-design-vue/commit/5e27ff8da4419f490ab5c6ebeaf43d933519fcd7) diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index d41dfaecb..c4a3f28ce 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -10,6 +10,17 @@ --- +## 1.4.7 + +`2019-11-27` + +- 🌟 `ConfigProvider` 的 `getPopupContainer` 新增弹窗上下文做为第二个参数,用于统一配置 `Modal` 内的 `getPopupContainer` [7a3c88](https://github.com/vueComponent/ant-design-vue/commit/7a3c88107598b4b1cf6842d3254b43dc26103c14) +- 🐞 修复 `ConfigProvider` 在 Vue 2.5 版本下报错问题 [309baa](https://github.com/vueComponent/ant-design-vue/commit/309baa138a9c9a1885c17ef636c9132349024359) +- 🐞 修复 `Menu` click 事件触发两次的问题 [#1450](https://github.com/vueComponent/ant-design-vue/issues/1427) +- 🐞 修复 `Select` 内的 input 框宽度不正确的问题 [#1458](https://github.com/vueComponent/ant-design-vue/issues/1458) +- 🐞 修复 `Select` 在输入中文时 `placeholder` 不消失的问题 [#1458](https://github.com/vueComponent/ant-design-vue/issues/1458#issuecomment-557477782) +- 🌟 添加 `Comment` 组件的 TS 类型声明 [#1453](https://github.com/vueComponent/ant-design-vue/pull/1453) + ## 1.4.6 `2019-11-20` @@ -28,6 +39,7 @@ - 🌟 `Input` `Select` `DatePicker` 输入中文完毕后触发相关事件,减少不必要的性能消耗[#1281](https://github.com/vueComponent/ant-design-vue/issues/1281) - 🐞 修复 `Input` `Select` 的 placeholder 为中文时,在 ie 下自动触发 change 事件问题 [#1387](https://github.com/vueComponent/ant-design-vue/issues/1387) - Tree + - 🌟 添加 replaceFields 字段用来自定义 title children。[#1395](https://github.com/vueComponent/ant-design-vue/issues/1395) - 🌟 更新事件 doubleclick 为 dbclick [5e27ff](https://github.com/vueComponent/ant-design-vue/commit/5e27ff8da4419f490ab5c6ebeaf43d933519fcd7) diff --git a/package.json b/package.json index aaecfe714..67e022614 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ant-design-vue", - "version": "1.4.6", + "version": "1.4.7", "title": "Ant Design Vue", "description": "An enterprise-class UI design language and Vue-based implementation", "keywords": [ @@ -219,4 +219,4 @@ "lib/**/style/*", "*.less" ] -} \ No newline at end of file +}