Begin integrating blueprint (#359)

* toast test

* modify webpack build to allow for global CSS; use CSS modules to scope component styling

* remove heatmap

* add label to index resets

* swapping out buttons for blueprint

* adding constants to globals

* swapping out blueprint buttons

* title position, sidebar improvements

* sidebar styles

* adding toasts for validation errors

* zebra section trial

* integrating blueprint, switching buttons over, breaking out scatter

* clean up console
This commit is contained in:
Colin Megill
2018-10-22 15:46:37 -04:00
committed by GitHub
parent 0c271bc815
commit df671192be
34 changed files with 717 additions and 737 deletions
@@ -230,9 +230,9 @@ class HistogramBrush extends React.Component {
colorAccessor,
isUserDefined,
isDiffExp,
diffExp_avgDiff,
diffExp_set1AvgExp,
diffExp_set2AvgExp,
avgDiff,
set1AvgExp,
set2AvgExp,
scatterplotXXaccessor,
scatterplotYYaccessor
} = this.props;
@@ -269,7 +269,7 @@ class HistogramBrush extends React.Component {
}}
>
<strong>1:</strong>
{` ${diffExp_set1AvgExp.toPrecision(2)}`}
{` ${set1AvgExp.toPrecision(2)}`}
</span>
<span
style={{
@@ -280,7 +280,7 @@ class HistogramBrush extends React.Component {
}}
>
<strong>2:</strong>
{` ${diffExp_set2AvgExp.toPrecision(2)}`}
{` ${set2AvgExp.toPrecision(2)}`}
</span>
<span
style={{
@@ -288,7 +288,7 @@ class HistogramBrush extends React.Component {
marginLeft: 7
}}
>
{`Av. Diff: ${diffExp_avgDiff.toFixed(2)}`}
{`Av. Diff: ${avgDiff.toFixed(2)}`}
</span>
<span
onClick={this.handleSetGeneAsScatterplotX(field).bind(this)}