Merge branch 'develop-0.12.0' of github.com:ant-design/ant-design into develop-0.12.0

This commit is contained in:
yiminghe 2016-01-14 23:23:39 +08:00
commit f743aa009b
8 changed files with 17 additions and 10 deletions

View File

@ -20,7 +20,7 @@
| 参数 | 说明 | 类型 | 默认值 |
|-----------|------------------------------------------|---------------|--------|
| trigger | 触发行为,可选 `hover/focus/click` | string | hover |
| placement | 气泡框位置,可选 `top/left/right/bottom/topLeft/topRight/bottomLeft/bottomRight/leftTop/leftBottom/rightTop/rightBottom` | string | top |
| placement | 气泡框位置,可选 `top/left/right/bottom` `topLeft/topRight/bottomLeft/bottomRight` `leftTop/leftBottom/rightTop/rightBottom` | string | top |
| title | 卡片标题 | React.Element | 无 |
| overlay | 卡片内容 | React.Element | 无 |
| prefixCls | 浮层的类名 | string | ant-popover |

View File

@ -17,6 +17,6 @@ ReactDOM.render(<div>
<Tag>标签一</Tag>
<Tag>标签二</Tag>
<Tag closable onClose={onClose}>标签三</Tag>
<Tag href="http://www.baidu.com">标签四(链接)</Tag>
<a href="https://www.alipay.com/" target="_blank"><Tag>标签四(链接)</Tag></a>
</div>, mountNode);
````

View File

@ -45,7 +45,7 @@ class AntTag extends React.Component {
transitionName={this.props.prefixCls + '-zoom'}
onEnd={this.animationEnd.bind(this)}>
<div data-show={!this.state.closing} className={className}>
<a className={this.props.prefixCls + '-text'} {...this.props} />
<span className={this.props.prefixCls + '-text'} {...this.props} />
{close}
</div>
</Animate>

View File

@ -17,7 +17,6 @@
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|----------------|--------------------------------|------------|---------|--------|
| href | 链接的地址,会传给 a 标签 | string | | false |
| closable | 标签是否可以关闭 | boolean | | false |
| onClose | 组合时根据此项判定checked | function | | 无 |
| color | 标签的色彩 | string | blue green yellow red | 无 |

View File

@ -1,14 +1,16 @@
# TreeSelect
- category: Components
- chinese: 树选择控件
- chinese: 树选择
- type: 表单
---
树型选择控件。
## 何时使用
当需要从树控件中灵活地筛选数据时
类似 Select 的选择控件,可选择的数据结构是一个树形结构时,可以使用 TreeSelect例如公司层级、学科系统、分类目录等等。
## API

View File

@ -23,6 +23,7 @@
| name | 可选参数, 上传的文件 | String | file |
| action | 必选参数, 上传的地址 | String | 无 |
| data | 可选参数, 上传所需参数 | Object | 无 |
| headers | 可选参数, 设置上传的请求头部IE10 以上有效 | Object | 无 |
| showUploadList | 可选参数, 是否展示 uploadList, 默认开启 | Boolean | true |
| multiple | 可选参数, 是否支持多选文件,`ie10+` 支持。开启后按住 ctrl 可选择多个文件。 | Boolean | false |
| accept | 可选参数, 接受上传的文件类型, 详见 input accept Attribute | String | 无 |

View File

@ -64,7 +64,7 @@
"rc-tree": "~0.26.1",
"rc-tree-select": "~0.3.3",
"rc-trigger": "~1.0.6",
"rc-upload": "~1.7.0",
"rc-upload": "~1.8.0",
"rc-util": "~3.0.1",
"react-slick": "~0.9.1",
"semver": "~5.1.0",

View File

@ -158,9 +158,9 @@
&-picture &-item-thumbnail {
width: 48px;
height: 48px;
display: inline-block;
overflow: hidden;
vertical-align: middle;
position: absolute;
top: 8px;
left: 8px;
}
&-picture &-item-thumbnail img {
@ -182,6 +182,11 @@
margin: 0 0 0 8px;
line-height: 42px;
transition: all 0.3s ease;
padding-left: 48px;
padding-right: 8px;
max-width: 100%;
display: inline-block;
box-sizing: border-box;
}
&-picture &-item-uploading &-item-name {