| import type { Field } from '../types'; | |
| export default (options: Field['_f']) => | |
| options.mount && | |
| (options.required || | |
| options.min || | |
| options.max || | |
| options.maxLength || | |
| options.minLength || | |
| options.pattern || | |
| options.validate); | |
| import type { Field } from '../types'; | |
| export default (options: Field['_f']) => | |
| options.mount && | |
| (options.required || | |
| options.min || | |
| options.max || | |
| options.maxLength || | |
| options.minLength || | |
| options.pattern || | |
| options.validate); | |