react-input-mask
react-input-mask copied to clipboard
Input masking component for React. Made with attention to UX.
Hey @sanniassin, I've been running into this bug in production on our site where users can click or tap into the input mask field, and find their cursor is moved...
I have a mask as "99/99/9999", where my 1. Mask Char should associate first and second 9 in the mask to dd, third and fourth to mm, and rest to...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.9.0 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
Bumps [pathval](https://github.com/chaijs/pathval) from 1.1.0 to 1.1.1. Release notes Sourced from pathval's releases. v1.1.1 Fixes a security issue around prototype pollution. Commits db6c3e3 chore: v1.1.1 7859e0e Merge pull request #60 from...
When I try to autofill any value into phone input created via ReactInputMask, it crashes the application. This is the error we receive in console on production: https://reactjs.org/docs/error-decoder.html/?invariant=185 This is...
Hi. ``` // Canadian postal code mask const firstLetter = /(?!.*[DFIOQU])[A-VXY]/i; const letter = /(?!.*[DFIOQU])[A-Z]/i; const digit = /[0-9]/; const mask = [firstLetter, digit, letter, " ", digit, letter, digit];...
Please leave libraries in the comments bellow, I've found [imaskjs](https://github.com/uNmAnNeR/imaskjs) and [ngx-mask](https://github.com/JsDaddy/ngx-mask).
Hello @sanniassin, I am wondering about the state of this Project. I have two questions: 1. Why is the next Version after 2.0.4 the 3.0.0-alpha, what's with the 2 years...
I'm using react 16.6.1 and input mask 2.0.4 and when I just copy and past the beforeMaskStateChange [demo code from the tutorial](https://github.com/sanniassin/react-input-mask#beforemaskedstatechange) to my project, nothing happens. Is the function...