use-mask-input 1.0.2 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/example/App.example.d.ts +3 -0
  2. package/dist/{useMaskInput.test.d.ts → example/index.d.ts} +0 -0
  3. package/dist/index.js +1 -2
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.modern.js +1 -2
  6. package/dist/index.modern.js.map +1 -1
  7. package/dist/useMaskInput.d.ts +3 -3
  8. package/node_modules/inputmask/README.md +94 -61
  9. package/node_modules/inputmask/dist/inputmask.es6.js +5 -0
  10. package/node_modules/inputmask/dist/inputmask.js +2900 -2868
  11. package/node_modules/inputmask/dist/inputmask.min.js +3 -3
  12. package/node_modules/inputmask/dist/jquery.inputmask.js +2840 -2807
  13. package/node_modules/inputmask/dist/jquery.inputmask.min.js +3 -3
  14. package/node_modules/inputmask/lib/bindings/inputmask.es6.js +5 -0
  15. package/node_modules/inputmask/lib/canUseDOM.js +7 -0
  16. package/node_modules/inputmask/lib/defaults.js +36 -2
  17. package/node_modules/inputmask/lib/definitions.js +1 -1
  18. package/node_modules/inputmask/lib/dependencyLibs/events.js +19 -9
  19. package/node_modules/inputmask/lib/environment.js +2 -0
  20. package/node_modules/inputmask/lib/eventhandlers.js +55 -44
  21. package/node_modules/inputmask/lib/eventruler.js +10 -9
  22. package/node_modules/inputmask/lib/extensions/inputmask.date.extensions.js +543 -430
  23. package/node_modules/inputmask/lib/extensions/inputmask.extensions.js +117 -99
  24. package/node_modules/inputmask/lib/extensions/inputmask.numeric.extensions.js +590 -574
  25. package/node_modules/inputmask/lib/global/window.js +2 -1
  26. package/node_modules/inputmask/lib/inputHandling.js +30 -18
  27. package/node_modules/inputmask/lib/inputmask.js +9 -2
  28. package/node_modules/inputmask/lib/inputmaskElement.js +2 -1
  29. package/node_modules/inputmask/lib/keycode.json +4 -0
  30. package/node_modules/inputmask/lib/mask-lexer.js +434 -436
  31. package/node_modules/inputmask/lib/mask.js +4 -4
  32. package/node_modules/inputmask/lib/masktoken.js +13 -0
  33. package/node_modules/inputmask/lib/polyfills/Array.includes.js +48 -0
  34. package/node_modules/inputmask/lib/{getPrototypeOf.js → polyfills/Object.getPrototypeOf.js} +0 -0
  35. package/node_modules/inputmask/lib/positioning.js +5 -5
  36. package/node_modules/inputmask/lib/validation-tests.js +108 -46
  37. package/node_modules/inputmask/lib/validation.js +82 -73
  38. package/node_modules/inputmask/package.json +41 -69
  39. package/package.json +40 -38
  40. package/node_modules/inputmask/CHANGELOG.md +0 -744
  41. package/node_modules/inputmask/index.js +0 -1
  42. package/node_modules/inputmask/lib/dependencyLibs/inputmask.dependencyLib.jqlite.js +0 -20
