File tree Expand file tree Collapse file tree 4 files changed +7
-14
lines changed Expand file tree Collapse file tree 4 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -203,13 +203,10 @@ return /******/ (function(modules) { // webpackBootstrap
203203 _this . _isStrict = ! ! _this . props . strict ;
204204
205205 _this . state = _extends ( {
206- // selectionStart: null,
207- // selectionEnd : null,
208206 btnDownHover : false ,
209207 btnDownActive : false ,
210208 btnUpHover : false ,
211209 btnUpActive : false ,
212- // value : null,
213210 stringValue : ""
214211 } , _this . _propsToState ( _this . props ) ) ;
215212 _this . stop = _this . stop . bind ( _this ) ;
@@ -849,12 +846,12 @@ return /******/ (function(modules) { // webpackBootstrap
849846 attrs . input . value = "" ;
850847 }
851848
852- if ( hasFormControl && style !== false ) {
849+ if ( hasFormControl && ! noStyle ) {
853850 _extends ( attrs . wrap . style , css [ 'wrap.hasFormControl' ] ) ;
854851 }
855852
856853 // mobile
857- if ( mobile && style !== false ) {
854+ if ( mobile && ! noStyle ) {
858855 _extends ( attrs . input . style , css [ 'input.mobile' ] ) ;
859856 _extends ( attrs . btnUp . style , css [ 'btnUp.mobile' ] ) ;
860857 _extends ( attrs . btnDown . style , css [ 'btnDown.mobile' ] ) ;
Original file line number Diff line number Diff line change @@ -203,13 +203,10 @@ return /******/ (function(modules) { // webpackBootstrap
203203 _this . _isStrict = ! ! _this . props . strict ;
204204
205205 _this . state = _extends ( {
206- // selectionStart: null,
207- // selectionEnd : null,
208206 btnDownHover : false ,
209207 btnDownActive : false ,
210208 btnUpHover : false ,
211209 btnUpActive : false ,
212- // value : null,
213210 stringValue : ""
214211 } , _this . _propsToState ( _this . props ) ) ;
215212 _this . stop = _this . stop . bind ( _this ) ;
@@ -849,12 +846,12 @@ return /******/ (function(modules) { // webpackBootstrap
849846 attrs . input . value = "" ;
850847 }
851848
852- if ( hasFormControl && style !== false ) {
849+ if ( hasFormControl && ! noStyle ) {
853850 _extends ( attrs . wrap . style , css [ 'wrap.hasFormControl' ] ) ;
854851 }
855852
856853 // mobile
857- if ( mobile && style !== false ) {
854+ if ( mobile && ! noStyle ) {
858855 _extends ( attrs . input . style , css [ 'input.mobile' ] ) ;
859856 _extends ( attrs . btnUp . style , css [ 'btnUp.mobile' ] ) ;
860857 _extends ( attrs . btnDown . style , css [ 'btnDown.mobile' ] ) ;
Original file line number Diff line number Diff line change @@ -127,7 +127,6 @@ module.exports =
127127 btnDownActive : false ,
128128 btnUpHover : false ,
129129 btnUpActive : false ,
130-
131130 stringValue : ""
132131 } , _this . _propsToState ( _this . props ) ) ;
133132 _this . stop = _this . stop . bind ( _this ) ;
@@ -571,11 +570,11 @@ module.exports =
571570 attrs . input . value = "" ;
572571 }
573572
574- if ( hasFormControl && style !== false ) {
573+ if ( hasFormControl && ! noStyle ) {
575574 _extends ( attrs . wrap . style , css [ 'wrap.hasFormControl' ] ) ;
576575 }
577576
578- if ( mobile && style !== false ) {
577+ if ( mobile && ! noStyle ) {
579578 _extends ( attrs . input . style , css [ 'input.mobile' ] ) ;
580579 _extends ( attrs . btnUp . style , css [ 'btnUp.mobile' ] ) ;
581580 _extends ( attrs . btnDown . style , css [ 'btnDown.mobile' ] ) ;
You can’t perform that action at this time.
0 commit comments