Skip to content

Commit

Permalink
Version 1.0.0-beta.17
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeepnschrodinger committed Apr 12, 2019
1 parent af15915 commit b9c8042
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 13 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.16
* FixedDataTable v1.0.0-beta.17
*
* 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.16
* FixedDataTable v1.0.0-beta.17
*
* 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.16
* FixedDataTable v1.0.0-beta.17
*
* 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.16
* FixedDataTable v1.0.0-beta.17
*
* 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.16
* FixedDataTable v1.0.0-beta.17
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down
7 changes: 4 additions & 3 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.16
* FixedDataTable v1.0.0-beta.17
*
* Copyright Schrodinger, LLC
* All rights reserved.
Expand Down Expand Up @@ -954,7 +954,6 @@ var Scrollbar = function (_React$PureComponent) {
onTouchEnd: this._onTouchEnd,
onTouchMove: this._onTouchMove,
onTouchStart: this._onTouchStart,
onWheel: this._wheelHandler.onWheel,
className: mainClassName,
style: mainStyle,
ref: this._onRefRoot },
Expand All @@ -979,6 +978,7 @@ var Scrollbar = function (_React$PureComponent) {
}, {
key: 'componentDidMount',
value: function componentDidMount() {
this._rootRef && this._rootRef.addEventListener('wheel', this._wheelHandler.onWheel, { passive: false });
this._mouseMoveTracker = new _DOMMouseMoveTracker2.default(this._onMouseMove, this._onMouseMoveEnd, document.documentElement, this.props.touchEnabled);

if (this.props.position !== undefined && this.state.position !== this.props.position) {
Expand All @@ -989,6 +989,7 @@ var Scrollbar = function (_React$PureComponent) {
}, {
key: 'componentWillUnmount',
value: function componentWillUnmount() {
this._rootRef && this._rootRef.removeEventListener('wheel', this._wheelHandler.onWheel, { passive: false });
this._nextState = null;
this._mouseMoveTracker.releaseMouseMoves();
if (_lastScrolledScrollbar === this) {
Expand Down Expand Up @@ -5609,7 +5610,7 @@ var FixedDataTableRoot = {
Table: _FixedDataTableContainer2.default
};

FixedDataTableRoot.version = '1.0.0-beta.16';
FixedDataTableRoot.version = '1.0.0-beta.17';
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 v1.0.0-beta.16
* FixedDataTable v1.0.0-beta.17
*
* 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.16",
"version": "1.0.0-beta.17",
"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.16';
FixedDataTableRoot.version = '1.0.0-beta.17';
module.exports = FixedDataTableRoot;

0 comments on commit b9c8042

Please sign in to comment.