email input character size increased
This commit was merged in pull request #357.
This commit is contained in:
@@ -22,7 +22,7 @@ export default function InputCom({
|
|||||||
spanTag,
|
spanTag,
|
||||||
inputBg,
|
inputBg,
|
||||||
onInput,
|
onInput,
|
||||||
maxLength = 30,
|
maxLength = 45,
|
||||||
minLength = 0,
|
minLength = 0,
|
||||||
direction,
|
direction,
|
||||||
error,
|
error,
|
||||||
@@ -124,7 +124,7 @@ export default function InputCom({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const inputConfigs = {
|
const inputConfigs = {
|
||||||
email: { minLength: 7, maxLength: 35 },
|
email: { minLength: 7, maxLength: 45 },
|
||||||
first_name: { minLength: 3, maxLength: 25, pattern: "[a-zA-Z]+" },
|
first_name: { minLength: 3, maxLength: 25, pattern: "[a-zA-Z]+" },
|
||||||
last_name: { minLength: 3, maxLength: 25, pattern: "[a-zA-Z]+" },
|
last_name: { minLength: 3, maxLength: 25, pattern: "[a-zA-Z]+" },
|
||||||
address: { minLength: 5, maxLength: 49, pattern: "[a-zA-Z0-9]+" },
|
address: { minLength: 5, maxLength: 49, pattern: "[a-zA-Z0-9]+" },
|
||||||
|
|||||||
Reference in New Issue
Block a user