mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-09 10:59:19 +08:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
91ceb16473 | ||
|
|
490dba801f | ||
|
|
a6994e5200 | ||
|
|
c5ca3f789a | ||
|
|
382803e82a | ||
|
|
f68ec5ce61 |
@@ -9,6 +9,13 @@ timeline: true
|
||||
|
||||
---
|
||||
|
||||
## 1.5.1
|
||||
|
||||
`2016-06-21`
|
||||
|
||||
- 修复一个 TypeScript 定义文件的语法错误。
|
||||
- 修复 Table 固定表头高度和滚动条样式问题。
|
||||
|
||||
## 1.5.0
|
||||
|
||||
`2016-06-17`
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
4
index.d.ts
vendored
@@ -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
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "antd",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"title": "Ant Design",
|
||||
"description": "一个 UI 设计语言",
|
||||
"homepage": "http://ant.design/",
|
||||
|
||||
Reference in New Issue
Block a user