Browse Source

Update 1.1.1 Changelog

pull/1869/head
RaoHai 9 years ago
parent
commit
7a5c6d51af
  1. 17
      CHANGELOG.md
  2. 2
      components/tag/demo/colorful.md
  3. 3
      package.json

17
CHANGELOG.md

@ -8,6 +8,23 @@ timeline: true
你也可以查看 GitHub 上的 [发布日志](https://github.com/ant-design/ant-design/releases)。
---
## 1.1.1
`2016-05-26`
- Affix
- 新增了 `onChange` 属性。当固定状态改变时回调 [#1777](https://github.com/ant-design/ant-design/issues/1777)
- 找回了从 affixStyle 中走失的 `width` 属性 [#1820](https://github.com/ant-design/ant-design/issues/1820)
- Table
- 修复了 Table 组件的分页相关的一系列问题 [#1669](https://github.com/ant-design/ant-design/issues/1669) [#1842](https://github.com/ant-design/ant-design/issues/1842)
- 修复了当有列固定在左边时,选择框不显示的问题 [#1829](https://github.com/ant-design/ant-design/issues/1829)
- 修复了当 Checkbox 的 label 为数字 0 时, label 不显示的问题 [#1811](https://github.com/ant-design/ant-design/issues/1811)
- 修复了 Tag 组件为 closeable 时,内部链接无法点击的问题 [#1862](https://github.com/ant-design/ant-design/issues/1862)
- Tab 组件新增 `hideAdd` 属性,用于关闭右边的添加按钮 [#1750](https://github.com/ant-design/ant-design/issues/1750)
- 更新了 TreeSelect 的文档 [edc9014d13b](https://github.com/ant-design/ant-design/commit/edc9014d13b)
- Input 组件的文档现在和 Form 分离。 [3c98d3](https://github.com/ant-design/ant-design/commit/3c98d3f80f4ec80066756adc3b4108141d4383ca)
- 优化了文档中 API 参数说明表格的字体 [#1824](https://github.com/ant-design/ant-design/pull/1824)
- 更新了第三方依赖
## 1.1.0

2
components/tag/demo/colorful.md

@ -11,7 +11,7 @@ import { Tag } from 'antd';
ReactDOM.render(<div>
<Tag closable color="blue">蓝色</Tag>
<Tag closable color="green">绿色</Tag>
<Tag closable color="yellow">黄色</Tag>
<Tag closable color="yellow"><a href="https://github.com/ant-design/ant-design/issues/1862">黄色</a></Tag>
<Tag closable color="red">红色</Tag>
</div>, mountNode);
````

3
package.json

@ -1,6 +1,6 @@
{
"name": "antd",
"version": "1.1.0",
"version": "1.1.1",
"title": "Ant Design",
"description": "一个 UI 设计语言",
"homepage": "http://ant.design/",
@ -36,6 +36,7 @@
"dependencies": {
"array-tree-filter": "~1.0.0",
"classnames": "~2.2.0",
"css-animation": "^1.2.5",
"gregorian-calendar": "~4.1.0",
"gregorian-calendar-format": "~4.1.0",
"normalize.css": "^4.1.1",

Loading…
Cancel
Save