(nextProps)
| 21 | } |
| 22 | |
| 23 | componentWillReceiveProps (nextProps) { |
| 24 | let value = nextProps.value; |
| 25 | if (value !== this.props.value && value !== this.state.value) { |
| 26 | this.setState({ value }); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | handleChange (event) { |
| 31 | const { readOnly, type, trigger } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected