From 097064a65d51d50c3b45e5108a379574c721bfbc Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Sat, 29 Sep 2018 15:24:47 +0800 Subject: [PATCH] docs: add 1.1.4 changelog --- CHANGELOG.en-US.md | 8 ++++++++ CHANGELOG.zh-CN.md | 7 +++++++ components/tree/index.en-US.md | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 28fb07555..be1b0faca 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -2,6 +2,14 @@ --- +## 1.1.4 + +`2018-09-29` +- 🛠 Refactor the `vc-tree` component and add a directory tree component +- 🐞 Fix `tabs` component property `tabBarGutter` does not work [#205](https://github.com/vueComponent/ant-design-vue/issues/205) +- 🐞 Fix `table` component data synchronization error [#202](https://github.com/vueComponent/ant-design-vue/issues/202) + + ## 1.1.3 `2018-09-22` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index d4299399a..57b71b9fa 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -2,6 +2,13 @@ --- +## 1.1.4 + +`2018-09-29` +- 🛠 重构`vc-tree`组件,并新增目录树组件 +- 🐞 修复`tabs`组件属性`tabBarGutter`不生效问题 [#205](https://github.com/vueComponent/ant-design-vue/issues/205) +- 🐞 修复`table`组件数据同步出错问题 [#202](https://github.com/vueComponent/ant-design-vue/issues/202) + ## 1.1.3 `2018-09-22` diff --git a/components/tree/index.en-US.md b/components/tree/index.en-US.md index c3e64fdaf..32af7c586 100644 --- a/components/tree/index.en-US.md +++ b/components/tree/index.en-US.md @@ -5,7 +5,7 @@ | Property | Description | Type | Default | | -------- | ----------- | ---- | ------- | -| treeNodes | treeNode of tree | array | - | +| treeData | treeNode of tree, please use `treeNodes` before v1.1.4 | array | - | | autoExpandParent | Whether to automatically expand a parent treeNode | boolean | true | | checkable | Adds a `Checkbox` before the treeNodes | boolean | false | | checkedKeys(v-model) | (Controlled) Specifies the keys of the checked treeNodes (PS: When this specifies the key of a treeNode which is also a parent treeNode, all the children treeNodes of will be checked; and vice versa, when it specifies the key of a treeNode which is a child treeNode, its parent treeNode will also be checked. When `checkable` and `checkStrictly` is true, its object has `checked` and `halfChecked` property. Regardless of whether the child or parent treeNode is checked, they won't impact each other. | string\[] \| {checked: string\[], halfChecked: string\[]} | \[] |