Numeric Input for interfaces built with Material-UI for React
- Value prop now works as expected, like disabled inputs with calc.
- Input output value is now just a Number
- Value prop is now optional, the input have its own internal state
- Target output value is now a valid Number string
NPM
npm install --save material-ui-numeric-input
Yarn
yarn add material-ui-numeric-input
Demo: https://sampaioleal.github.io/material-ui-numeric-input
import React from 'react';
import NumericInput from 'material-ui-numeric-input';
function Example() {
return (
<NumericInput
value={10000}
name='example'
precision='2'
decimalSeparator=','
thousandSeparator='.'
label='Example'
onChange={(value) => console.log(value)}
variant='outlined'
/>
);
}
MIT © SampaioLeal