Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.2.5
------------------
* Add new style parameter to the rendered <input>

1.2.4 (2018-12-12)
------------------
* More click-hold bug fixes.
Expand Down
2 changes: 2 additions & 0 deletions lib/RangeStepInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default class RangeStepInput extends React.Component {
value={this.props.value}
name={this.props.name}
id={this.props.id}
style={this.props.style}
disabled={this.props.disabled}
onChange={this.props.onChange}
onMouseDown={this.onMouseDown}
Expand Down Expand Up @@ -149,6 +150,7 @@ RangeStepInput.propTypes = {
id: PropTypes.string,
name: PropTypes.string,
disabled: PropTypes.bool,
style: PropTypes.string,

// Determines whether the slider changes value when the cursor is
// held on it.
Expand Down