anchor-validation

1.6.0 • Public • Published

Anchor validation

Build Status

Module for exposing a few validation methods to be used in redux-forms.

Usage

Install from npm

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>

Package Sidebar

Install

npm i anchor-validation

Weekly Downloads

2

Version

1.6.0

License

MIT

Last publish

Collaborators

  • peterkuiper
  • larstadema