publish 2.2.12

This commit is contained in:
yangchch6 2019-09-19 15:50:30 +08:00
parent 7f93dc5683
commit 9cd84f5381
7 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,8 @@
<a name="2.2.12"></a>
## [2.2.12](https://github.com/tinper-bee/bee-table/compare/v2.2.11...v2.2.12) (2019-09-19)
<a name="2.2.11"></a>
## [2.2.11](https://github.com/tinper-bee/bee-table/compare/v2.2.10...v2.2.11) (2019-09-09)

View File

@ -395,7 +395,7 @@ var Table = function (_Component) {
this.scrollTop = this.bodyTable.scrollTop;
}
} else if (nextProps.children !== this.props.children) {
this.columnManager.reset(null, nextProps.children, this.porps.showRowNum); // 加入this.props.showRowNum参数
this.columnManager.reset(null, nextProps.children, this.props.showRowNum); // 加入this.props.showRowNum参数
}
//适配lazyload
if (nextProps.scrollTop > -1) {

File diff suppressed because one or more lines are too long

5
dist/demo.js vendored

File diff suppressed because one or more lines are too long

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "bee-table",
"version": "2.2.11",
"version": "2.2.12",
"description": "Table ui component for react",
"keywords": [
"react",

View File

@ -210,7 +210,7 @@ class Table extends Component {
this.scrollTop = this.bodyTable.scrollTop;
}
} else if (nextProps.children !== this.props.children) {
this.columnManager.reset(null, nextProps.children,this.porps.showRowNum); // 加入this.props.showRowNum参数
this.columnManager.reset(null, nextProps.children,this.props.showRowNum); // 加入this.props.showRowNum参数
}
//适配lazyload
if(nextProps.scrollTop > -1){