aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src')
-rw-r--r--packages/forms/src/input/index.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/forms/src/input/index.tsx b/packages/forms/src/input/index.tsx
index 478738cad..ab1c33315 100644
--- a/packages/forms/src/input/index.tsx
+++ b/packages/forms/src/input/index.tsx
@@ -102,6 +102,9 @@ class InputComponent extends Component<IProps, IState> {
102 spellCheck, 102 spellCheck,
103 onBlur, 103 onBlur,
104 onFocus, 104 onFocus,
105 min,
106 max,
107 step,
105 } = this.props; 108 } = this.props;
106 109
107 const { 110 const {
@@ -147,6 +150,9 @@ class InputComponent extends Component<IProps, IState> {
147 onFocus={onFocus} 150 onFocus={onFocus}
148 onBlur={onBlur} 151 onBlur={onBlur}
149 disabled={disabled} 152 disabled={disabled}
153 min={min}
154 max={max}
155 step={step}
150 /> 156 />
151 {suffix && ( 157 {suffix && (
152 <span className={classes.suffix}> 158 <span className={classes.suffix}>