
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@pismo/react-currency-input
Advanced tools
yarn add @pismo/react-currency-input
import React, { Component } from 'react'
import CurrencyInput from '@pismo/react-currency-input'
class MyComponent extends Component {
constructor(props) {
super(props)
this.state = { amount: 500 }
}
handleChange = (event, value, maskedValue) => {
this.setState({ amount: value })
}
render() {
const { amount } = this.state
return (
<CurrencyInput value={amount} onChange={this.handleChange} />
)
}
}
currency
: 3-character acronym for the desired currency.
Defaults to BRL
. (USD
is also supported without passing any currencyConfiguration
object).
currencyConfiguration
: Check /src/constants/currencyConfigurations
for the pre-defined ones.
showSymbol
: Whether to show or hide the symbol
(passed on currencyConfiguration
) on masked values.
Defaults to false
.
spaceSymbol
: Appends a space ' '
to the configured symbol
. e.g.: "R$ 500,00" instead of "R$500,00".
Defaults to false
.
onChange
: Callback that gets called whenever user changes input value.
Arguments: event
, value
and maskedValue
.
This project uses parcel for zero-configuration bundling.
yarn global add parcel-bundler
Then it should just work! This will run a dev server for you, which will serve the generated /demo
folder
yarn start
Generating the distribution files in /dist
:
yarn build
FAQs
React currency input component
We found that @pismo/react-currency-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.