augur-ui-react-components
Advanced tools
Comparing version 3.0.46 to 3.0.47
{ | ||
"name": "augur-ui-react-components", | ||
"version": "3.0.46", | ||
"version": "3.0.47", | ||
"description": "Augur UI React Components", | ||
@@ -5,0 +5,0 @@ "author": "Baz (@thinkloop)", |
@@ -36,2 +36,14 @@ /* | ||
} | ||
{p.type === 'scalar' && p.minValue != null && | ||
<li className="property min-value"> | ||
<span className="property-label">minimum value</span> | ||
<span className="property-value">{p.minValue}</span> | ||
</li> | ||
} | ||
{p.type === 'scalar' && p.maxValue != null && | ||
<li className="property max-value"> | ||
<span className="property-label">maximum value</span> | ||
<span className="property-value">{p.maxValue}</span> | ||
</li> | ||
} | ||
<li className="property creation-date"> | ||
@@ -50,3 +62,6 @@ <span className="property-label">creation date</span> | ||
outstandingShares: PropTypes.object, | ||
creationTime: PropTypes.object | ||
creationTime: PropTypes.object, | ||
type: PropTypes.string, | ||
minValue: PropTypes.number, | ||
maxValue: PropTypes.number | ||
}; | ||
@@ -53,0 +68,0 @@ |
@@ -49,3 +49,3 @@ import activePage from './selectors/active-page'; | ||
value: (newState = {}) => { | ||
console.log('*** update', newState); | ||
if (!process.env.NODE_ENV === 'test') console.log('*** update', newState); | ||
Object.keys(newState).forEach(key => { | ||
@@ -52,0 +52,0 @@ selectors[key] = newState[key]; |
Sorry, the diff of this file is too big to display
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
1210474
10157
3