| export const EVENTS = { | |
| BLUR: 'blur', | |
| FOCUS_OUT: 'focusout', | |
| CHANGE: 'change', | |
| } as const; | |
| export const VALIDATION_MODE = { | |
| onBlur: 'onBlur', | |
| onChange: 'onChange', | |
| onSubmit: 'onSubmit', | |
| onTouched: 'onTouched', | |
| all: 'all', | |
| } as const; | |
| export const INPUT_VALIDATION_RULES = { | |
| max: 'max', | |
| min: 'min', | |
| maxLength: 'maxLength', | |
| minLength: 'minLength', | |
| pattern: 'pattern', | |
| required: 'required', | |
| validate: 'validate', | |
| } as const; | |