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

Numeric input component for react

Results 63 react-numeric-input issues
Sort by recently updated
recently updated
newest added

For example we have some React component with NumericInput: ```js class Foo extends React.Component { constructor(props) { this.state = { value: 42 } } _onInputChangeHandler = (newValue) => { //...

When I click on up/down, it doesn't change the value. I need to hold it for longer before it works. I traced the onClick and I see that on a...

If you try to use 0. something in the numeric up down it reset the value to 0 the fix was to update the regex expression.

When I put className it only for `` `` I need to write my CSS on each control how I can do? ![image](https://user-images.githubusercontent.com/1619007/41589141-edd69614-73dd-11e8-8579-d45bf19fecb6.png)

This would resolve #76 It adds a prop `renderInput={(TagName, props) => InputNode}`. You could for instance use it to integrate it in Semantic UI React: ``` jsx import { Input...

Hi I use this package with redux-form where I as wrapping NumericInput into redux-form Field tag. And after render I found [Object object] in meta tag version react: 16.4.0 redux-form:...

When I tried accesing a prop with `e.target` I get `undefined`, example: If try getting the name property, with` {e => this.handleInputChange(e)}` and then `e.target.name == 'whatever'`, I get that...

When right clicking the component's up / down buttons (which opens the browser's context menu), the button stays pressed and thus frequently increases / decreases the input's value until you...

#### STR 1. Create and render controlled `NumericInput` component (using `value`/`onChange` and external state for example) 2. Focus on input 3. Clear value completely 4. Click outside input to lose...

By the default behavior of input element with type number when the cursor always moves right after increment/decrement, but cursor position always saves before rerendering for now. It is not...