anchor-validation
v1.6.0
Published
anchor-validation for anchor-ui kit
Downloads
23
Readme
Anchor validation
Module for exposing a few validation methods to be used in redux-forms.
Usage
Install from npm
Examples
redux-form
import { maxLength, minLength, required, isAlphanumeric } from 'anchor-validation';
<form>
<Field
name="username"
component={renderField}
label="username"
type="text"
validate={
[
value => required(value, 'required'),
value => minLength(2)(value, 'error_min_length'),
value => maxLength(15)(value, 'error_max_length'),
value => isAlphanumeric(value, 'error_not_alphanumeric')
]
}
/>
<Button onClick={handleSubmit(onSubmit)} disabled={invalid || submitting}>
<p>Sign in</p>
</Button>
</form>