Skip to content

Commit

Permalink
chore(*): Release-1.19.7
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Jan 7, 2020
1 parent 010e0c8 commit b5adf54
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 9 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Change Log
# Change Log

## [1.19.7](https://github.com/alibaba-fusion/next/compare/1.19.6...1.19.7) (2020-01-07)


### Bug Fixes

* **Core:** close [#1447](https://github.com/alibaba-fusion/next/issues/1447) ([8c82065](https://github.com/alibaba-fusion/next/commit/8c82065))
* **Table:** lock columns disordered with hasBorder false, close [#1471](https://github.com/alibaba-fusion/next/issues/1471) ([03244b8](https://github.com/alibaba-fusion/next/commit/03244b8)) ([361d0a5](https://github.com/alibaba-fusion/next/commit/361d0a5))
* **Table:** make marginLeft of icon be congifurable, close [#1474](https://github.com/alibaba-fusion/next/issues/1474) ([84a0c69](https://github.com/alibaba-fusion/next/commit/84a0c69))
* **Table:** make tree&expand icon configurable ([f765ace](https://github.com/alibaba-fusion/next/commit/f765ace)) ([75a07d3](https://github.com/alibaba-fusion/next/commit/75a07d3))
* **Table:** scroll and empty content issues ([8348b6a](https://github.com/alibaba-fusion/next/commit/8348b6a))

### Features

* **Table:** support crossline ([fbe4b4e](https://github.com/alibaba-fusion/next/commit/fbe4b4e))
* **Overlay:** auto fit container, close [#1350](https://github.com/alibaba-fusion/next/issues/1350) ([010e0c8](https://github.com/alibaba-fusion/next/commit/010e0c8))


## [1.19.6](https://github.com/alibaba-fusion/next/compare/1.19.5...1.19.6) (2020-01-02)

Expand Down
15 changes: 11 additions & 4 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# Latest Log
# Latest Log

## [1.19.6](https://github.com/alibaba-fusion/next/compare/1.19.5...1.19.6) (2020-01-02)
## [1.19.7](https://github.com/alibaba-fusion/next/compare/1.19.6...1.19.7) (2020-01-07)


### Bug Fixes

* **Form:** endless loop while setValues ([85b0471](https://github.com/alibaba-fusion/next/commit/85b0471))
* **Select:** use input-disabled-color as select-disabled-color fix [#1285](https://github.com/alibaba-fusion/next/issues/1285) ([408e75c](https://github.com/alibaba-fusion/next/commit/408e75c))
* **Core:** close [#1447](https://github.com/alibaba-fusion/next/issues/1447) ([8c82065](https://github.com/alibaba-fusion/next/commit/8c82065))
* **Table:** lock columns disordered with hasBorder false, close [#1471](https://github.com/alibaba-fusion/next/issues/1471) ([03244b8](https://github.com/alibaba-fusion/next/commit/03244b8)) ([361d0a5](https://github.com/alibaba-fusion/next/commit/361d0a5))
* **Table:** make marginLeft of icon be congifurable, close [#1474](https://github.com/alibaba-fusion/next/issues/1474) ([84a0c69](https://github.com/alibaba-fusion/next/commit/84a0c69))
* **Table:** make tree&expand icon configurable ([f765ace](https://github.com/alibaba-fusion/next/commit/f765ace)) ([75a07d3](https://github.com/alibaba-fusion/next/commit/75a07d3))
* **Table:** scroll and empty content issues ([8348b6a](https://github.com/alibaba-fusion/next/commit/8348b6a))

### Features

* **Table:** support crossline ([fbe4b4e](https://github.com/alibaba-fusion/next/commit/fbe4b4e))
* **Overlay:** auto fit container, close [#1350](https://github.com/alibaba-fusion/next/issues/1350) ([010e0c8](https://github.com/alibaba-fusion/next/commit/010e0c8))

1 change: 1 addition & 0 deletions docs/table/index.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ ReactDOM.render(
| isTree | enable the tree mode of Table, the received data format contains children and renders it into a tree table. | Boolean | - |
| useVirtual | whether use virtual scroll | Boolean | - |
| onBodyScroll | callback triggered when body scroll<br><br>**signatures**:<br>Function() => void | Function | - |
| crossline | show corssline when hover,which is suitable for the scene where the header is complex and needs to be classified | Boolean | false |

### Table.Column

Expand Down
1 change: 1 addition & 0 deletions docs/table/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ ReactDOM.render(
| useVirtual | 是否开启虚拟滚动 | Boolean | - |
| onBodyScroll | 在内容区域滚动的时候触发的函数<br><br>**签名**:<br>Function() => void | Function | - |
| expandedIndexSimulate | 开启时,getExpandedColProps() / rowProps() / expandedRowRender() 的第二个参数 index (该行所对应的序列) 将按照01,2,3,4...的顺序返回,否则返回真实index(0,2,4,6... / 1,3,5,7...) | Boolean | false |
| crossline | 在 hover 时出现十字参考轴,适用于表头比较复杂,需要做表头分类的场景。 | Boolean | false |

### Table.Column

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.19.6';
next.version = '1.19.7';

module.exports = next;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.19.6",
"version": "1.19.7",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
1 change: 1 addition & 0 deletions types/overlay/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface PopupProps extends React.HTMLAttributes<HTMLElement>, CommonPro
* 弹层内容
*/
children?: React.ReactNode;
autoFit?: boolean;

/**
* 弹层当前是否显示
Expand Down
8 changes: 6 additions & 2 deletions types/table/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,12 +364,12 @@ export interface TableProps extends React.HTMLAttributes<HTMLElement>, CommonPro
* 是否开启虚拟滚动
*/
useVirtual?: boolean;

/**
* 滚动到指定行
*/
scrollToRow?: number;

/**
* 设置行高
*/
Expand All @@ -384,6 +384,10 @@ export interface TableProps extends React.HTMLAttributes<HTMLElement>, CommonPro
* 开启时,getExpandedColProps() / getRowProps() / expandedRowRender() 的第二个参数 index (该行所对应的序列) 将按照01,2,3,4...的顺序返回,否则返回真实index(0,2,4,6... / 1,3,5,7...)
*/
expandedIndexSimulate?: boolean;
/**
* 在 hover 时出现十字参考轴,适用于表头比较复杂,需要做表头分类的场景。
*/
crossline?: boolean;
}

export default class Table extends React.Component<TableProps, any> {
Expand Down

0 comments on commit b5adf54

Please sign in to comment.