Skip to content

Commit f2b18bb

Browse files
committed
Release v0.9.3
1 parent ddc26e1 commit f2b18bb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dist/react-input-range.js",
55
"dist/react-input-range.css"
66
],
7-
"version": "0.9.2",
7+
"version": "0.9.3",
88
"description": "React component for inputting numeric values within a range",
99
"homepage": "https://github.com/davidchin/react-input-range",
1010
"authors": [

dist/react-input-range.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
.InputRange-track {
6262
background: #eeeeee;
6363
border-radius: 0.3rem;
64+
cursor: pointer;
6465
display: block;
6566
height: 0.3rem;
6667
position: relative;
@@ -79,7 +80,6 @@
7980
background: #3f51b5; }
8081

8182
.InputRange {
82-
cursor: pointer;
8383
height: 1rem;
8484
position: relative;
8585
width: 100%; }

dist/react-input-range.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ var Slider = (function (_React$Component) {
744744
'aria-controls': this.props.ariaControls,
745745
'aria-valuemax': this.props.maxValue,
746746
'aria-valuemin': this.props.minValue,
747-
'aria-valuenow': this.props.value,
747+
'aria-valuenow': this.props.formatLabel ? this.props.formatLabel(this.props.value) : this.props.value,
748748
className: classNames.slider,
749749
draggable: 'false',
750750
href: '#',

dist/react-input-range.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-input-range.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-input-range",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"description": "React component for inputting numeric values within a range",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)