publish 2.0.5
This commit is contained in:
parent
d260e127f6
commit
5cd21b63ce
|
@ -416,8 +416,12 @@ var TableHeader = function (_Component) {
|
|||
};
|
||||
|
||||
TableHeader.prototype.componentWillUnmount = function componentWillUnmount() {
|
||||
this.removeDragAbleEvent();
|
||||
this.removeDragBorderEvent();
|
||||
if (this.props.draggable) {
|
||||
this.removeDragAbleEvent();
|
||||
}
|
||||
if (this.props.dragborder) {
|
||||
this.removeDragBorderEvent();
|
||||
}
|
||||
};
|
||||
|
||||
// componentDidMount(){
|
||||
|
|
|
@ -112528,7 +112528,9 @@
|
|||
};
|
||||
|
||||
TableHeader.prototype.componentWillUnmount = function componentWillUnmount() {
|
||||
this.removeDragAbleEvent();
|
||||
if (this.props.draggable) {
|
||||
this.removeDragAbleEvent();
|
||||
}
|
||||
this.removeDragBorderEvent();
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bee-table",
|
||||
"version": "2.0.0-alpha.2",
|
||||
"version": "2.0.5",
|
||||
"description": "Table ui component for react",
|
||||
"keywords": [
|
||||
"react",
|
||||
|
@ -73,8 +73,8 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"babel-jest": "^22.0.4",
|
||||
"bee-panel":"latest",
|
||||
"bee-layout":"latest",
|
||||
"bee-panel": "latest",
|
||||
"bee-layout": "latest",
|
||||
"tinper-bee": "latest",
|
||||
"chai": "^3.5.0",
|
||||
"console-polyfill": "~0.2.1",
|
||||
|
@ -86,4 +86,4 @@
|
|||
"react-addons-test-utils": "^15.5.0",
|
||||
"react-dom": "^16.6.3"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue