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

Hello. I try use the `numeric` extensions, but `min` options don't work. I can't input a decimal value lower than `-30.999`. For example, `-32.123` Why? ```javascript import Inputmask from "inputmask";...

let's see this regex "^14\d{2}-(([0][1-6]-([0][1-9]|[1-2][0-9]|3[0-1]))|((([0][7-9])|([1][0-2]))-(0[1-9]|[1-2][0-9]|30)))$" It is matched with "1404-07-30" ![Image](https://github.com/user-attachments/assets/dd18c84e-75ac-4d74-b81c-1ebdb75f4cb7) But I cannot type it in my input.

Hi, The `FormData` hook calls `getElementById()` using the input name as the id https://github.com/RobinHerbots/Inputmask/blob/477f8742d0edb0b916c30d5fb8cf50e83fbcf6e5/lib/global/FormData.js#L10C1-L11C1 I think `const element = document.getElementById(entry.value[0]);` should be `const element = form[ entry.value[0] ]` and also...

## Issue description When setting a value programmatically in an input field with an applied Inputmask, an issue occurs: if the cursor is placed before a "." or "-", the...

Hello! I needed to make Flatflickr work with Inputmask. Through the debugger, I wanted to understand why the input field was being cleared. I decided to build my own version,...

If we use percentage with quantifier syntax (e.g., digits: '3,8'), it will always behave like we set digits: 2. [codepen](https://codepen.io/Manoel-Neto-the-sans/pen/xbxRyKv) - OS: Ubuntu 22.04 - Browser: Chrome 133.0.6943.98 - Inputmask...

Numerics
Enhancement / Feature

This seems to be the same issue as https://github.com/RobinHerbots/Inputmask/issues/2814 Demo: https://jsfiddle.net/qs2cL9fk/ Instructions: Place the cursor at the very start of the inputfield and input the number "1". Demo code: ```...

The issue is fixed, but the mask doesn't work correctly when the value is autofilled. When the value is inserted into the field through the browser's autocomplete suggestions, the mask...

Hello, while using CTRL+X to cut content in an input, sometimes an input event is emitted, sometimes it is not. A link to reproduce the issue : https://stackblitz.com/edit/stackblitz-starters-xffmy4?file=index.html Then follow...

- Describe the bug Hello, when I select data displayed by autocomplete while the input is empty, it gives an error seen in the console. - OS: Windows 11 x64...