Merge branch 'master' of github.com:ant-design/ant-design

This commit is contained in:
偏右 2016-04-16 00:00:26 +08:00
commit 3ea39835b1
2 changed files with 1 additions and 3 deletions

View File

@ -10,7 +10,7 @@
import { Carousel } from 'antd';
ReactDOM.render(
<Carousel autoplay="true">
<Carousel autoplay>
<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
@ -18,4 +18,3 @@ ReactDOM.render(
</Carousel>
, mountNode);
````

View File

@ -21,7 +21,6 @@
| value | 指定当前选中的条目 | string/Array<String> | 无 |
| defaultValue | 指定默认选中的条目 | string/Array<String> | 无 |
| multiple | 支持多选 | boolean | false |
| tags | 可以把随意输入的条目作为 tag输入项不需要与下拉选项匹配 | boolean |false |
| onSelect | 被选中时调用,参数为选中项的 value 值 | function(value) | 无 |
| onChange | 选中option或input的value变化(combobox 模式下)时,调用此函数 | function(value, label) | 无 |
| allowClear | 显示清除按钮 | boolean | false |