Skip to content

Commit

Permalink
Version 1.0.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjordan committed Sep 8, 2017
1 parent feaaa9a commit 7bbb7b4
Show file tree
Hide file tree
Showing 10 changed files with 16 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 v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* 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 v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* 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 v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* 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 v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* 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 v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
12 changes: 6 additions & 6 deletions dist/fixed-data-table.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* FixedDataTable v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down Expand Up @@ -5390,7 +5390,7 @@ var FixedDataTableRoot = {
Table: _FixedDataTableContainer2.default
};

FixedDataTableRoot.version = '1.0.0-beta.2';
FixedDataTableRoot.version = '1.0.0-beta.3';
module.exports = FixedDataTableRoot;

/***/ }),
Expand Down Expand Up @@ -14056,12 +14056,12 @@ function setStateFromProps(state, props) {

var newState = _extends({}, state, { columnGroupProps: columnGroupProps, columnProps: columnProps, elementTemplates: elementTemplates });

_extends(newState.elementHeights, (0, _pick2.default)(props, ['footerHeight', 'groupHeaderHeight', 'headerHeight']));
newState.elementHeights = _extends({}, newState.elementHeights, (0, _pick2.default)(props, ['footerHeight', 'groupHeaderHeight', 'headerHeight']));
if (!useGroupHeader) {
newState.elementHeights.groupHeaderHeight = 0;
}

_extends(newState.rowSettings, (0, _pick2.default)(props, ['bufferRowCount', 'rowHeight', 'rowsCount', 'subRowHeight']));
newState.rowSettings = _extends({}, newState.rowSettings, (0, _pick2.default)(props, ['bufferRowCount', 'rowHeight', 'rowsCount', 'subRowHeight']));
var _newState$rowSettings = newState.rowSettings,
rowHeight = _newState$rowSettings.rowHeight,
subRowHeight = _newState$rowSettings.subRowHeight;
Expand All @@ -14073,9 +14073,9 @@ function setStateFromProps(state, props) {
return subRowHeight || 0;
};

_extends(newState.scrollFlags, (0, _pick2.default)(props, ['overflowX', 'overflowY', 'showScrollbarX', 'showScrollbarY']));
newState.scrollFlags = _extends({}, newState.scrollFlags, (0, _pick2.default)(props, ['overflowX', 'overflowY', 'showScrollbarX', 'showScrollbarY']));

_extends(newState.tableSize, (0, _pick2.default)(props, ['height', 'maxHeight', 'ownerHeight', 'width']));
newState.tableSize = _extends({}, newState.tableSize, (0, _pick2.default)(props, ['height', 'maxHeight', 'ownerHeight', 'width']));
newState.tableSize.useMaxHeight = newState.tableSize.height === undefined;

return newState;
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 v1.0.0-beta.2
* FixedDataTable v1.0.0-beta.3
*
* 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": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"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: FixedDataTableContainer,
};

FixedDataTableRoot.version = '1.0.0-beta.2';
FixedDataTableRoot.version = '1.0.0-beta.3';
module.exports = FixedDataTableRoot;

0 comments on commit 7bbb7b4

Please sign in to comment.