Skip to content

Commit 1b613a0

Browse files
author
Edward Xiao
committed
Merge branch 'master' of github.com:edwardfhsiao/react-inputs-validation
2 parents a83cb3e + 5548809 commit 1b613a0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Tested on IE9+ and Chrome and Safari(10.0.3)
5353

5454
|Props | |Type |Description |Default |
5555
|--- |--- |--- |--- | --- |
56-
|tabIndex | Opt | Str | Num | | -1 |
56+
|tabIndex | Opt | Str | Num | | none |
5757
|id | Opt | Str | | "" |
5858
|name | Opt | Str | | "" |
5959
|type | Opt | Str | | "text" |
@@ -99,7 +99,7 @@ import { Textbox } from 'react-inputs-validation';
9999
import 'react-inputs-validation/lib/react-inputs-validation.min.css';
100100

101101
<Textbox
102-
tabIndex="1" //Optional.[String or Number].Default: -1.
102+
tabIndex="1" //Optional.[String or Number].Default: none.
103103
id={'Name'} //Optional.[String].Default: "". Input ID.
104104
name="Name" //Optional.[String].Default: "". Input name.
105105
type="text" //Optional.[String].Default: "text". Input type [text, password, number].
@@ -155,7 +155,7 @@ import 'react-inputs-validation/lib/react-inputs-validation.min.css';
155155

156156
|Props | |Type |Description |Default |
157157
|--- |--- |--- |--- | --- |
158-
|tabIndex | Opt | Str &#124; Num | | -1 |
158+
|tabIndex | Opt | Str &#124; Num | | none |
159159
|**id** |**Req**|**Str**|**IMPORTANT if you have multiple Radiobox on the page, id is used to distinguish them for the label 'for' use**|**""** |
160160
|name | Opt | Str | | "" |
161161
|value | Opt | Str | | "" |
@@ -189,7 +189,7 @@ import { Radiobox } from 'react-inputs-validation';
189189
import 'react-inputs-validation/lib/react-inputs-validation.min.css';
190190

191191
<Radiobox
192-
tabIndex={2} //Optional.[String or Number].Default: -1.
192+
tabIndex={2} //Optional.[String or Number].Default: none.
193193
id="job" //Optional.[String].Default: "". Input ID.
194194
name="job" //Optional.[String].Default: "". Input name.
195195
disabled={false} //Optional.[Bool].Default: false.
@@ -238,7 +238,7 @@ import 'react-inputs-validation/lib/react-inputs-validation.min.css';
238238

239239
|Props | |Type |Description |Default |
240240
|--- |--- |--- |--- | --- |
241-
|tabIndex | Opt | Str &#124; Num | | -1 |
241+
|tabIndex | Opt | Str &#124; Num | | none |
242242
|id | Opt | Str | | "" |
243243
|name | Opt | Str | | "" |
244244
|value | Opt | Str | | "" |
@@ -270,7 +270,7 @@ import { Checkbox } from 'react-inputs-validation';
270270
import 'react-inputs-validation/lib/react-inputs-validation.min.css';
271271

272272
<Checkbox
273-
tabIndex="5" //Optional.[String or Number].Default: -1.
273+
tabIndex="5" //Optional.[String or Number].Default: none.
274274
id={'agreement'} //Optional.[String].Default: "". Input ID.
275275
name={'agreement'} //Optional.[String].Default: "". Input name
276276
value={agreement} //Required.[String].Default: "".
@@ -319,7 +319,7 @@ import 'react-inputs-validation/lib/react-inputs-validation.min.css';
319319
320320
|Props | |Type |Description |Default |
321321
|--- |--- |--- |--- | --- |
322-
|tabIndex | Opt | Str &#124; Num | | -1 |
322+
|tabIndex | Opt | Str &#124; Num | | none |
323323
|id | Opt | Str | | "" |
324324
|name | Opt | Str | | "" |
325325
|type | Opt | Str | | "text" |
@@ -359,7 +359,7 @@ import { Select } from 'react-inputs-validation';
359359
import 'react-inputs-validation/lib/react-inputs-validation.min.css';
360360

361361
<Select
362-
tabIndex="6" //Optional.[String or Number].Default: -1.
362+
tabIndex="6" //Optional.[String or Number].Default: none.
363363
id={'movie'} //Optional.[String].Default: "". Input ID.
364364
name={'movie'} //Optional.[String].Default: "". Input name.
365365
value={movie} //Optional.[String].Default: "".
@@ -420,7 +420,7 @@ import 'react-inputs-validation/lib/react-inputs-validation.min.css';
420420
421421
|Props | |Type |Description |Default |
422422
|--- |--- |--- |--- | --- |
423-
|tabIndex | Opt | Str &#124; Num | | -1 |
423+
|tabIndex | Opt | Str &#124; Num | | none |
424424
|id | Opt | Str | | "" |
425425
|name | Opt | Str | | "" |
426426
|type | Opt | Str | | "text" |
@@ -464,7 +464,7 @@ import { Textarea } from 'react-inputs-validation';
464464
import 'react-inputs-validation/lib/react-inputs-validation.min.css';
465465

466466
<Textarea
467-
tabIndex="7" //Optional.[String or Number].Default: -1.
467+
tabIndex="7" //Optional.[String or Number].Default: none.
468468
id="description" //Optional.[String].Default: "". Textarea ID.
469469
name="description" //Optional.[String].Default: "". Textarea name.
470470
value={description} //Optional.[String].Default: "".
@@ -713,7 +713,7 @@ Then in the component...
713713
714714
```js
715715
<Textbox
716-
tabIndex="1" //Optional.[String or Number].Default: -1.
716+
tabIndex="1" //Optional.[String or Number].Default: none.
717717
...
718718
validationOption={{
719719
...

0 commit comments

Comments
 (0)