You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type="number" // Optional.[String].Default: "text". Input type [text, password, number].
71
+
type="text" // Optional.[String].Default: "text". Input type [text, password, number]. NOTE: provide "text" for better performance since different browsers run differently with "number".
72
72
value={number} // Optional.[String].Default: "".
73
73
placeholder="Place your number here ^-^" // Optional.[String].Default: "".
74
74
onChange={(number, e) => {
@@ -639,7 +639,7 @@ class Index extends Component {
639
639
tabIndex="1"// Optional.[String or Number].Default: -1.
onBlur={()=>{}}// Optional.[Func].Default: none. In order to validate the value on blur, you MUST provide a function, even if it is an empty function. Missing this, the validation on blur will not work.
724
725
onChange={(isAgreementChecked,e)=>{
@@ -959,7 +960,7 @@ class Index extends Component {
validate={validate}// Optional.[Bool].Default: false. If you have a submit button and trying to validate all the inputs of your form at onece, toggle it to true, then it will validate the field and pass the result via the "validationCallback" you provide.
0 commit comments