
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
@unicef/material-ui-currency-textfield
Advanced tools
Currency input textfield for react with Material-ui style
CurrencyTextField
is a Material-ui react component. It provides a user friendly experience while inputing currency numbers.
CurrencyTextField
wraps the functionality of autonumeric and it is a port of react-numeric in Material-ui.
Main features:
npm install @unicef/material-ui-currency-textfield --save
Documentation and live demo is available here
import React from 'react'
import CurrencyTextField from '@unicef/material-ui-currency-textfield'
export default function MyComponent() {
const [value, setValue] = React.useState();
return (
<CurrencyTextField
label="Amount"
variant="standard"
value={value}
currencySymbol="$"
//minimumValue="0"
outputFormat="string"
decimalCharacter="."
digitGroupSeparator=","
onChange={(event, value)=> setValue(value)}
/>
);
}
In order to extend the component, clone the project and install the dependencies.
$ git clone https://github.com/unicef/material-ui-currency-textfield.git
$ npm install
The following commands are available:
npm start
Builds the component outputing it in the dist
folder. It is refreshed everytime you make changes in the code.
npm start
To see the output in the browser run the example app (/example)
cd example
npm install (only first time)
npm start
Runs the app in the development mode. Open http://localhost:3000 to view the app in the browser.
It will reload automatically upon edits. Lint errors are also displayed on the console.
npm run build
Outputs the build for production to the dist
folder.
npm run styleguide
Generates the documentation available on.
Open http://localhost:6060 to view it in the browser.
It watches for changes and automatically reloads the browser.
We use styleguidelist for documenting our custom components.
npm run styleguide:build
Builds the styleguide documentation for production. The output targets the styleguide
folder.
Copyright (c) 2019 UNICEF.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The majority of the source code of this repo was developed by @sureshsevarthi.
Also, this source code is based on react-numeric.
FAQs
Currency input textfield for react with Material-ui style
The npm package @unicef/material-ui-currency-textfield receives a total of 4,636 weekly downloads. As such, @unicef/material-ui-currency-textfield popularity was classified as popular.
We found that @unicef/material-ui-currency-textfield demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.