UNPKG

5.27 kBMarkdownView Raw
1apeman-react-field
2==========
3
4<!---
5This file is generated by ape-tmpl. Do not update manually.
6--->
7
8<!-- Badge Start -->
9<a name="badges"></a>
10
11[![Build Status][bd_travis_shield_url]][bd_travis_url]
12[![Code Climate][bd_codeclimate_shield_url]][bd_codeclimate_url]
13[![Code Coverage][bd_codeclimate_coverage_shield_url]][bd_codeclimate_url]
14[![npm Version][bd_npm_shield_url]][bd_npm_url]
15[![JS Standard][bd_standard_shield_url]][bd_standard_url]
16
17[bd_repo_url]: https://github.com/apeman-react-labo/apeman-react-field
18[bd_travis_url]: http://travis-ci.org/apeman-react-labo/apeman-react-field
19[bd_travis_shield_url]: http://img.shields.io/travis/apeman-react-labo/apeman-react-field.svg?style=flat
20[bd_travis_com_url]: http://travis-ci.com/apeman-react-labo/apeman-react-field
21[bd_travis_com_shield_url]: https://api.travis-ci.com/apeman-react-labo/apeman-react-field.svg?token=
22[bd_license_url]: https://github.com/apeman-react-labo/apeman-react-field/blob/master/LICENSE
23[bd_codeclimate_url]: http://codeclimate.com/github/apeman-react-labo/apeman-react-field
24[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/apeman-react-labo/apeman-react-field.svg?style=flat
25[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/apeman-react-labo/apeman-react-field.svg?style=flat
26[bd_gemnasium_url]: https://gemnasium.com/apeman-react-labo/apeman-react-field
27[bd_gemnasium_shield_url]: https://gemnasium.com/apeman-react-labo/apeman-react-field.svg
28[bd_npm_url]: http://www.npmjs.org/package/apeman-react-field
29[bd_npm_shield_url]: http://img.shields.io/npm/v/apeman-react-field.svg?style=flat
30[bd_standard_url]: http://standardjs.com/
31[bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
32
33<!-- Badge End -->
34
35
36<!-- Description Start -->
37<a name="description"></a>
38
39apeman react package for field components.
40
41<!-- Description End -->
42
43
44<!-- Overview Start -->
45<a name="overview"></a>
46
47
48
49<!-- Overview End -->
50
51
52<!-- Sections Start -->
53<a name="sections"></a>
54
55<!-- Section from "doc/guides/01.Installation.md.hbs" Start -->
56
57<a name="section-doc-guides-01-installation-md"></a>
58
59Installation
60-----
61
62```bash
63$ npm install apeman-react-field --save
64```
65
66
67<!-- Section from "doc/guides/01.Installation.md.hbs" End -->
68
69<!-- Section from "doc/guides/02.Demo.md.hbs" Start -->
70
71<a name="section-doc-guides-02-demo-md"></a>
72
73Demo
74-----
75
76[Live demo][demo_url] is hosted on GitHub Pages.
77
78[![Demo Image](./doc/images/screenshot.png)][demo_url]
79
80[demo_url]: http://apeman-react-labo.github.io/apeman-react-field/demo/demo.html
81
82
83<!-- Section from "doc/guides/02.Demo.md.hbs" End -->
84
85<!-- Section from "doc/guides/03.Usage.md.hbs" Start -->
86
87<a name="section-doc-guides-03-usage-md"></a>
88
89Usage
90---------
91
92```jsx
93'use strict'
94
95import React from 'react'
96import {ApField, ApFieldSet, ApFieldLegend, ApFieldLabel, ApFieldValue, ApFieldStyle} from 'apeman-react-field'
97
98import {ApText, ApTextStyle} from 'apeman-react-basic'
99import {ApPassword, ApPasswordStyle} from 'apeman-react-basic'
100
101const ExampleComponent = React.createClass({
102 render () {
103 return (
104 <div>
105 <ApFieldStyle />
106 <ApTextStyle />
107 <ApPasswordStyle />
108 <ApFieldSet>
109 <ApFieldLegend>Login Form</ApFieldLegend>
110 <ApField>
111 <ApFieldLabel>Username</ApFieldLabel>
112 <ApFieldValue><ApText /></ApFieldValue>
113 </ApField>
114 <ApField>
115 <ApFieldLabel>Password</ApFieldLabel>
116 <ApFieldValue><ApPassword/></ApFieldValue>
117 </ApField>
118 </ApFieldSet>
119 </div>
120 )
121 }
122})
123
124```
125
126
127
128<!-- Section from "doc/guides/03.Usage.md.hbs" End -->
129
130<!-- Section from "doc/guides/04.Components.md.hbs" Start -->
131
132<a name="section-doc-guides-04-components-md"></a>
133
134Components
135-----
136
137
138### ApFieldLabel
139
140**Props**
141
142| Name | Type | Default | Description |
143| ---- | ---- | ------- | ----------- |
144| htmlFor | string | null | | |
145
146### ApFieldLegend
147
148**Props**
149
150| Name | Type | Default | Description |
151| ---- | ---- | ------- | ----------- |
152
153### ApFieldSet
154
155**Props**
156
157| Name | Type | Default | Description |
158| ---- | ---- | ------- | ----------- |
159| plain | bool | false | | |
160| uuid | | uuid.v4() | | |
161
162### ApFieldStyle
163
164**Props**
165
166| Name | Type | Default | Description |
167| ---- | ---- | ------- | ----------- |
168| style | object | {} | | |
169
170### ApFieldValue
171
172**Props**
173
174| Name | Type | Default | Description |
175| ---- | ---- | ------- | ----------- |
176
177### ApField
178
179**Props**
180
181| Name | Type | Default | Description |
182| ---- | ---- | ------- | ----------- |
183| center | bool | false | | |
184
185
186<!-- Section from "doc/guides/04.Components.md.hbs" End -->
187
188
189<!-- Sections Start -->
190
191
192<!-- LICENSE Start -->
193<a name="license"></a>
194
195License
196-------
197This software is released under the [MIT License](https://github.com/apeman-react-labo/apeman-react-field/blob/master/LICENSE).
198
199<!-- LICENSE End -->
200
201
202<!-- Links Start -->
203<a name="links"></a>
204
205Links
206------
207
208+ [apeman][apeman_url]
209+ [apeman-react-labo][apeman_react_labo_url]
210+ [React][react_url]
211
212[apeman_url]: https://github.com/apeman-labo/apeman
213[apeman_react_labo_url]: https://github.com/apeman-react-labo
214[react_url]: https://facebook.github.io/react/
215
216<!-- Links End -->