@@ -481,6 +481,8 @@ var InputRange = (function (_React$Component) {
481481 return InputRange ;
482482} ) ( _react2 [ 'default' ] . Component ) ;
483483
484+ exports [ 'default' ] = InputRange ;
485+
484486InputRange . propTypes = {
485487 ariaLabelledby : _react2 [ 'default' ] . PropTypes . string ,
486488 classNames : _react2 [ 'default' ] . PropTypes . objectOf ( _react2 [ 'default' ] . PropTypes . string ) ,
@@ -504,8 +506,6 @@ InputRange.defaultProps = {
504506 step : 1 ,
505507 value : null
506508} ;
507-
508- exports [ 'default' ] = InputRange ;
509509module . exports = exports [ 'default' ] ;
510510
511511} ) . call ( this , typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : { } )
@@ -562,13 +562,13 @@ var Label = (function (_React$Component) {
562562 return Label ;
563563} ) ( _react2 [ 'default' ] . Component ) ;
564564
565+ exports [ 'default' ] = Label ;
566+
565567Label . propTypes = {
566568 children : _react2 [ 'default' ] . PropTypes . node ,
567569 className : _react2 [ 'default' ] . PropTypes . string ,
568570 containerClassName : _react2 [ 'default' ] . PropTypes . string
569571} ;
570-
571- exports [ 'default' ] = Label ;
572572module . exports = exports [ 'default' ] ;
573573
574574} ) . call ( this , typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : { } )
@@ -722,6 +722,8 @@ var Slider = (function (_React$Component) {
722722 return Slider ;
723723} ) ( _react2 [ 'default' ] . Component ) ;
724724
725+ exports [ 'default' ] = Slider ;
726+
725727Slider . propTypes = {
726728 ariaLabelledby : _react2 [ 'default' ] . PropTypes . string ,
727729 classNames : _react2 [ 'default' ] . PropTypes . objectOf ( _react2 [ 'default' ] . PropTypes . string ) ,
@@ -733,8 +735,6 @@ Slider.propTypes = {
733735 type : _react2 [ 'default' ] . PropTypes . string . isRequired ,
734736 value : _react2 [ 'default' ] . PropTypes . number . isRequired
735737} ;
736-
737- exports [ 'default' ] = Slider ;
738738module . exports = exports [ 'default' ] ;
739739
740740} ) . call ( this , typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : { } )
@@ -834,7 +834,7 @@ var Track = (function (_React$Component) {
834834 get : function get ( ) {
835835 var track = this . refs . track ;
836836
837- var clientRect = track . getClientRects ( ) [ 0 ] ;
837+ var clientRect = track . getBoundingClientRect ( ) ;
838838
839839 return clientRect ;
840840 }
@@ -843,14 +843,14 @@ var Track = (function (_React$Component) {
843843 return Track ;
844844} ) ( _react2 [ 'default' ] . Component ) ;
845845
846+ exports [ 'default' ] = Track ;
847+
846848Track . propTypes = {
847849 children : _react2 [ 'default' ] . PropTypes . node ,
848850 classNames : _react2 [ 'default' ] . PropTypes . objectOf ( _react2 [ 'default' ] . PropTypes . string ) ,
849851 onTrackMouseDown : _react2 [ 'default' ] . PropTypes . func . isRequired ,
850852 percentages : _react2 [ 'default' ] . PropTypes . objectOf ( _react2 [ 'default' ] . PropTypes . number ) . isRequired
851853} ;
852-
853- exports [ 'default' ] = Track ;
854854module . exports = exports [ 'default' ] ;
855855
856856} ) . call ( this , typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : { } )
@@ -860,8 +860,7 @@ module.exports = exports['default'];
860860Object . defineProperty ( exports , '__esModule' , {
861861 value : true
862862} ) ;
863-
864- var defaultClassNames = {
863+ exports [ 'default' ] = {
865864 component : 'InputRange' ,
866865 labelContainer : 'InputRange-labelContainer' ,
867866 labelMax : 'InputRange-label InputRange-label--max' ,
@@ -872,8 +871,6 @@ var defaultClassNames = {
872871 trackActive : 'InputRange-track InputRange-track--active' ,
873872 trackContainer : 'InputRange-track InputRange-track--container'
874873} ;
875-
876- exports [ 'default' ] = defaultClassNames ;
877874module . exports = exports [ 'default' ] ;
878875
879876} , { } ] , 6 :[ function ( require , module , exports ) {
@@ -882,6 +879,7 @@ module.exports = exports['default'];
882879Object . defineProperty ( exports , '__esModule' , {
883880 value : true
884881} ) ;
882+ exports . maxMinValuePropType = maxMinValuePropType ;
885883
886884var _util = require ( './util' ) ;
887885
@@ -916,8 +914,6 @@ function maxMinValuePropType(props) {
916914 }
917915}
918916
919- exports . maxMinValuePropType = maxMinValuePropType ;
920-
921917} , { "./util" :7 } ] , 7 :[ function ( require , module , exports ) {
922918'use strict' ;
923919
@@ -962,12 +958,12 @@ function length(numA, numB) {
962958 return Math . abs ( numA - numB ) ;
963959}
964960
965- function isNumber ( number ) {
966- return typeof number === 'number' ;
961+ function isNumber ( value ) {
962+ return typeof value === 'number' ;
967963}
968964
969- function isObject ( object ) {
970- return object !== null && typeof object === 'object' ;
965+ function isObject ( value ) {
966+ return value !== null && typeof value === 'object' ;
971967}
972968
973969function isDefined ( value ) {
@@ -1024,7 +1020,7 @@ function autobind(methodNames, instance) {
10241020 } ) ;
10251021}
10261022
1027- var util = {
1023+ exports [ 'default' ] = {
10281024 arrayOf : arrayOf ,
10291025 autobind : autobind ,
10301026 captialize : captialize ,
@@ -1039,8 +1035,6 @@ var util = {
10391035 objectOf : objectOf ,
10401036 omit : omit
10411037} ;
1042-
1043- exports [ 'default' ] = util ;
10441038module . exports = exports [ 'default' ] ;
10451039
10461040} , { } ] , 8 :[ function ( require , module , exports ) {
@@ -1148,7 +1142,7 @@ function stepValueFromValue(inputRange, value) {
11481142 return Math . round ( value / inputRange . props . step ) * inputRange . props . step ;
11491143}
11501144
1151- var valueTransformer = {
1145+ exports [ 'default' ] = {
11521146 percentageFromPosition : percentageFromPosition ,
11531147 percentageFromValue : percentageFromValue ,
11541148 percentagesFromValues : percentagesFromValues ,
@@ -1159,8 +1153,6 @@ var valueTransformer = {
11591153 valueFromPosition : valueFromPosition ,
11601154 valuesFromProps : valuesFromProps
11611155} ;
1162-
1163- exports [ 'default' ] = valueTransformer ;
11641156module . exports = exports [ 'default' ] ;
11651157
11661158} , { "./util" :7 } ] , 9 :[ function ( require , module , exports ) {
0 commit comments