publish 1.6.24
This commit is contained in:
parent
09b69dceb3
commit
98a3567aa8
|
@ -1195,7 +1195,7 @@ var Table = function (_Component) {
|
||||||
'div',
|
'div',
|
||||||
{ className: className, style: props.style, ref: function ref(el) {
|
{ className: className, style: props.style, ref: function ref(el) {
|
||||||
return _this6.contentTable = el;
|
return _this6.contentTable = el;
|
||||||
}, onKeyDown: this.onKeyDown, tabIndex: props.tabIndex ? props.tabIndex : '0' },
|
}, tabIndex: props.tabIndex ? props.tabIndex : '0' },
|
||||||
this.getTitle(),
|
this.getTitle(),
|
||||||
_react2["default"].createElement(
|
_react2["default"].createElement(
|
||||||
'div',
|
'div',
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bee-table",
|
"name": "bee-table",
|
||||||
"version": "1.6.23",
|
"version": "1.6.24",
|
||||||
"description": "Table ui component for react",
|
"description": "Table ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
|
|
|
@ -1063,7 +1063,7 @@ class Table extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={className} style={props.style} ref={el => this.contentTable = el} onKeyDown={this.onKeyDown} tabIndex={props.tabIndex?props.tabIndex:'0'} >
|
<div className={className} style={props.style} ref={el => this.contentTable = el} tabIndex={props.tabIndex?props.tabIndex:'0'} >
|
||||||
{this.getTitle()}
|
{this.getTitle()}
|
||||||
<div className={`${clsPrefix}-content`}>
|
<div className={`${clsPrefix}-content`}>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue