react-debounce-input icon indicating copy to clipboard operation
react-debounce-input copied to clipboard

React component that renders Input with debounced onChange

Results 17 react-debounce-input issues
Sort by recently updated
recently updated
newest added

On regular input onChange I can do ``` if (isNaN(value) || value < 0) { return; } ``` and it will not allow typing in letters or negative value but...

Is it by design that `minLength` doesn't pass through to ``? TypeScript: [lib.dom.ts for `HTMLInputElement`](https://microsoft.github.io/PowerBI-JavaScript/interfaces/_node_modules_typedoc_node_modules_typescript_lib_lib_dom_d_.htmlinputelement.html#minlength) HTML: [`minlength` for `HTMLInputElement`](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) on MDN My supposition is that in React `minLength` (react) ->...

In reference to issue #130 It was [the check we discussed](https://github.com/nkbt/react-debounce-input/blob/master/src/Component.js#L59), but not for the reason I thought. Since migrating from `componentWillReceiveProps` to `componentDidUpdate` the initial state update on the...

`DebounceInput` works fine when I change the value of the input elements (which are using `DebounceInput`). But when I change the value of a Material UI `Autocomplete` component that also...

The `inputRef` function seems to get triggered an inordinate number of times - I had expected it to fire once during the DebounceInput's `componentDidMount` lifecycle function, but instead it also...

It would be nice to trigger loading indicators as soon as they start typing, to have the user feel like it's doing something, without the lag of the debounce. It...

help wanted

material Ui has fields like `hintText` that gets passed as a property i would just add it as a property to the debounce element and it would work fine, in...

I need to be notified when a change starts. So, I'd like to pass `{leading: true}` to the [call to debounce on line 26 of Component.js](https://github.com/nkbt/react-debounce-input/blob/master/src/Component.js#L126). The reason that I...

Strange things happen when I get a string from the redux store. They first add my value and next debounce delete all value. and if I use the function for...

When handling the `onChange` event the `currentTarget` is `null`. You can see an [example on webpackbin here](http://www.webpackbin.com/41fzSFgmf): ```js { console.log("target =", event.target); console.log("target.value =", event.target.value); console.log("currentTarget =", event.currentTarget); }} />...