react-numeric-input
react-numeric-input copied to clipboard
Unable to call focus() or blur()
Thanks to React's recently introduced concept of forwardRefs, a component ref can now be forwarded to an underlying element. That means that calling myRef.current.focus() against a NumericInput component could be delegated to the rendered input DOM element.
This change would allow the component to behave naturally without a special query selector lookup.