Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit c9e4103

Browse files
committed
Add debounce prop of Control component to API docs
1 parent 10e3764 commit c9e4103

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/api/Control.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- [`model` (required)](#prop-model)
66
- [`mapProps`](#prop-mapProps)
77
- [`updateOn`](#prop-updateOn)
8+
- [`debounce`](#prop-debounce)
89
- [`validators`](#prop-validators)
910
- [`validateOn`](#prop-validateOn)
1011
- [`asyncValidators`](#prop-asyncValidators)
@@ -154,6 +155,9 @@ const length = (val) => val.length > 8;
154155
/>
155156
```
156157

158+
## `debounce={...}` {#prop-debounce}
159+
_(Number)_: The time in milliseconds, by which the change action will be debounced.
160+
157161
## `validateOn="..."` {#prop-validateOn}
158162
_(String | Array)_: A string/array of strings specifying when validation should occur. By default, validation happens with whatever `updateOn` is set to. The `validateOn` property can have these values:
159163
- `"change"` - validate on the `onChange` event handler

0 commit comments

Comments
 (0)