@@ -1,744 +0,0 @@
1
- # Change Log
2
-
3
- ## [5.0.5 - 07/08/2020]
4
-
5
- HOT FIX: jqlite dependency error
6
-
7
- ## [5.0.4 - 07/08/2020]
8
- ### Add
9
- - usePrototypeDefinitions option
10
- - numeric alias
11
- - SetMaxOnOverflow option
12
- ### Updates
13
- - handle ^ and $ in regex masks
14
- - datetime alias: add autofill logic to year
15
- - complete with current year
16
- - allow filled year be overtyped when min date is provided,
17
- - \<input-mask> enhance attribute handling
18
-
19
- ### Fixed
20
- - The fractional part cannot be typed if negative values are displayed in parentheses #1836
21
- - version 3.x to 4.x regex issue #1727
22
- - unmask regression? #2315
23
- - only keep significant parts when using multiple masks
24
- - Datetime alias 29/02/a valid year does not always allows #2286
25
- - 'input-mask' has already been defined as a custom element #2285
26
- - Using min with alias integer not working correctly because of postValidation #2284
27
- - fix double events when using jQuery.clone function
28
- - Alternative for removed integerDigits property? #2278
29
- - Incorrect mask operation when deleting the value set through "value", "val", "setvalue". #2279
30
- - Cursor jumps to end of mask if changing value during typing #2274
31
-
32
- ## [5.0.3 - 11/01/2020]
33
- ### Fixed
34
- - regex mask crashes for long input size #2276
35
- - Pasted value is getting mixed up #2255
36
- - Swapped digits on paste with specific prefix #2256
37
-
38
-
39
- ## [5.0.2 - 09/01/2020]
40
- ### Added
41
- - <input-mask> html element #2247
42
-
43
- ### Fixed
44
- - Numeric alias: cannot clear input on blur #2235
45
- - Datetime alias H3:MM month validation fails #2239
46
-
47
- ## [5.0.1 - 18/12/2019]
48
- ### Added
49
- - ssn mask
50
-
51
- ### Updates
52
- - numeric aliases: set value with jQuery.val or native input.value =
53
- - numeric aliases: make min/max block input instead of setting the min/max value
54
- - jitMasking: autofill statics to improve the user experience
55
-
56
- ### Fixed
57
- - Backspace not removing characters in some cases #2246
58
- - jitMasking and caret position with static characters #2243
59
- - datetime does not working in IE11 #2238
60
-
61
- ## [5.0.0 - 02/12/2019]
62
- ### Addition
63
- - add indian numbering support in numeric alias (indianns alias)
64
- - add roundingFN option to numeric alias. (currency, decimal, ...)
65
- - input-inputmode support via inputmode option (if supported by browser)
66
- - add shortcuts option in numeric alias.
67
- - add insertModeVisual option
68
-
69
- ### Updates
70
- - **postValidation**
71
- - add inputchar to arguments
72
- - also validate when the result is false**
73
- - **change behavior of keepStatic option**
74
- - multiple masks => default true
75
- - all other masks => default false
76
- - add more tokens for datetime format
77
- - refactor inputfallbackevent
78
- - **drop colormask support**
79
- - **drop disablePredictiveText option (was hack via colorMask)**
80
- - ignore generated statics in revalidateMask
81
- - fix mask curruption when alternating and using jitmasking
82
- - Casing option will also allow case insensitive entry for static symbols
83
- - **refactor numeric alias**
84
- - package & bundling
85
- - enhance regex alternations. ex: [01][0-9]|2[0-3] => ([01][0-9]|2[0-3])
86
- - extend command object
87
- - rewritePosition
88
- - revert insert-mode caret as selection instead of colored caret
89
- - make delete/backspace behave like normal
90
- - make visual optional
91
-
92
- ### Fixed
93
- - Decimal - auto change comma to dot (numeric keyboard) #2098
94
- - If a decimal < 0.000001 (scale = 6), masked value incorrect. #2110
95
- - DateTime - HH:MM format doesn't accept some numbers for minutes #2209
96
- - Set currency prefix to empty by default #2066
97
- - NumericInput: Pasting integers without selecting results in extra 0s #2165
98
- - Wrong mask application on decimal field #2188
99
- - bootstrap-datepicker: date bug in mobile version #2195
100
- - Time 24 Hours Issue. #2194
101
- - 'Decimal'. New entered value is automatically prefixed with '.' #2189
102
- - inputmode not working #2193
103
- - Does not work on XHTML pages. #2187
104
- - isInputEventSupported method is creating a non-passive event #2185
105
- - No message with HTML5 validation #841
106
- - "setvalue" for empty value and "clearMaskOnLostFocus=false" duplicates mask suffix #2181
107
- - Uncaught TypeError: $(...).inputmask is not a function #1933
108
- - 12Hr Format time Hour error #2121
109
- - Backspace alters value/mask in datetime #2163
110
- - Suffix and white-space groupSeparator problem #813
111
- - Char before quantifier gets duplicated in tests #2152
112
- - FireFox - mask placeholder doesn't disappear #2138
113
- - im-insert not valid html #2122
114
- - No message with HTML5 validation #841
115
- - Manual input via virtual keyboard doesn't work #2116
116
- - Can't insert more than 2 letters in Firefox #2114
117
- - InputMask not getting fresh placeholder value #2111
118
- - Chrome autofill does not work with Inputmask #1330
119
- - Paste in inputmask #2088
120
- - The first character is truncated when masking. #2089
121
- - No leading zero for single-digit hours KO #2061
122
- - Only 1st placeholder is displayed for fields with same alias numeric #2060
123
- - Original placeholder disappear when mouseout in IE #2047
124
- - Document bug with disabled inputs caused by Firefox 64 and older #2045
125
- - Behaviour of v3 with hours not possible anymore #1918
126
- - Unmasked value of datetime alias, if empty, returns the placeholder #2039
127
- - ...
128
-
129
-
130
- ## [4.0.4 - 2018-12-03]
131
- ### Addition
132
- - add url as supported input type
133
-
134
- ### Updates
135
- - rework jit enabled quantifiers
136
-
137
- ### Fixed
138
- - restore greedy functionality
139
- - fix focus and mouseenter behavior in IE
140
-
141
- ## [4.0.3 - 2018-11-07]
142
-
143
- ### Addition
144
- - numeric.extensions - add inputType option to specify the type of initial value
145
- - README_numeric.md => Setting initial values
146
-
147
- ### Updates
148
- - fix window.js for node
149
-
150
- ### Fixed
151
- - digits: 3 - error on transform #2022
152
- - "Can not read property 'join' of undefined" when using Inputmask.format #2019
153
- - Inputmask numeric does no round up when digits is 0 #2018
154
- - Strange Calendar popup issue in IE Only when used with Daterangepicker #1965
155
- - incorrect work min max date - #2011, #2013
156
-
157
- ## [4.0.2 - 2018-09-14]
158
-
159
- (4.0.1 => 4.0.2 rebuild dist with newer version of uglify #2000)
160
-
161
- ### Updates
162
- - <strong>remove phone alias</strong> (~ use https://github.com/RobinHerbots/inputmask.phone or https://github.com/andr-04/inputmask-multi instead) #1981
163
- - enhance gettests for jit enabled quantifiers
164
- - pass initial validation position to postvalidation, to allow prefills in the datetime alias
165
- - remove caret selection for insertMode => use inputmask.css for visualization
166
- - update nuget package
167
- - update dependencies
168
-
169
- ### Fixed
170
- - When blur input, inputmask adds attr placeholder to input - #1992
171
- - Fix endless loop for quantifiers (see tests_dynamic.js - latest unittests) #1983
172
- - Element keeps the focus to itself in ie11 #1846
173
- - Changes for min/max options do not get picked up. #1931
174
- - Behaviour of v3 with hours not possible anymore #1918
175
- - Multiple alternators #1553
176
- - jquery.inputmask: clearIncomplete and placeholder don't appear to do anything when array of masks used #1892
177
- - Problem with delete masked date on iOS #1899
178
- - Autofill corrupts input on email mask #1908(gl)
179
-
180
- ## [4.0.0 - 2018-05-26]
181
- ### Addition
182
- - add support for beforeInput event with inputType (Input Events Level 2 - https://w3c.github.io/input-events/)
183
- - extend positionCaretOnClick with "ignore" to ignore the click in the input
184
- - jit enabled dynamic masks
185
- - add support for input type search
186
- - new datetime alias
187
- - extend positionCaretOnClick with "select" to select the whole input on focus
188
- - add regex option (replaces the Regex alias)
189
- - CSS Unit Mask #1843
190
-
191
- ### Updates
192
- - make behavior of [] an {0,1} consistent
193
- - change default value from greedy option to false
194
- - fix unmatched alternations in gettests. ("[0-9]{2}|[0-9]{3}" like masks)
195
- - code cleanup and refactoring
196
- - enhance determineTestTemplate
197
- - oncomplete calls
198
- - merge setValidPosition and stripValidPositions => revalidateMask
199
- - remove canClearPosition hook
200
- - change notation of optionalmarker, quantifiermarker, groupmarker
201
- - drop prevalidator and cardinality support in definitions
202
- - drop Regex alias
203
- - drop all date/time related aliases => replaced by new datetime alias
204
- - improve alternation logic
205
- - improve inputfallback (Android)
206
- - better caret handling in colormask
207
- - disable autocorrect on safari when disablePredictiveText is used
208
- - rename androidHack option to disablePredictiveText. Make it available for other platforms.
209
-
210
- ### Fixed
211
- - Both date and time in same masked textbox #1888
212
- - time input mask min and max #1674
213
- - Bug: Using backspace when caret is not at the end messes up static placeholders #1525
214
- - Fast typing text #1872
215
- - jitMasking + disablePredictiveText causes android browser tab to stuck when clicked on "backspase" #1862
216
- - Android 6 issue - Samsung device keyboard #1818
217
- - Method oncomplete doesn't work correctly with jitMasking #1845
218
- - isComplete in numeric extensions doesn't take into account negationSymbol #1844
219
- - Email alias - retype @ removes last . #1324
220
- - When "clearIncomplete: true" and pressing Enter to Submit Form #1839
221
- - Hang on combination of optional mask and repeat #698
222
- - Can't remove inputmask on focus? #1820
223
- - Not able to input 31.12. in DD.MM date input in v4.x #1803
224
- - problem with two separate alternations #1722
225
- - colorMask + Remask = Duplicate im-colormask element #1709
226
-
227
- ### Note
228
- Be aware when upgrading from 3.3.11, that the regex alias is removed
229
- and that the datetime alias has totally changed.
230
- So expect you need todo some changes to your date-masks and regex masks.
231
- Also some defaults has changed, so have a read through the changes for this release.
232
-
233
- There are still many open issues but postponing the release to resolve all issues will take like another year,
234
- while there are already many enhancements available.
235
-
236
-
237
- ## [3.3.9 - 2017-10-10]
238
- ### Updates
239
- - enhance inputfallback (Android)
240
-
241
- ### Fixes
242
- - On Android with date mask input mashing up #1708
243
- - Currency mask works incorrectly on Android Chrome v58 #1617
244
- - Can't input character at the end if it's also a placeholder on Android #1648
245
-
246
- ## [3.3.8 - 2017-08-24]
247
- ### Addition
248
- - Addition \uFF11-\uFF19 character range to 9 definition #1606
249
- - importDataAttributes option #1633
250
- - add dot support in regex #1651
251
-
252
- ### Updates
253
- - pass inputmask object in the callbacks
254
- - colorMask enhancement: better positioning and more controllable via inputmask.css
255
- - remove maxLength attribute on android #1490
256
- - enhance inputfallback (Android)
257
-
258
- ### Fixes
259
- - Mask appear when I press TAB & showMaskOnFocus: false, showMaskOnHover: false #1198
260
- - DependencyLib.Event CustomEvent #1642
261
- - Wrong initial cursor position with Numeric and Prefix #1578
262
- - Currency mask works incorrectly on Android Chrome v58 #1617
263
- - Can't input character at the end if it's also a placeholder on Android #1648
264
- - colorMask - incorrect positioning #1421
265
- - Object doesn't support property or method '_valueGet' in version 3.3.7 #1645
266
- - Usage of numericInput in data-inputmask causes reversed value #1640
267
- - Numeric suffix makes radixPoint disappear on preset value #1638
268
- - Cannot delete after fill up all the mask Android Chrome browser Jsfiddle #1637
269
-
270
- ## [3.3.7 - 2017-06-09]
271
- ### Addition
272
- - allow custom operation in casing option by callback #1565
273
-
274
- ### Updates
275
- - put back Regex alias extension for legacy support #1611
276
- - postvalidation cannot set pos of undefined
277
- - fix undoValue initialization
278
-
279
- ### Fixed
280
- - Major issue with regex #1611
281
- - React onChange event doesn't work with Inputmask #1377
282
- - Currency digits and delete #1351
283
- - Decimal editing problems #1603
284
- - UX problem with email mask #1600
285
- - Force numeric to empty (on blur) with '0' as value #215
286
- - ndxInitializer.shift is not a function
287
-
288
- ## [3.3.6 - 2017-05-11]
289
- ### Addition
290
- - noValuePatching option #1276
291
-
292
- ### Updates
293
- - drop Regex alias => use the inputmask regex option instead
294
- - alternator syntax update - regex like alternations is now supported (aa|99|AA) ~ aa or 99 or AA
295
-
296
- ### Fixed
297
- - NaN with negationSymbol and unmaskAsNumber #1581
298
- - A dot (.) in Regex Causes Errors #647
299
- - variable "undoValue" isn't initialized correctly #1519
300
- - on submit change event is triggered #1392
301
- - Change Event Problems for Masked Input #1583
302
- - integer backspace bug when set maxLength attr. #1546
303
- - Regex with placeholder, not working? #798
304
- - Visualize regular expressions #1040
305
- - Mobile phone code update needed for Malaysia #1571
306
- - suffix bug (regression) #1558
307
- - 29 february of non leap-year #1567
308
-
309
- ## [3.3.5 - 2017-04-10]
310
- ### Addition
311
- - add example webpack setup (thx to Kevin Suen)
312
- - build-in regex support without extension (WIP)
313
-
314
- ### Updates
315
- - Change package name to Inputmask to better reflect that Inputmask doesn't require jQuery
316
- - make removing the inputmask take the autoUnmask option into account
317
- - enhance inputfallback event (android)
318
- - restructure project
319
- - performance updates
320
- - initialization
321
-
322
- ### Fixed
323
- - Changes are not reflected back to model when using with Vue2 (mobile) #1468
324
- - Multiple alternators #1553
325
- - Weird Issue with decimal masking when value is like 0.55 #1512
326
- - IE 8 problems with currency and jquery.inputmask.bundle.js #1545
327
- - Rounding error for numeric aliases #1300
328
- - Currency InputMask Input Value issue with numericInput: true #1269
329
- - onCleared event doesn't fire with 'numeric' alias in some case #1495
330
- - Currency InputMask Input Value issue with numericInput: true #1269
331
- - Rounding numeric values #1540
332
- - Casing lower/upper as extend aliases? #1529
333
- - This line of code returns an unexpected value when unmasking as number #1527
334
- - Phone Mask Cursor Issue on Chrome on some Androids.. #1490
335
- - min value issue fix #1177
336
- - static is a reserved keyword #1479
337
- - hasOwnProperty check missing in reverseTokens (numericInput) #1486
338
- - Per-element radixPoint overwrites defaults #1454
339
- - Form not cleaning correctly when AutoUnmask option is set to true #1442
340
- - Form can`t submitted with input[name=disabled] #1473
341
-
342
- ## [3.3.4 - 2016-12-22]
343
- ### Addition
344
- - extra extension points: analyseMask
345
- - colorMask option ~ css styleable mask
346
-
347
- ### Updates
348
- - remove tooltip option
349
- - remove h,s,d,m,y definitions => use the date/time aliases
350
- - phone-alias - fine-tune mask sorting
351
- - make data-inputmask attribute naming configurable (dataAttribute on Inputmask)
352
- - numeric alias move negation symbols to the edges
353
- - handle android predictive text enabled
354
- - rename js/inputmask.dependencyLib.jquery.js to js/inputmask.dependencyLib.js
355
- - rename dist/inputmask.dependencyLib.jquery.js to dist/inputmask.dependencyLib.js
356
- - commonjs dep to inputmask.dependencyLib instead to inputmask.dependencyLib.jquery => can be symlinked to another dependencyLib
357
- - improve inputfallback (Android support)
358
-
359
- ### Fixed
360
- - IE11 : SCRIPT438: Object doesn't support property or method 'isFinite' #1472
361
- - () as literal followed by an optional, doubles the optional template #1453
362
- - Decimal mask excluding zero with custom RadixPoint and GroupSeparator #1418
363
- - Can't remove dot from the middle of a word #1439
364
- - Invalid Leap Year dates can be entered #1368
365
- - jquery.val returns empty value (when using an unsupported input type) #1415
366
- - Losing the decimal part when the maximum number of digits is reached #1257
367
- - Not allowing to change existing number to 0 #1381
368
- - Numbers get swapped when cursor near suffix. #1278
369
- - androidHack: Caret positioning needs some fine tuning #1412
370
- - How can I get "-$123.45", not "$-123.45"? #1360
371
- - Placeholder color #972
372
- - Other color on placeholder (wrap placeholder in span, using contenteditable?) #873
373
- - Error on 3.3.3: Uncaught TypeError: Cannot set property 'generatedInput' of undefined #1399
374
- - ios 8, safari, on first visit unable to enter any characters #826
375
- - Numerica mask not run in Galaxy S5 + Chrome + Android #1357
376
-
377
- ## [3.3.3 - 2016-09-09] - hotfix
378
-
379
- ### Updates
380
- - revert moving jquery dependencyLib
381
- - correct caret positioning - radixFocus & placeholder: ""
382
-
383
- ### Fixed
384
- - Build failure in heroku after release of 3.3.2 #1384
385
- - Error with inputMask any case (v3.3.2) #1383
386
-
387
-
388
- ## [3.3.2 - 2016-09-09]
389
-
390
- ### Addition
391
- - mask-level casing => #1352
392
- - 'casing': 'title' #1277
393
- - add quantifier syntax for digits option in numeric alias. #1374
394
-
395
- ### Updates
396
- - add bundle in nuget package
397
- - change default of positionCaretOnTab to true
398
- - include min files in nuspecs
399
- - better filter for input targets in inputmask.binder.js
400
- - improve alternation selection
401
- - removed nojumps option
402
- - update phone alias implementation
403
- - add unit tests for phonecodes
404
- - replaced radixFocus option by positionCaretOnClick. Allows choice for behavior of the caret on click. (none, lvp (default), radixFocus)
405
- - performance updates
406
- - getmasklength
407
- - use selective caching in getTests
408
-
409
- ### Fixed
410
- - Problems with greedy dynamic masks in current version 3.x #1375
411
- - Croatian phone mask only supports city of Zagreb #1359
412
- - Pasting to masked input not working on Android #1061
413
- - Unable to get property 'forwardPosition' of undefined or null reference IE11 #1342
414
- - Input event doesn't fire in IE #1287
415
- - Dynamically changing mask based on number of entered characters #1336
416
- - change addEventListener not fired in IE11 #1310 - inputmask.dependencyLib.js
417
- - Hide mask's items that have multiple options #678
418
- - Bug when typing after a fixed character #1299
419
- - onUnMask is not being called #1291
420
- - How Can I have caret position on decimal digit(after decimal point) for currency inputmask ? #1282
421
- - How to implement mask for these numbers? #840 (alternator)
422
- - 'setvalue' on mask with a suffix results in suffix being doubled, while `$.fn.val` works fine #1267
423
-
424
- ## [3.3.1] - 2016-04-20
425
-
426
- ### Updates
427
- - better handle alternator logic by merging the locators
428
- - patchValueProperty - enable native value property patch on IE8/IE9
429
- - speedup insert and delete from characters
430
- - adding extra options through option method => auto apply the mask + add noremask option
431
-
432
- ### Fixed
433
- - Safari date mask - Context switch when jquery.valhook fallback is used #1255
434
- - Email alias _@_ => _@_._ #1245
435
- - Safari Error: RangeError: Maximum call stack size exceeded #1241
436
- - Safari Maximum call stack size exceeded when inputmask bound twice #1226
437
-
438
- ## [3.3.0] - 2016-04-05
439
-
440
- ### Addition
441
- - nullable option => switch to return the placeholder or null when nothing is entered
442
- - VIN mask #1199
443
-
444
- ### Updates
445
- - also escape []{}() in the prefix and suffix for decimals
446
- - Can not change integer part when it is "0" #1192
447
- - change funtionality of postValidation => result may be true|false
448
- - improve getmetadata
449
- - patchValueProperty - enable native value property patch on IE10/IE11
450
-
451
- ### Fixed
452
- - PostValidation function fails when using placeholder and digitsOptional is false #1240
453
- - min value issue #1177
454
- - min value for decimal isn't working #1178
455
- - InputMask remove a 0 in left side. (numericInput: true) #1238
456
- - validate regular expression for indian vehicle registration number #1223
457
- - Distinguish empty value and '$ 0.00' value for currency alias #1053
458
- - 'alias': 'numeric', zero value #1221
459
- - Clicking on a highlighted masked field does not set the caret to the first valid position (Chrome) #1218
460
- - Caret Positioned After Last Decimal Digit Disallows Sign Input When digits Option Set #1139
461
- - numeric alias produces "0.00" instead of null when cleared out. #902
462
- - IE8 error: Object doesn't support this property or method #1217
463
- - update negation handling for numeric alias
464
- - NumericInput option can't handle 100.00 #1162
465
- - "0.00" not displayed if "clearMaskOnLostFocus: true" #1171
466
- - Lost zero while replacing a digit in group #1202
467
- - RadixFocus problem #686
468
- - Can not change integer part when it is "0" #1192
469
- - "[object Object]" value after `$element.inputmask('setvalue', '')` call #1208
470
- - Paste does not work properly when using numericInput #1195
471
- - error occurs in safari 9.0.3 (11601.4.4) #1191
472
- - Can not clear value when select all and press BACKSPACE in some circumstance #1179
473
- - Email mask incorrectly including underscore #868 => allowed as not typed => result invalid
474
- - AutoUnmask not working on IE11 #1187
475
- - Email mask not accepting valid emails #971
476
- - Deleting character from input with 'email' alias shifts all data #1052
477
- - Fix some events like paste & cut for Vanilla dependencyLib #1072
478
-
479
- ## [3.2.7] - 2016-01-28
480
- ### Updates
481
- - favor inputfallback for android
482
- - enable IEMobile
483
-
484
- ### Fixed
485
- - Firefox, Android - cursor jumps to the left in numeric mask #1138
486
- - Issue in Android (Samsung GALAXY S5) #825
487
- - time mask, backspace behavior on android chrome #817
488
- - Android Chrome Browser #867
489
- - Mask issue in Android with Swype Keyboard #692
490
- - Pasting to masked input not working on Android #1061
491
- - Decimal point/comma not working on Android 4.4 #1041
492
- - Doesn't work on Android #1073
493
- - numeric input in mobile #897
494
- - Support for Android default browser #368
495
- - Repeating a character and a number On Mobile #898
496
- - Inputs are ignored on FF 39 on Android 5.0.2 #982
497
- - Phone input mask duplicates each character on Samsung Android tablet #834
498
- - Support for Android default browser #368
499
- - fixed "valids is not defined" error #1166
500
-
501
- ## [3.2.6] - 2016-01-25
502
- ### Addition
503
- - add jitMasking option
504
- - supportsInputType option
505
- - staticDefinitionSymbol (see readme)
506
- - include textarea as a valid masking element
507
-
508
- ### Updates
509
- - enhance inputfallback ~ merge mobileinputevent
510
- - caching with cache-dependency check in the getTests fn
511
- - implement missing parts in the jqlite DependencyLib
512
- - Remove namespaces for events (simplifies implementing other dependencyLibs, besides jquery)
513
- - update alternation logic
514
-
515
- ### Fixed
516
- - Windows Phone User unable to set Date #993
517
- - '405 not allowed' error on loading phone-codes.js on certain Ajax configuration. #1156
518
- - Issue with reset of inputmask field #1157
519
- - IE11 clear not working in emulated IE9 mode #1144
520
- - Show placeholder as user types #1141
521
- - Initial value like VAA gets truncated to V-__ with mask like "I{1,3}-ZZ" #1134
522
- - Input mask can't be applied on other HTML5 input types #828
523
- - IE9 SCRIPT445: Object does not support this action #1135
524
- - Multiple Mask Click Focus Error #1133
525
- - Double enter for submit #1131
526
- - Multiple masks #760
527
- - Cursor shifted to the RIGHT align any way. #1088
528
- - No-strict mask #1084
529
- - Inputmask not work with textarea #1128
530
-
531
- ## [3.2.5] - 2015-11-27
532
-
533
- ### Updates
534
- - improve cursor positioning and placeholder handling
535
- - remove $("selector").inputmask("mask", { mask: "99-999 ..." }) format from plugin
536
-
537
- ### Fixed
538
- - Currency validator gives false negative if number of digits in integer part is not multiplier of groupSize #1122
539
- - data-inputmask => mask with optionals not parsed correctly #1119
540
- - Email mask doesn't allow to go to the domain part by mouse #885
541
- - alias options from 'data-inputmask' is not used anymore #1113
542
- - Numeric extensions don't supported with vanilla DependencyLib #1116
543
-
544
- ## [3.2.4] - 2015-11-20
545
-
546
- ### Updates
547
- - allow passing an element id to the mask function
548
- - allow passing a selector to the mask function
549
- - fix for bower package
550
-
551
- ### Fixed
552
- - get the pressed key onKeyValidation #1114
553
- - write a global function for onKeyValidation #1111 => update readme
554
- - NumericInput Causes err #856
555
- - Certain phones not inputable #758
556
- - I have a problems with mask input, I can't input Ukraine phone +380(XX)XXX-XX-XX #1050
557
- - you can't write ukraine number to phone field +380999999999 #1019
558
- - autoUnmask not work in newest release #1109
559
- - Definition {_} throws an exception #1106 => update readme
560
- - Uncaught TypeError for "percentage" alias #1108
561
- - Wrong behavior for symbol delete in ip alias #1092
562
- - fix element validation for the vanilla dependencyLib #1104
563
-
564
- ## [3.2.3] - 2015-11-09
565
-
566
- ### Addition
567
- - Inputmask.remove
568
- - inputmask.binding => automated inputmask binding for html attributes
569
- - Add tooltip option
570
-
571
- ### Updates
572
- - fix bug in maskscache - context mixing
573
- - allow passing multiple inputs to mask function
574
- - Improve handling of compositionevents
575
- - improve extendAliases, extendDefinitions, extendDefaults
576
-
577
- ### Fixed
578
- - Cannot erase input value throw mask symbols (Android 4.4, Android 4.2) #1090
579
- - CTRL-x / Cut issue #948
580
- - Double "Change" action when pressing Enter in Firefox #1070
581
- - upper/lower case handling in data-inputmask-* #1079
582
- - IE8 Null values after submit #1076
583
- - Each character repeats on Mobile #912
584
- - extra tooltip property #1071
585
- - Numeric aliases insert '0' in input after clearing if there was fraction part #1067
586
- - Clear optional tail in getvalue. See #1055 #1065
587
-
588
- ## [3.2.2] - 2015-10-07
589
-
590
- ### Fixed
591
- - Missing comma in bower.json and component.json #1064
592
-
593
- ## [3.2.1] - 2015-10-07
594
-
595
- ### Addition
596
- - inputmask.dependencyLib.jquery
597
- - inputmask.dependencyLib.jqlite
598
-
599
- ### Updates
600
- - namespace dependencyLib => inputmask.dependencyLib
601
- - fix jquery.inputmask.bundle.js
602
- - fix dependency paths for browserify
603
- - update files to be included for package.json, bower.json, component.json
604
-
605
- ### Fixed
606
- - oncomplete not called when set with option function #1033
607
- - oncompleate set value incorrect action #1039
608
- - JQuery dependency #517
609
- - IsValid on Optional Mask returning false #1055
610
- - Focus loop on IE9 with numeric.extensions #989
611
- - Currency with autogroup and no digits not working #1062
612
- - field input width characters cropped while writing #1060 (regression fix)
613
- - DependencyLib error in Internet Explorer #1047
614
- - Dynamically switching mask in same input box not functioning as expected #1016
615
- - 3.2.0 Error extendDefinitions and extendAliases not functions #1024
616
- - Browserify error: `Error: Cannot find module 'inputmask' from '/Users/.../node_modules/jquery.inputmask/dist/inputmask` #1030
617
- - Invalid JSON phone-uk.js #1025
618
-
619
- ## [3.2.0] - 2015-09-04
620
-
621
- ### Addition
622
- - add option command to set and retrieve options on an inputmask
623
- - dependencyLib wrapper around needed jQuery functionality
624
- - mac address alias #986
625
- - tabThrough option - Tab and autoselect mask parts #433
626
- - eslint testing in grunt validate task
627
- - $.fn.inputmask("setvalue", value)
628
- - jquery.clone support (also see $.fn.inputmask("setvalue", value))
629
- - hexadecimal definition (# in inputmask.extensions.js)
630
- - positionCaretOnTab option
631
- - Inputmask.unmask
632
- - numeric alias - increment/decrement by ctrl-up/ctrl-down
633
- - numeric alias - round values
634
- - percentage alias
635
- - Inputmask class
636
- - setting defaults / definitions / aliases
637
- - Inputmask.extendDefaults
638
- - Inputmask.extendDefinitions
639
- - Inputmask.extendAliases
640
-
641
- ### Updates
642
- - enhance caret positioning behavior & radicFocus
643
- - change alfanumeric uppercase definition from # to &
644
- - numericInput option also possible on dynamic-masks
645
- - remove $.inputmask in favor of Inputmask class
646
- - remove "jquery." in the naming of the extensions to better reflect their denpendency
647
- - separate jquery plugin code from the inputmask core (first step to remove jquery dependency from the inputmask core)
648
- - Update placeholder handling
649
-
650
- ### Fixed
651
- - Mask cleared on ajax submit or jquery unobtrusive validation error #1020
652
- - Update readme for numerics #994
653
- - extra zeros in currency alias #1008
654
- - masks parsing generate a Maximum call stack size exceeded #1007
655
- - Issue using datamask-input attributes and event handlers #992
656
- - Set specific inputmask option on already initialized control #949
657
- - Money question #644
658
- - Decimal numbers with fixed decimal part #990
659
- - Focus loop on IE9 with numeric.extensions #989
660
- - Numeric inputs with default value are setted to blank when submit the form #983
661
- - Default Enter key function getting lost on an input mask text field #938
662
- - Add JSHint and JSCS #879 => used eslint instead
663
- - On google chrome, cannot use jquery to clone the inputmask control with data and events #713
664
- - Cannot overwrite characters when highlighting the characters to the right of the decimal #974
665
- - Decimal mask accepts "123,456." (RadixPoint with no number after it) #973
666
- - Make numericInput work with complex masks #963
667
- - Auto position cursor at end of data on focus #965
668
- - Decimal separator conversion #919
669
- - Entering a period on a blank 'numeric' alias input not allowed #888
670
- - Typing 1000 becomes 1.00 using groupSeparator="." #959
671
- - phone-codes.js is missing when installing with bower #937
672
- - Repeat function doesn't work for dynamic masks #960
673
- - Provide convenient method to unmask value #929
674
- - Min value doesn't work with allowMinus #951
675
- - Escape value is inconsistent after mask #935
676
- - Escape optional marker, quantifiable marker, alternator marker and backslash not working #930
677
- - Is numeric carret position broken? #928
678
- - Decimal looses digits #924
679
- - Firefox: cursor jumps to the right when clicking anywhere on the value #921
680
- - Numeric inputMask doesn't rounds value #754
681
- - <strike>Chinese / Japanese characters are unable to mask #198</strike>
682
- - <strike>Infinite Loop on IE (v11) when using Japanese IME Keyboard #749</strike>
683
- - Delete key not working properly #799
684
- - Selecting and overwriting text will delete the character to the immediate right #914
685
- - Can't delete digits after decimal point on negative numbers #892
686
- - decimal : extra number after delete and typing new numbers #904
687
- - Dynamic masks with {*} and zero repeats #875
688
- - Mask does not alternate back after deleting digit #905
689
- - never trigger 'input' event when paste after invoke inputmask #776
690
- - Script looping start when add '.' between decimal values #870 ('.' part)
691
-
692
- ## [3.1.63] - 2015-05-04
693
- ### Addition
694
- - Support for CommonJS (Browserify)
695
-
696
- ### Updates
697
- - Allow masking the text content of other html-elements (other then div)
698
- - Make alternators correctly handle alternations with different lengths
699
- - better determine the last required position with multiple masks
700
-
701
- ### Fixed
702
- - Script looping start when add '.' between decimal values #870 (script loop)
703
- - Static masks fails when we set value="2015" for an input field where data-inputmask was "2999" #903
704
- - contenteditable decimal #882
705
- - Tab out does not work when element is readonly #884
706
- - Change mask default for allowPlus and allowMinus #896
707
- - Browser hangs after trying to type some additional digits at the start of a date field #876
708
- - inputmask decimal with integerDigits or digits with maxlength can cause Browser freezed #889
709
- - masking a password field #821 (reenable type=password)
710
- - email inputmask "isComplete" always returns true #855
711
- - When two masks specified backspace clears the whole input instead of last char #780
712
- - Phone extention backspace problem #454
713
-
714
- ## [3.1.62] - 2015-03-26
715
- ### Addition
716
- - Numeric alias: add unmaskAsNumber option
717
- - import russian phone codes from inputmask-multi
718
- - enable masking the text content in a div
719
- - enable contenteditable elements for inputmask
720
- - Update Command object to handle inserts and allow for multiple removes
721
- - Add a change log
722
- - Add Component package manager support - component.json
723
-
724
- ### Fixed
725
- - updating a value on onincomplete event doesn't work #955
726
- - $.inputmask.isValid("1A", { mask : "1A" }) returns false #858
727
- - IE8 doesn't support window.getSelection js error #853
728
- - Email with dot - paste not working #847
729
- - Standard phone numbers in Brazil #836 (Part 1)
730
- - Sequentional optional parts do not fully match #699
731
- - How i fix that number problem? #835
732
- - Form reset doesn't get same value as initial mask #842
733
- - Numeric extension doesn't seem to support min/max values #830
734
- - Numeric max filter #837
735
- - Mask cache - 2 definitions for same mask #831
736
- - Adding parentheses as a negative format for Decimal and Integer aliases (100) #451
737
- - Should not allow "-" or "+" as numbers #815
738
- - isComplete erroneously returning false when backspacing with an optional mask #824
739
-
740
- ## [3.1.61] - 2015-02-05
741
-
742
- Initial start of a changelog
743
-
744
- See commits for previous history.