Skip to content

Commit e0bfba6

Browse files
committed
2 parents e43fb3b + 9fbf281 commit e0bfba6

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

README.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@
99

1010
`formsy-react-components` is a selection of React components that render form elements for use in a [formsy-react](https://github.com/christianalfoni/formsy-react) form.
1111

12-
The form components included are:
13-
14-
* `<Checkbox>`
15-
* `<CheckboxGroup>`
16-
* `<File>`
17-
* `<Input>`
18-
* `<RadioGroup>`
19-
* `<Select>`
20-
* `<Textarea>`
21-
22-
For convenience, we also ship a `<Form>` component that wraps `formst-react`’s `<Form>` component and allows you to define some common props that will be picked-up by child components in the form.
23-
2412
The components render markup to be quickly included in a [Bootstrap 3 form](http://getbootstrap.com/css/#forms). This includes a `<label>`, [help text](http://getbootstrap.com/css/#forms-help-text), and some [validation styling](http://getbootstrap.com/css/#forms-control-validation) tied to formsy’s validation state and validation messages.
2513

2614
## Install
@@ -63,5 +51,5 @@ const MyForm = (props) => {
6351

6452
Documentation is a work in progress!
6553

66-
* For a working code example, visit the [Playground](http://twisty.github.io/formsy-react-components/playground/), then examine the [source](https://github.com/twisty/formsy-react-components/tree/19c0577ecda7e6b3452c85aa31a7170b34b87709/playground).
54+
* For a working code example, visit the [Playground](http://twisty.github.io/formsy-react-components/playground/), then examine the [source](https://github.com/twisty/formsy-react-components/tree/master/examples/playground).
6755
* There is some information in the [Wiki](https://github.com/twisty/formsy-react-components/wiki).

docs/components/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Components
2+
3+
**Note:** Docs are in-progress. Have a look at the [examples](https://github.com/twisty/formsy-react-components/tree/master/examples) to see how things work.
4+
5+
The components included are:
6+
7+
* `<Checkbox>`
8+
* `<CheckboxGroup>`
9+
* [`<File>`](file.md)
10+
* `<Input>`
11+
* `<RadioGroup>`
12+
* `<Select>`
13+
* `<Textarea>`
14+
15+
---
16+
17+
For convenience, we also ship a `<Form>` component that wraps `formsy-react`’s `<Form>` component and allows you to define some common props that will be picked-up by child components in the form.

docs/layouts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The horizontal layout aims to mirror the [Bootstrap horizontal form layout](http
2222

2323
This layout requires that the enclosing form has the `form-horizontal` classname applied.
2424

25-
The default classes are `col-sm-3` for the labels, and `col-sm-9` for the element. It is possible to modify these classes, see [Modifying CSS class names](class-names.md).
25+
The default classes are `col-sm-3` for the labels, and `col-sm-9` for the element. It is possible to modify these classes, see [Modifying CSS class names](css-classes.md).
2626

2727
## Vertical layout
2828

0 commit comments

Comments
 (0)