Skip to content

Commit 1b057a8

Browse files
author
Kamran Asif
committed
Version 0.6.5
1 parent 6156358 commit 1b057a8

10 files changed

+20
-15
lines changed

Diff for: dist/fixed-data-table-base.css

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

Diff for: dist/fixed-data-table-base.min.css

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

Diff for: dist/fixed-data-table-style.css

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

Diff for: dist/fixed-data-table-style.min.css

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

Diff for: dist/fixed-data-table.css

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

Diff for: dist/fixed-data-table.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* FixedDataTable v0.6.4
2+
* FixedDataTable v0.6.5
33
*
44
* Copyright Schrodinger, LLC
55
* All rights reserved.
@@ -195,7 +195,7 @@ return /******/ (function(modules) { // webpackBootstrap
195195
Table: FixedDataTable
196196
};
197197

198-
FixedDataTableRoot.version = '0.6.4';
198+
FixedDataTableRoot.version = '0.6.5';
199199
module.exports = FixedDataTableRoot;
200200

201201
/***/ },
@@ -314,6 +314,11 @@ return /******/ (function(modules) { // webpackBootstrap
314314
*/
315315
height: PropTypes.number,
316316

317+
/**
318+
* Class name to be passed into parent container
319+
*/
320+
className: PropTypes.string,
321+
317322
/**
318323
* Maximum pixel height of table. If all rows do not fit,
319324
* a vertical scrollbar will appear.
@@ -752,7 +757,7 @@ return /******/ (function(modules) { // webpackBootstrap
752757
return React.createElement(
753758
'div',
754759
{
755-
className: joinClasses(cx('fixedDataTableLayout/main'), cx('public/fixedDataTable/main')),
760+
className: joinClasses(this.state.className, cx('fixedDataTableLayout/main'), cx('public/fixedDataTable/main')),
756761
onWheel: this._wheelHandler.onWheel,
757762
style: { height: state.height, width: state.width } },
758763
React.createElement(

Diff for: dist/fixed-data-table.min.css

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

Diff for: dist/fixed-data-table.min.js

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

Diff for: 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.6.4",
3+
"version": "0.6.5",
44
"description": "A React table component designed to allow presenting thousands of rows of data.",
55
"main": "main.js",
66
"peerDependencies": {

Diff for: 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.6.4';
26+
FixedDataTableRoot.version = '0.6.5';
2727
module.exports = FixedDataTableRoot;

0 commit comments

Comments
 (0)