Skip to content

Commit

Permalink
Version 0.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamran Asif committed Jan 18, 2017
1 parent 25d682d commit 1d3821e
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 16 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.7.9
* FixedDataTable v0.7.10
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table-base.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.7.9
* FixedDataTable v0.7.10
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table-style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.7.9
* FixedDataTable v0.7.10
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
9 changes: 5 additions & 4 deletions dist/fixed-data-table.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v0.7.9
* FixedDataTable v0.7.10
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down Expand Up @@ -208,7 +208,7 @@ return /******/ (function(modules) { // webpackBootstrap
Table: _FixedDataTable2.default
};

FixedDataTableRoot.version = '0.7.9';
FixedDataTableRoot.version = '0.7.10';
module.exports = FixedDataTableRoot;

/***/ },
Expand Down Expand Up @@ -904,7 +904,8 @@ return /******/ (function(modules) { // webpackBootstrap
/*number*/width,
/*number*/left,
/*object*/event) {
var isFixed = !!this.state.headFixedColumns.find(function (column) {
// No native support in IE11 for find, findIndex, or includes, so using some.
var isFixed = this.state.headFixedColumns.some(function (column) {
return column.props.columnKey === columnKey;
});

Expand Down Expand Up @@ -4833,7 +4834,7 @@ return /******/ (function(modules) { // webpackBootstrap
return _React2.default.createElement('div', { className: className, style: style });
},
_renderColumnsRightShadow: function _renderColumnsRightShadow( /*number*/totalWidth) /*?object*/{
if (Math.ceil(this.props.scrollLeft + this.props.width) < totalWidth) {
if (Math.ceil(this.props.scrollLeft + this.props.width) < Math.floor(totalWidth)) {
var className = (0, _cx2.default)('fixedDataTableRowLayout/columnsShadow', 'fixedDataTableRowLayout/columnsRightShadow', 'public/fixedDataTableRow/columnsShadow', 'public/fixedDataTableRow/columnsRightShadow');
var style = {
height: this.props.height
Expand Down
2 changes: 1 addition & 1 deletion dist/fixed-data-table.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 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.7.9",
"version": "0.7.10",
"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.7.9';
FixedDataTableRoot.version = '0.7.10';
module.exports = FixedDataTableRoot;

0 comments on commit 1d3821e

Please sign in to comment.