Inputmask icon indicating copy to clipboard operation
Inputmask copied to clipboard

Input Mask plugin

Results 237 Inputmask issues
Sort by recently updated
recently updated
newest added

- Decimal always set to zero when leaving the input using iOS Device even shows on Demo [site](https://www.dropbox.com/s/mekoe1y0iy88gm9/2021-09-15%2022.23.34.mp4?dl=0) - Add a link to a codepen, jsfiddle or other example page...

**No Error** regexValue: "([A-Za-z]{1}[0-9]{2}(-)[0-9]{2}(-)[0-9]{6})$" **With Error** regexValue: "^([0-9]{4}-[A-Z0-9]{5}-[A-Z0-9]{13}?(-[0-9])?)$" Inputmask({ regex: regexValue }).mask(selector) I found that if there's a "?" in a regex I keep getting the error _RangeError: Maximum call...

Regex

Hello, is it possible to release this case: +1-234-567-89-00 -> +1-_34-567-89-00 Now can make only this case: +1-234-567-89-00 -> +1-345-678-90-0_ Thank you

Question

- Describe the bug If you set the "clearIncomplete: true" flag in the datetime extension parameters, then enter the full date (so that the "oncomplete" event is triggered), then if...

Hello! The following mask is not working correctly: Inputmask({ regex: "^(0|(?!0+$)[\\dA-Z]+)$", autoUnmask: false }).mask(selector) It autocompletes the input with non-editable zero. The idea behind this regex is that the field...

Regex
Enhancement / Feature

hi, component is very good but i have a problem. when i set the mask repeat and everything working but i can not accept 0 (number zero) if i remove...

if I type into an inputmask input, delete some, then type command+z, my changes are not undone - repro: https://codepen.io/sumanthratna/pen/OJmRKoX - macOS Monterey 12.0 Beta (21A5268h) - Google Chrome 91.0.4472.114...

Enhancement / Feature

Trying several configurations for completely optional masks, none seem to work -- for example all of these return `false`: ``` Inputmask.isValid('', { mask: '[99/99/9999]' }) Inputmask.isValid('', { regex: '([0-9]{2}/[0-9]{2}/[0-9]{4})?' })...

Main

**To Reproduce** Steps to reproduce the behavior: 1. Go to [https://jsfiddle.net/yogin/n5u2wwjg/224181/](https://jsfiddle.net/yogin/n5u2wwjg/224181/) 2. Enter **one** symbol to field 3. Press `CleanUp` button 4. Enter **one** the **same** symbol to to field...

My company is using the library inside a React Component. For our needs we need to update our store on "key up". When we use a phone mask, everything works...