Skip to content

Commit d801118

Browse files
committed
Version 0.8.15
1 parent a938eb7 commit d801118

10 files changed

+18
-16
lines changed

dist/fixed-data-table-base.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.

dist/fixed-data-table-base.min.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.

dist/fixed-data-table-style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.

dist/fixed-data-table-style.min.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.

dist/fixed-data-table.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.

dist/fixed-data-table.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.
@@ -1767,8 +1767,7 @@ var Scrollbar = (0, _createReactClass2.default)({
17671767
onWheel: this._wheelHandler.onWheel,
17681768
className: mainClassName,
17691769
ref: this.rootRef,
1770-
style: mainStyle,
1771-
tabIndex: 0 },
1770+
style: mainStyle },
17721771
_React2.default.createElement('div', {
17731772
ref: this.faceRef,
17741773
className: faceClassName,
@@ -3349,7 +3348,7 @@ var FixedDataTableRoot = {
33493348
Table: _FixedDataTable2.default
33503349
};
33513350

3352-
FixedDataTableRoot.version = '0.8.14';
3351+
FixedDataTableRoot.version = '0.8.15';
33533352
module.exports = FixedDataTableRoot;
33543353

33553354
/***/ }),
@@ -4138,12 +4137,15 @@ var FixedDataTable = (0, _createReactClass2.default)({
41384137
style: { top: footOffsetTop }
41394138
});
41404139
}
4141-
4140+
var tabIndex = null;
4141+
if (this.props.keyboardPageEnabled || this.props.keyboardScrollEnabled) {
4142+
tabIndex = 0;
4143+
}
41424144
return _React2.default.createElement(
41434145
'div',
41444146
{
41454147
className: (0, _joinClasses2.default)(this.state.className, (0, _cx2.default)('fixedDataTableLayout/main'), (0, _cx2.default)('public/fixedDataTable/main')),
4146-
tabIndex: 0,
4148+
tabIndex: tabIndex,
41474149
onKeyDown: this._onKeyDown,
41484150
onWheel: this._wheelHandler.onWheel,
41494151
onTouchStart: this._touchHandler.onTouchStart,

dist/fixed-data-table.min.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.8.14
2+
* FixedDataTable v0.8.15
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.

dist/fixed-data-table.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fixed-data-table-2",
3-
"version": "0.8.14",
3+
"version": "0.8.15",
44
"description": "A React table component designed to allow presenting thousands of rows of data.",
55
"main": "main.js",
66
"peerDependencies": {

src/FixedDataTableRoot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ var FixedDataTableRoot = {
2323
Table: FixedDataTable,
2424
};
2525

26-
FixedDataTableRoot.version = '0.8.14';
26+
FixedDataTableRoot.version = '0.8.15';
2727
module.exports = FixedDataTableRoot;

0 commit comments

Comments
 (0)