Skip to content

Commit

Permalink
✏️ docs
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed May 10, 2016
1 parent 3bb625f commit 30ff08d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/fields/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Property | Type | Description
--------------- | ------------- | -----------
readonly | `boolean` | If true, the input field is read-only
placeholder | `String` | Placeholder text for input field
min | `Number` | Minimum length of text (need `validators.string`)
max | `Number` | Maximum length of text (need `validators.string`)
min | `Number` | Minimum length of value (need use `validators.string`)
max | `Number` | Maximum length of value (need use `validators.string`)

## Usage
A featured and required name input field, where the length of name must be between 3 and 50 characters
Expand All @@ -25,7 +25,7 @@ A featured and required name input field, where the length of name must be betwe
validator: validators.string
}
```
Test field for website address with url validators
Text field for website address with url & string validator
```js
{
type: "text",
Expand All @@ -37,4 +37,4 @@ Test field for website address with url validators
validators.url
]
}
```
```

0 comments on commit 30ff08d

Please sign in to comment.