Skip to content

Commit 30ff08d

Browse files
committed
✏️ docs
1 parent 3bb625f commit 30ff08d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/fields/text.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Property | Type | Description
66
--------------- | ------------- | -----------
77
readonly | `boolean` | If true, the input field is read-only
88
placeholder | `String` | Placeholder text for input field
9-
min | `Number` | Minimum length of text (need `validators.string`)
10-
max | `Number` | Maximum length of text (need `validators.string`)
9+
min | `Number` | Minimum length of value (need use `validators.string`)
10+
max | `Number` | Maximum length of value (need use `validators.string`)
1111

1212
## Usage
1313
A featured and required name input field, where the length of name must be between 3 and 50 characters
@@ -25,7 +25,7 @@ A featured and required name input field, where the length of name must be betwe
2525
validator: validators.string
2626
}
2727
```
28-
Test field for website address with url validators
28+
Text field for website address with url & string validator
2929
```js
3030
{
3131
type: "text",
@@ -37,4 +37,4 @@ Test field for website address with url validators
3737
validators.url
3838
]
3939
}
40-
```
40+
```

0 commit comments

Comments
 (0)