Compare commits

...

6 Commits
3.3.3 ... 1.5.1

Author SHA1 Message Date
afc163
91ceb16473 1.5.1 2016-06-21 13:36:17 +08:00
afc163
490dba801f improve Table header height and scrollbar style (#2107) 2016-06-21 13:33:01 +08:00
afc163
a6994e5200 fix fixed header height 2016-06-21 13:32:51 +08:00
afc163
c5ca3f789a fix types 2016-06-21 13:32:21 +08:00
afc163
382803e82a update doc 2016-06-21 13:31:43 +08:00
afc163
f68ec5ce61 update doc 2016-06-21 13:31:32 +08:00
5 changed files with 14 additions and 5 deletions

View File

@@ -9,6 +9,13 @@ timeline: true
---
## 1.5.1
`2016-06-21`
- 修复一个 TypeScript 定义文件的语法错误。
- 修复 Table 固定表头高度和滚动条样式问题。
## 1.5.0
`2016-06-17`

View File

@@ -399,10 +399,10 @@
}
&-fixed-header &-body-inner {
overflow-y: scroll;
overflow: scroll;
}
&-fixed-header &-header {
&-fixed-header &-scroll &-header {
overflow-x: scroll;
overflow-y: hidden;
padding-bottom: 20px;

View File

@@ -88,3 +88,5 @@ import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
## 如何贡献
在任何形式的参与前,请先阅读 [贡献者文档](https://github.com/ant-design/ant-design/blob/master/.github/CONTRIBUTING.md)。有任何建议或意见您可以 [Pull Request](https://github.com/ant-design/ant-design/pulls),给我们 [报告 Bug](http://dwz.cn/2AF9ao) 或 [提问](https://github.com/ant-design/ant-design/issues)。
> 强烈推荐阅读 [《提问的智慧》](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way)、[《如何向开源社区提问题》](https://github.com/seajs/seajs/issues/545) 和 [《如何有效地报告 Bug》](http://www.chiark.greenend.org.uk/%7Esgtatham/bugs-cn.html),更好的问题更容易获得帮助。

4
index.d.ts vendored
View File

@@ -1536,7 +1536,7 @@ interface TabsProps extends React.Props<Tabs> {
/** 初始化选中面板的 key如果没有设置 activeKey*/
defaultActiveKey?:string,
/** 是否隐藏加号图标,在 `type="editable-card"` 时有效 */
hideAdd?: boolean,
hideAdd?: boolean,
/** 切换面板的回调*/
onChange?:(activeKey:string) => void,
/** tab 被点击的回调 */
@@ -1550,7 +1550,7 @@ interface TabsProps extends React.Props<Tabs> {
/** 新增和删除页签的回调,在 `type="editable-card"` 时有效*/
onEdit?:(targetKey:string, action:any) => void,
/** 大小,提供 default 和 small 两种大小 */
size? string,
size?:string,
style?:React.CSSProperties
}

View File

@@ -1,6 +1,6 @@
{
"name": "antd",
"version": "1.5.0",
"version": "1.5.1",
"title": "Ant Design",
"description": "一个 UI 设计语言",
"homepage": "http://ant.design/",