@@ -677,11 +677,11 @@ function createControlClass(s = defaultStrategy) {
677
677
render ( ) {
678
678
return (
679
679
< ConnectedControl
680
+ { ...this . props }
680
681
mapProps = { {
681
682
...controlPropsMap . default ,
682
683
...this . props . mapProps ,
683
684
} }
684
- { ...omit ( this . props , 'mapProps' ) }
685
685
/>
686
686
) ;
687
687
}
@@ -694,11 +694,11 @@ function createControlClass(s = defaultStrategy) {
694
694
return (
695
695
< ConnectedControl
696
696
component = "input"
697
+ { ...this . props }
697
698
mapProps = { {
698
699
...controlPropsMap . default ,
699
700
...this . props . mapProps ,
700
701
} }
701
- { ...omit ( this . props , 'mapProps' ) }
702
702
/>
703
703
) ;
704
704
}
@@ -711,12 +711,12 @@ function createControlClass(s = defaultStrategy) {
711
711
return (
712
712
< ConnectedControl
713
713
component = "input"
714
+ { ...this . props }
714
715
mapProps = { {
715
716
...controlPropsMap . text ,
716
717
type : 'text' ,
717
718
...this . props . mapProps ,
718
719
} }
719
- { ...omit ( this . props , 'mapProps' ) }
720
720
/>
721
721
) ;
722
722
}
@@ -729,11 +729,11 @@ function createControlClass(s = defaultStrategy) {
729
729
return (
730
730
< ConnectedControl
731
731
component = "textarea"
732
+ { ...this . props }
732
733
mapProps = { {
733
734
...controlPropsMap . textarea ,
734
735
...this . props . mapProps ,
735
736
} }
736
- { ...omit ( this . props , 'mapProps' ) }
737
737
/>
738
738
) ;
739
739
}
@@ -748,11 +748,11 @@ function createControlClass(s = defaultStrategy) {
748
748
component = "input"
749
749
type = "radio"
750
750
isToggle
751
+ { ...this . props }
751
752
mapProps = { {
752
753
...controlPropsMap . radio ,
753
754
...this . props . mapProps ,
754
755
} }
755
- { ...omit ( this . props , 'mapProps' ) }
756
756
/>
757
757
) ;
758
758
}
@@ -767,13 +767,13 @@ function createControlClass(s = defaultStrategy) {
767
767
component = "input"
768
768
type = "checkbox"
769
769
isToggle
770
+ { ...this . props }
770
771
mapProps = { {
771
772
...controlPropsMap . checkbox ,
772
773
...this . props . mapProps ,
773
774
} }
774
775
getValue = { getCheckboxValue }
775
776
changeAction = { this . props . changeAction || s . actions . checkWithValue }
776
- { ...omit ( this . props , 'mapProps' ) }
777
777
/>
778
778
) ;
779
779
}
@@ -787,11 +787,11 @@ function createControlClass(s = defaultStrategy) {
787
787
< ConnectedControl
788
788
component = "input"
789
789
type = "file"
790
+ { ...this . props }
790
791
mapProps = { {
791
792
...controlPropsMap . file ,
792
793
...this . props . mapProps ,
793
794
} }
794
- { ...omit ( this . props , 'mapProps' ) }
795
795
/>
796
796
) ;
797
797
}
@@ -804,11 +804,11 @@ function createControlClass(s = defaultStrategy) {
804
804
return (
805
805
< ConnectedControl
806
806
component = "select"
807
+ { ...this . props }
807
808
mapProps = { {
808
809
...controlPropsMap . select ,
809
810
...this . props . mapProps ,
810
811
} }
811
- { ...omit ( this . props , 'mapProps' ) }
812
812
/>
813
813
) ;
814
814
}
@@ -821,11 +821,11 @@ function createControlClass(s = defaultStrategy) {
821
821
return (
822
822
< ConnectedControl
823
823
component = "button"
824
+ { ...this . props }
824
825
mapProps = { {
825
826
...controlPropsMap . button ,
826
827
...this . props . mapProps ,
827
828
} }
828
- { ...omit ( this . props , 'mapProps' ) }
829
829
/>
830
830
) ;
831
831
}
@@ -839,11 +839,11 @@ function createControlClass(s = defaultStrategy) {
839
839
< ConnectedControl
840
840
component = "button"
841
841
type = "reset"
842
+ { ...this . props }
842
843
mapProps = { {
843
844
...controlPropsMap . reset ,
844
845
...this . props . mapProps ,
845
846
} }
846
- { ...omit ( this . props , 'mapProps' ) }
847
847
/>
848
848
) ;
849
849
}
0 commit comments