augur-ui-react-components
Advanced tools
Comparing version 3.2.1 to 3.2.2
{ | ||
"name": "augur-ui-react-components", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "Augur UI React Components", | ||
@@ -5,0 +5,0 @@ "author": "Augur Project", |
@@ -72,3 +72,2 @@ import React, { PropTypes, Component } from 'react'; | ||
value={item} | ||
debounceMS={0} | ||
onChange={(newValue) => this.handleChange(i, newValue)} | ||
@@ -75,0 +74,0 @@ /> |
@@ -68,3 +68,3 @@ import React, { Component, PropTypes } from 'react'; | ||
return ( | ||
<div className={classnames('input', { clearable: p.isClearable }, this.props.className)}> | ||
<div className={classnames('input', this.props.className)}> | ||
{!p.isMultiline && | ||
@@ -71,0 +71,0 @@ <input |
@@ -64,3 +64,2 @@ import React, { PropTypes } from 'react'; | ||
value={p.detailsText} | ||
isMultiline | ||
maxLength={500} | ||
@@ -67,0 +66,0 @@ placeholder="Optional: enter a more detailed description of your market." |
@@ -18,3 +18,2 @@ import React, { PropTypes } from 'react'; | ||
value={p.takerFee} | ||
isClearable={false} | ||
onChange={(value) => p.onValuesUpdated({ takerFee: value })} | ||
@@ -35,3 +34,2 @@ /> | ||
value={p.makerFee} | ||
isClearable={false} | ||
onChange={(value) => p.onValuesUpdated({ makerFee: value })} | ||
@@ -71,3 +69,2 @@ /> | ||
value={p.initialLiquidity} | ||
isClearable={false} | ||
onChange={(value) => p.onValuesUpdated({ initialLiquidity: value })} | ||
@@ -90,3 +87,2 @@ /> | ||
value={p.initialFairPrices.values[i].value} | ||
isClearable={false} | ||
onChange={ | ||
@@ -125,3 +121,2 @@ (onChangeValue) => { | ||
value={p.bestStartingQuantity} | ||
isClearable={false} | ||
onChange={(value) => p.onValuesUpdated({ bestStartingQuantity: value })} | ||
@@ -144,3 +139,2 @@ /> | ||
value={p.startingQuantity} | ||
isClearable={false} | ||
onChange={(value) => p.onValuesUpdated({ startingQuantity: value })} | ||
@@ -163,3 +157,2 @@ /> | ||
value={p.priceWidth} | ||
isClearable={false} | ||
onChange={(value) => p.onValuesUpdated({ priceWidth: value })} | ||
@@ -166,0 +159,0 @@ /> |
Sorry, the diff of this file is too big to display
1994940
37847