diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index fc480395f7..c3c3f0838c 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -9,6 +9,32 @@ If you want to read change logs before `2.0.0`, please visit [GitHub](https://gi --- +## 2.6.0 + +`2017-1-2` + +- Brand new color system. [pull/4426](https://github.com/ant-design/ant-design/pull/4426) + - Brand new color palattes. + - Brand new color algorithm replacing the tint/shade system. + - Change default font color. +- Add Grid playground demo. [commit/ee17ab](https://github.com/ant-design/ant-design/commit/ee17abfa9d0362c6f9baab4a9a09e57574583246) +- Add Layout component. [#3534](https://github.com/ant-design/ant-design/issues/3534) +- Input + - Support prefix and suffix. [#4226](https://github.com/ant-design/ant-design/issues/4226) [@ystarlongzi](https://github.com/ystarlongzi) + - InputGroup support compact display mode. [pull/4309](https://github.com/ant-design/ant-design/pull/4309) +- Spin support delayed display. [#4306](https://github.com/ant-design/ant-design/issues/4306) +- Fix the dislocation problem of Pagination in low resolution. [#4349](https://github.com/ant-design/ant-design/issues/4349) +- Fix wrapping display of Dropdown.Button. [pull/4355](https://github.com/ant-design/ant-design/pull/4355) [@Morhaus](https://github.com/Morhaus) +- Fix wrong background color of Cascader in disabled status. [#4434](https://github.com/ant-design/ant-design/issues/4434) +- Fix MonthPicker[monthCellContentRender] doesn't work, and some documentation errors. [#4394](https://github.com/ant-design/ant-design/issues/4394) +- Fix the extra border of ButtonGroup. [#4382](https://github.com/ant-design/ant-design/pull/4382) [@ystarlongzi](https://github.com/ystarlongzi) +- Fix wrong background color of the Submenu(horizontal mode). [#4414](https://github.com/ant-design/ant-design/issues/4414) +- Fix overlapping graphics with Select/Cascader in Form.Item with hasFeedback. [#4431](https://github.com/ant-design/ant-design/issues/4431) [@JesperWe](https://github.com/JesperWe) +- Reset border-radius of the first row in Table without header. [#4373](https://github.com/ant-design/ant-design/issues/4373) +- Improve the drag performance of Tree. [#4371](https://github.com/ant-design/ant-design/issues/4371) +- Improve official website and documentation, fix some bugs. +- Update rc-form to support nested style of getFieldDecorator[id]. + ## 2.5.3 `2016-12-24` 🎄🎄🎄 diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 38780e37a3..13420d3e15 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -9,6 +9,32 @@ timeline: true --- +## 2.6.0 + +`2017-1-2` + +- 采用全新的色彩系统。[pull/4426](https://github.com/ant-design/ant-design/pull/4426) + - 全新的调色板系统 + - 使用新的算法函数代替 shade,tint + - 调整默认文字颜色 +- 增加 Grid 栅格配置器示例。[commit/ee17ab](https://github.com/ant-design/ant-design/commit/ee17abfa9d0362c6f9baab4a9a09e57574583246) +- 增加 Layout 布局组件。[#3534](https://github.com/ant-design/ant-design/issues/3534) +- Input + - 增加 prefix 和 suffix 属性,支持前后缀配置。[#4226](https://github.com/ant-design/ant-design/issues/4226) [@ystarlongzi](https://github.com/ystarlongzi) + - InputGroup 增加 compact 属性,支持紧凑型展示。[pull/4309](https://github.com/ant-design/ant-design/pull/4309) +- Spin 增加延迟显示属性 delay。[#4306](https://github.com/ant-design/ant-design/issues/4306) +- 修复 Pagination 在低分辨率下的错位问题。[#4349](https://github.com/ant-design/ant-design/issues/4349) +- 修复 Dropdown.Button 换行的问题。[pull/4355](https://github.com/ant-design/ant-design/pull/4355) [@Morhaus](https://github.com/Morhaus) +- 修复 Cascader disabled 状态底色的问题。[#4434](https://github.com/ant-design/ant-design/issues/4434) +- 修复 MonthPicker monthCellContentRender 属性无效的问题,并修正了错误的文档。[#4394](https://github.com/ant-design/ant-design/issues/4394) +- 修复 ButtonGroup 存在多余蓝色边框的问题。[#4382](https://github.com/ant-design/ant-design/pull/4382) [@ystarlongzi](https://github.com/ystarlongzi) +- 修复 Menu horizontal 模式子菜单选择项背景色错误的问题。[#4414](https://github.com/ant-design/ant-design/issues/4414) +- 修复配置了 hasFeedback 的 Select/Cascader 下拉箭头被遮盖的问题。[#4431](https://github.com/ant-design/ant-design/issues/4431) [@JesperWe](https://github.com/JesperWe) +- Table 没有 header 时,第一行改为非圆角。[#4373](https://github.com/ant-design/ant-design/issues/4373) +- 优化 Tree 的拖拽效果。[#4371](https://github.com/ant-design/ant-design/issues/4371) +- 进行了一些文档或示例优化、文档错误修正以及网站样式问题修复。 +- 升级 rc-form 底层依赖,getFieldDecorator 的 id 支持嵌套式写法。 + ## 2.5.3 `2016-12-24` 🎄🎄🎄 diff --git a/package.json b/package.json index ed1d4a0639..7fa02ffb07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "antd", - "version": "2.5.3", + "version": "2.6.0", "title": "Ant Design", "description": "An enterprise-class UI design language and React-based implementation", "homepage": "http://ant.design/",