Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-g-input-mask

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-g-input-mask

An input mask for template or currency

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react-g-input-mask

An input mask for template or currency

Build Status Coverage Status

Installation:

yarn add react-g-input-mask

or

npm install --save react-g-input-mask

Live demo:

http://gri.fo/react-g-input-mask/storybook-static

How to:

Currency mask

This is a currency mask for input fields. The currency is masked using the Intl.NumberFormat in the backstage.

import { CurrencyMask } from 'react-g-input-mask'

const MyComponent = () => (
  <CurrencyMask
    options={{
      locale: 'en-us',
      currency: 'USD'
    }}
    inputProps={{
      className: 'my-css-class'
    }}
  />
)
Props:
OptionDefaultDescription
options.locale (required)-The locale to format. For the general form and interpretation of the locales argument, see the Intl page
options.currency (required)-The currency to format. Check the current currency & funds code list
defaultValue""The input default value
inputProps{}If you want to send props to input, you should pass in this object
as"input"If you want to render another element/component instead the input, you can use the as prop

You can have problems with numbers bigger than Number.MAX_SAFE_INTEGER (you can check this constant logging it in your browser dev tools)

Custom mask

import { CustomMask } from 'react-g-input-mask'

const MyComponent = () => (
  <CustomMask
    mask="99/99/9999"
    inputProps={{
      className: 'my-css-class'
    }}
  />
)
Props:
OptionDefaultDescription
mask (required)-The custom mask (See below)
placeholderChar"_"If you want to use a custom placeholder, pass the char in this prop
defaultValue""The input default value
inputProps{}If you want to send props to input, you should pass in this object
as"input"If you want to render another element/component instead the input, you can use the as prop

To create your mask, you should compose a string with the static chars and the custom validation chars (eg: "999-99/A"):

MaskDescription
9Represents the numbers: /\d/
ARepresents the alphabetic characters /[A-Za-z]/
*Any char /./

Keywords

FAQs

Package last updated on 09 Aug 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc