Skip to content

Commit

Permalink
chore(*): Release-1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Nov 28, 2018
1 parent 998d73b commit 25daab5
Show file tree
Hide file tree
Showing 14 changed files with 143 additions and 112 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Change Log

<a name="1.10.0"></a>
# [1.10.0](https://github.com/alibaba-fusion/next/compare/1.9.21...1.10.0) (2018-11-28)


### Bug Fixes

* **Search:** medium search will overflow box when height = s-7 ([14dfbb0](https://github.com/alibaba-fusion/next/commit/14dfbb0))
* **Search:** pass visible into Autocomplete ([9fae8fe](https://github.com/alibaba-fusion/next/commit/9fae8fe))


### Features

* **Cascader:** add useVirtual prop, open virtual scroller ([769e156](https://github.com/alibaba-fusion/next/commit/769e156))
* **CascaderSelect:** add useVirtual prop ([a2b724d](https://github.com/alibaba-fusion/next/commit/a2b724d))
* **Form:** Item support function children ([c3ced42](https://github.com/alibaba-fusion/next/commit/c3ced42))
* **Search:** divide $search-normal-corner into medium & large variable ([3903b5e](https://github.com/alibaba-fusion/next/commit/3903b5e))
* **Select:** add item from dataSource to onChange(v,e, item) ([ff0405f](https://github.com/alibaba-fusion/next/commit/ff0405f))
* **Select:** support virtuallist in simple case ([b982efe](https://github.com/alibaba-fusion/next/commit/b982efe))
* **Tag:** add selectable tag theme demos ([dfdd536](https://github.com/alibaba-fusion/next/commit/dfdd536))
* **Transfer:** Support for disabling panel operations ([40f6743](https://github.com/alibaba-fusion/next/commit/40f6743))
* **VirtualList:** add API jumpIndex ([2d137e2](https://github.com/alibaba-fusion/next/commit/2d137e2))
* **VirtualList:** add new component ([29b78f5](https://github.com/alibaba-fusion/next/commit/29b78f5))
* **VirtualList:** consider as items of the same height by default ([c9576ec](https://github.com/alibaba-fusion/next/commit/c9576ec))




<a name="1.9.21"></a>
## [1.9.21](https://github.com/alibaba-fusion/next/compare/1.9.20...1.9.21) (2018-11-27)

Expand Down
1 change: 1 addition & 0 deletions docs/cascader-select/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
| onChange | 选中值改变时触发的回调函数<br><br>**签名**:<br>Function(value: String/Array, data: Object/Array, extra: Object) => void<br>**参数**:<br>_value_: {String/Array} 选中的值,单选时返回单个值,多选时返回数组<br>_data_: {Object/Array} 选中的数据,包括 value 和 label,单选时返回单个值,多选时返回数组,父子节点选中关联时,同时选中,只返回父节点<br>_extra_: {Object} 额外参数<br>_extra.selectedPath_: {Array} 单选时选中的数据的路径<br>_extra.checked_: {Boolean} 多选时当前的操作是选中还是取消选中<br>_extra.currentData_: {Object} 多选时当前操作的数据<br>_extra.checkedData_: {Array} 多选时所有被选中的数据<br>_extra.indeterminateData_: {Array} 多选时半选的数据 | Function | - |
| defaultExpandedValue | 默认展开值,如果不设置,组件内部会根据 defaultValue/value 进行自动设置 | Array&lt;String> | - |
| expandTriggerType | 展开触发的方式<br><br>**可选值**:<br>'click', 'hover' | Enum | 'click' |
| useVirtual | 是否开启虚拟滚动 | Boolean | false |
| multiple | 是否多选 | Boolean | false |
| changeOnSelect | 是否选中即发生改变, 该属性仅在单选模式下有效 | Boolean | false |
| canOnlyCheckLeaf | 是否只能勾选叶子项的checkbox,该属性仅在多选模式下有效 | Boolean | false |
Expand Down
1 change: 1 addition & 0 deletions docs/cascader/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
| expandedValue | (受控)当前展开值 | Array&lt;String> | - |
| expandTriggerType | 展开触发的方式<br><br>**可选值**:<br>'click', 'hover' | Enum | 'click' |
| onExpand | 展开时触发的回调函数<br><br>**签名**:<br>Function(expandedValue: Array) => void<br>**参数**:<br>_expandedValue_: {Array} 各列展开值的数组 | Function | - |
| useVirtual | 是否开启虚拟滚动 | Boolean | false |
| multiple | 是否多选 | Boolean | false |
| canOnlySelectLeaf | 单选时是否只能选中叶子节点 | Boolean | false |
| canOnlyCheckLeaf | 多选时是否只能选中叶子节点 | Boolean | false |
Expand Down
Loading

0 comments on commit 25daab5

Please sign in to comment.