This package has been deprecated

Author message:

No longer maintained. Install 'react-text-mask' without '@msafi/'

@msafi/react-text-mask

0.8.2 • Public • Published

React Input Mask

Getting started

First, install it.

npm i @msafi/react-text-mask --save

Then, require it and use it.

var React = require('react')
var MaskedInput = require('@msafi/react-text-mask')

var MyComponent = React.createClass({
  render() {
    return (
      <div>
        <MaskedInput mask="(111) 111-1111" />
      </div>
    )
  }
})

<MaskedInput/> is fully compatible with <input/> element. So, you can pass to it CSS classes, a placeholder attribute, or whatever.

For example, the following works:

<MaskedTextInput
  mask="11111"
  className="form-control"
  placeholder="Enter zip code"
  guide={false}
  id="my-input-id"
/>

Example

For a working example, check out the source code of this HTML file.

Documentation

For more information about the props that you can pass to the component, see the documentation here.

License

Public domain - CC0 1.0 Universal

Package Sidebar

Install

npm i @msafi/react-text-mask

Weekly Downloads

0

Version

0.8.2

License

CC0-1.0

Last publish

Collaborators

  • msafi