Skip to content

Commit

Permalink
Version 0.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjordan committed Apr 17, 2018
1 parent a29e7ec commit bc6651d
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dist/fixed-data-table-base.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table-base.min.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table-style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table-style.min.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
11 changes: 7 additions & 4 deletions dist/fixed-data-table.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down Expand Up @@ -1657,6 +1657,9 @@ var Scrollbar = (0, _createReactClass2.default)({
zIndex: 99
};
},
faceRef: function faceRef(ref) {
this.face = ref;
},
render: function render() /*?object*/{
if (!this.state.scrollable) {
return null;
Expand Down Expand Up @@ -1728,7 +1731,7 @@ var Scrollbar = (0, _createReactClass2.default)({
style: mainStyle,
tabIndex: 0 },
_React2.default.createElement('div', {
ref: 'face',
ref: this.faceRef,
className: faceClassName,
style: faceStyle
})
Expand Down Expand Up @@ -1844,7 +1847,7 @@ var Scrollbar = (0, _createReactClass2.default)({
_onMouseDown: function _onMouseDown( /*object*/event) {
var nextState;

if (event.target !== _ReactDOM2.default.findDOMNode(this.refs.face)) {
if (event.target !== _ReactDOM2.default.findDOMNode(this.face)) {
// Both `offsetX` and `layerX` are non-standard DOM property but they are
// magically available for browsers somehow.
var nativeEvent = event.nativeEvent;
Expand Down Expand Up @@ -3294,7 +3297,7 @@ var FixedDataTableRoot = {
Table: _FixedDataTable2.default
};

FixedDataTableRoot.version = '0.8.11';
FixedDataTableRoot.version = '0.8.12';
module.exports = FixedDataTableRoot;

/***/ }),
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table.min.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.8.11
* FixedDataTable v0.8.12
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
4 changes: 2 additions & 2 deletions dist/fixed-data-table.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fixed-data-table-2",
"version": "0.8.11",
"version": "0.8.12",
"description": "A React table component designed to allow presenting thousands of rows of data.",
"main": "main.js",
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/FixedDataTableRoot.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ var FixedDataTableRoot = {
Table: FixedDataTable,
};

FixedDataTableRoot.version = '0.8.11';
FixedDataTableRoot.version = '0.8.12';
module.exports = FixedDataTableRoot;

0 comments on commit bc6651d

Please sign in to comment.