File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1+ 1.1.0 (2018-10-10)
2+ ------------------
3+ * Fix and standardize import
4+
151.0.0 (2018-08-27)
26------------------
37* Initial release
Original file line number Diff line number Diff line change 1+ /* eslint-env node */
2+ import RangeStepInput from './RangeStepInput' ;
3+ module . exports = RangeStepInput ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default class RangeStepInput extends React.Component {
1515 this . state = {
1616 isMouseDown : false ,
1717 isDragging : false
18- }
18+ } ;
1919 this . onInput = this . onInput . bind ( this ) ;
2020 this . onMouseDown = this . onMouseDown . bind ( this ) ;
2121 this . onMouseUp = this . onMouseUp . bind ( this ) ;
Original file line number Diff line number Diff line change 1+ /* eslint-env node */
2+
3+ import RangeStepInput from './RangeStepInput' ;
4+
5+ module . exports = RangeStepInput ;
Original file line number Diff line number Diff line change 11{
22 "name" : " react-range-step-input" ,
3- "version" : " 1.0 .0" ,
3+ "version" : " 1.1 .0" ,
44 "description" : " An <input type=range> that steps up and down on click." ,
55 "main" : " build/index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments