1.3.3 • Published 6 years ago

react-advanced-form-addons v1.3.3

Weekly downloads
94
License
MIT
Repository
github
Last release
6 years ago

React Advanced Form Addons

A collection of tools dedicated for fast form prototyping using React Advanced Form.

Components

Fields

  • Input
  • Radio
  • Checkbox
  • Select
  • Textarea

Other

  • Label
  • Button

Getting started

Install

NPM:

npm install react-advanced-form-addons --save

Yarn:

yarn install react-advanced-form-addons

Note: You would need to have react-advanced-form installed as a peer dependency in order to use this package.

Prototype!

import React from 'react';
import { Form } from 'react-advanced-form';
import { Input, Select } from 'react-advanced-form-addons';

export default class Example extends React.Component {
  render() {
    return (
      <Form>
        <Input
          name="username"
          required />
        <Select
          name="role"
          required>
          <option value="admin">Administrator</option>
          <option value="editor">Editor</option>
        </Select>
      </Form>
    );
  }
}

License

This project is issued under MIT License.

1.3.3

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago