Package Exports
- react-input-mask
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-input-mask) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-input-mask
Yet another React component for input masking with attention to small usability details with cursor position, copy-paste, etc.
Demo
http://sanniassin.github.io/react-input-mask/demo.html
Properties
mask
: string
Mask string. Format characters are:
9
: 0-9
a
: A-Z, a-z
*
: A-Z, a-z, 0-9
Any character can be escaped with backslash, which usually will appear as double backslash in JS strings. For example, German phone mask with unremoveable prefix +49 will look like "+4\\9 99 999 99"
maskChar
: string
Character to cover unfilled editable parts of mask. Default character is "_". If set to null, unfilled parts will be empty, like in ordinary input.
Example
var PhoneInput = React.createClass({
render: function() {
return <InputElement {...this.props} mask="+4\\9 99 999 99" maskChar=" "/>;
}
});