(v)
| 96 | setColor(color.withChannelValue(channel, v)); |
| 97 | }, |
| 98 | onChangeEnd(v) { |
| 99 | // onChange will have already been called with the right value, this is just to trigger onChangeEnd |
| 100 | if (props.onChangeEnd) { |
| 101 | props.onChangeEnd(color.withChannelValue(channel, v)); |
| 102 | } |
| 103 | } |
| 104 | }); |
| 105 | |
| 106 | let {step, pageSize} = color.getChannelRange(channel); |
no test coverage detected