use-mask-input 1.0.1 → 2.0.0

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