Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/team-griffin/redux-form-debounce-field
https://github.com/team-griffin/redux-form-debounce-field
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/team-griffin/redux-form-debounce-field
- Owner: team-griffin
- Created: 2019-03-06T17:48:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-23T03:47:32.000Z (over 2 years ago)
- Last Synced: 2024-04-14T05:52:54.067Z (9 months ago)
- Language: TypeScript
- Size: 875 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redux-form-debounce-field
A variant of redux-form's `` component, but with a debounce feature that delay's the field's `onChange` event from triggering.## Usage
```js
import DebounceField from 'redux-form-debounce-field';const MyInput = ({
input,
meta,
...rest
}) => (
);const MyForm = () => (
);
```## Props
| Prop | Type | Description | Default |
| wait | `number` | The debounce delay | `250` |