0.2.2 • Published 9 years ago
rec-form v0.2.2
rec-form
Form component for
Reactwritten with ES6, SASS and rec-bootstrap.
Radio buttons, etc, coming soon.
Screenshot

Usage
import React from "react";
import { Input, Button } from "rec-form";
ReactDOM.render( (
<div>
<Input placeholder="Username" value="Predefined value" />
<Input placeholder="Password" type="password" />
<Input placeholder="Color" type="color" />
<Input placeholder="Date" type="date" />
<Input placeholder="Month" type="month" />
<Input placeholder="Number" type="number" />
<Input placeholder="Range" type="range" />
<Button value="Back" disabled />
<Button value="Next" />
</div>
), document.getElementById( "app" ) );You can also use the global variable ReactForm:
let Input = ReactForm.Input;
let Button = ReactForm.Button;Component API
Input Component
| Property | Type | Default | Required | Description |
|---|---|---|---|---|
| placeholder | String | null | ✕ | Input placeholder |
| required | Boolean | false | ✕ | Whether the input must be filled |
| value | * | null | ✕ | Input value |
| type | String | text | ✕ | Input type |
Button Component
| Property | Type | Default | Required | Description |
|---|---|---|---|---|
| disabled | Boolean | false | ✕ | Whether the button is disabled |
| value | String | Ok | ✕ | Button value |
0.2.2
9 years ago
0.2.1
9 years ago
0.2.0
9 years ago
0.1.9
9 years ago
0.1.8
9 years ago
0.1.7
9 years ago
0.1.6
9 years ago
0.1.5
9 years ago
0.1.4
9 years ago
0.1.3
9 years ago
0.1.2
9 years ago
0.1.1
9 years ago
0.1.0
9 years ago
0.0.3
9 years ago
0.0.29
10 years ago
0.0.28
10 years ago
0.0.27
10 years ago
0.0.26
10 years ago
0.0.25
10 years ago
0.0.24
10 years ago
0.0.23
10 years ago
0.0.22
10 years ago