inputmask.js 121 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642
  1. /*!
  2. * inputmask.js
  3. * https://github.com/RobinHerbots/Inputmask
  4. * Copyright (c) 2010 - 2017 Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 3.3.7
  7. */
  8. !function(factory) {
  9. "function" == typeof define && define.amd ? define([ "./dependencyLibs/inputmask.dependencyLib", "./global/window", "./global/document" ], factory) : "object" == typeof exports ? module.exports = factory(require("./dependencyLibs/inputmask.dependencyLib"), require("./global/window"), require("./global/document")) : window.Inputmask = factory(window.dependencyLib || jQuery, window, document);
  10. }(function($, window, document, undefined) {
  11. function Inputmask(alias, options, internal) {
  12. if (!(this instanceof Inputmask)) return new Inputmask(alias, options, internal);
  13. this.el = undefined, this.events = {}, this.maskset = undefined, this.refreshValue = !1,
  14. !0 !== internal && ($.isPlainObject(alias) ? options = alias : (options = options || {},
  15. options.alias = alias), this.opts = $.extend(!0, {}, this.defaults, options), this.noMasksCache = options && options.definitions !== undefined,
  16. this.userOptions = options || {}, this.isRTL = this.opts.numericInput, resolveAlias(this.opts.alias, options, this.opts));
  17. }
  18. function resolveAlias(aliasStr, options, opts) {
  19. var aliasDefinition = Inputmask.prototype.aliases[aliasStr];
  20. return aliasDefinition ? (aliasDefinition.alias && resolveAlias(aliasDefinition.alias, undefined, opts),
  21. $.extend(!0, opts, aliasDefinition), $.extend(!0, opts, options), !0) : (null === opts.mask && (opts.mask = aliasStr),
  22. !1);
  23. }
  24. function generateMaskSet(opts, nocache) {
  25. function generateMask(mask, metadata, opts) {
  26. var regexMask = !1;
  27. if (null !== mask && "" !== mask || (regexMask = null !== opts.regex, regexMask ? (mask = opts.regex,
  28. mask = mask.replace(/^(\^)(.*)(\$)$/, "$2")) : (regexMask = !0, mask = ".*")), 1 === mask.length && !1 === opts.greedy && 0 !== opts.repeat && (opts.placeholder = ""),
  29. opts.repeat > 0 || "*" === opts.repeat || "+" === opts.repeat) {
  30. var repeatStart = "*" === opts.repeat ? 0 : "+" === opts.repeat ? 1 : opts.repeat;
  31. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  32. }
  33. var masksetDefinition, maskdefKey = regexMask ? "regex_" + opts.regex : opts.numericInput ? mask.split("").reverse().join("") : mask;
  34. return Inputmask.prototype.masksCache[maskdefKey] === undefined || !0 === nocache ? (masksetDefinition = {
  35. mask: mask,
  36. maskToken: Inputmask.prototype.analyseMask(mask, regexMask, opts),
  37. validPositions: {},
  38. _buffer: undefined,
  39. buffer: undefined,
  40. tests: {},
  41. metadata: metadata,
  42. maskLength: undefined
  43. }, !0 !== nocache && (Inputmask.prototype.masksCache[maskdefKey] = masksetDefinition,
  44. masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[maskdefKey]))) : masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[maskdefKey]),
  45. masksetDefinition;
  46. }
  47. if ($.isFunction(opts.mask) && (opts.mask = opts.mask(opts)), $.isArray(opts.mask)) {
  48. if (opts.mask.length > 1) {
  49. opts.keepStatic = null === opts.keepStatic || opts.keepStatic;
  50. var altMask = opts.groupmarker.start;
  51. return $.each(opts.numericInput ? opts.mask.reverse() : opts.mask, function(ndx, msk) {
  52. altMask.length > 1 && (altMask += opts.groupmarker.end + opts.alternatormarker + opts.groupmarker.start),
  53. msk.mask === undefined || $.isFunction(msk.mask) ? altMask += msk : altMask += msk.mask;
  54. }), altMask += opts.groupmarker.end, generateMask(altMask, opts.mask, opts);
  55. }
  56. opts.mask = opts.mask.pop();
  57. }
  58. return opts.mask && opts.mask.mask !== undefined && !$.isFunction(opts.mask.mask) ? generateMask(opts.mask.mask, opts.mask, opts) : generateMask(opts.mask, opts.mask, opts);
  59. }
  60. function maskScope(actionObj, maskset, opts) {
  61. function getMaskTemplate(baseOnInput, minimalPos, includeMode) {
  62. minimalPos = minimalPos || 0;
  63. var ndxIntlzr, test, testPos, maskTemplate = [], pos = 0, lvp = getLastValidPosition();
  64. -1 === (maxLength = el !== undefined ? el.maxLength : undefined) && (maxLength = undefined);
  65. do {
  66. !0 === baseOnInput && getMaskSet().validPositions[pos] ? (testPos = getMaskSet().validPositions[pos],
  67. test = testPos.match, ndxIntlzr = testPos.locator.slice(), maskTemplate.push(!0 === includeMode ? testPos.input : !1 === includeMode ? test.nativeDef : getPlaceholder(pos, test))) : (testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  68. test = testPos.match, ndxIntlzr = testPos.locator.slice(), (!1 === opts.jitMasking || pos < lvp || "number" == typeof opts.jitMasking && isFinite(opts.jitMasking) && opts.jitMasking > pos) && maskTemplate.push(!1 === includeMode ? test.nativeDef : getPlaceholder(pos, test))),
  69. pos++;
  70. } while ((maxLength === undefined || pos < maxLength) && (null !== test.fn || "" !== test.def) || minimalPos > pos);
  71. return "" === maskTemplate[maskTemplate.length - 1] && maskTemplate.pop(), getMaskSet().maskLength = pos + 1,
  72. maskTemplate;
  73. }
  74. function getMaskSet() {
  75. return maskset;
  76. }
  77. function resetMaskSet(soft) {
  78. var maskset = getMaskSet();
  79. maskset.buffer = undefined, !0 !== soft && (maskset.validPositions = {}, maskset.p = 0);
  80. }
  81. function getLastValidPosition(closestTo, strict, validPositions) {
  82. var before = -1, after = -1, valids = validPositions || getMaskSet().validPositions;
  83. closestTo === undefined && (closestTo = -1);
  84. for (var posNdx in valids) {
  85. var psNdx = parseInt(posNdx);
  86. valids[psNdx] && (strict || !0 !== valids[psNdx].generatedInput) && (psNdx <= closestTo && (before = psNdx),
  87. psNdx >= closestTo && (after = psNdx));
  88. }
  89. return -1 !== before && closestTo - before > 1 || after < closestTo ? before : after;
  90. }
  91. function stripValidPositions(start, end, nocheck, strict) {
  92. var i, startPos = start, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), needsValidation = !1;
  93. for (getMaskSet().p = start, i = end - 1; i >= startPos; i--) getMaskSet().validPositions[i] !== undefined && (!0 !== nocheck && (!getMaskSet().validPositions[i].match.optionality && function(pos) {
  94. var posMatch = getMaskSet().validPositions[pos];
  95. if (posMatch !== undefined && null === posMatch.match.fn) {
  96. var prevMatch = getMaskSet().validPositions[pos - 1], nextMatch = getMaskSet().validPositions[pos + 1];
  97. return prevMatch !== undefined && nextMatch !== undefined;
  98. }
  99. return !1;
  100. }(i) || !1 === opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts)) || delete getMaskSet().validPositions[i]);
  101. for (resetMaskSet(!0), i = startPos + 1; i <= getLastValidPosition(); ) {
  102. for (;getMaskSet().validPositions[startPos] !== undefined; ) startPos++;
  103. if (i < startPos && (i = startPos + 1), getMaskSet().validPositions[i] === undefined && isMask(i)) i++; else {
  104. var t = getTestTemplate(i);
  105. !1 === needsValidation && positionsClone[startPos] && positionsClone[startPos].match.def === t.match.def ? (getMaskSet().validPositions[startPos] = $.extend(!0, {}, positionsClone[startPos]),
  106. getMaskSet().validPositions[startPos].input = t.input, delete getMaskSet().validPositions[i],
  107. i++) : positionCanMatchDefinition(startPos, t.match.def) ? !1 !== isValid(startPos, t.input || getPlaceholder(i), !0) && (delete getMaskSet().validPositions[i],
  108. i++, needsValidation = !0) : isMask(i) || (i++, startPos--), startPos++;
  109. }
  110. }
  111. resetMaskSet(!0);
  112. }
  113. function determineTestTemplate(tests, guessNextBest) {
  114. for (var testPos, testPositions = tests, lvp = getLastValidPosition(), lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0], lvTestAltArr = lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation].toString().split(",") : [], ndx = 0; ndx < testPositions.length && (testPos = testPositions[ndx],
  115. !(testPos.match && (opts.greedy && !0 !== testPos.match.optionalQuantifier || (!1 === testPos.match.optionality || !1 === testPos.match.newBlockMarker) && !0 !== testPos.match.optionalQuantifier) && (lvTest.alternation === undefined || lvTest.alternation !== testPos.alternation || testPos.locator[lvTest.alternation] !== undefined && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr))) || !0 === guessNextBest && (null !== testPos.match.fn || /[0-9a-bA-Z]/.test(testPos.match.def))); ndx++) ;
  116. return testPos;
  117. }
  118. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  119. return getMaskSet().validPositions[pos] || determineTestTemplate(getTests(pos, ndxIntlzr ? ndxIntlzr.slice() : ndxIntlzr, tstPs));
  120. }
  121. function getTest(pos) {
  122. return getMaskSet().validPositions[pos] ? getMaskSet().validPositions[pos] : getTests(pos)[0];
  123. }
  124. function positionCanMatchDefinition(pos, def) {
  125. for (var valid = !1, tests = getTests(pos), tndx = 0; tndx < tests.length; tndx++) if (tests[tndx].match && tests[tndx].match.def === def) {
  126. valid = !0;
  127. break;
  128. }
  129. return valid;
  130. }
  131. function getTests(pos, ndxIntlzr, tstPs) {
  132. function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) {
  133. function handleMatch(match, loopNdx, quantifierRecurse) {
  134. function isFirstMatch(latestMatch, tokenGroup) {
  135. var firstMatch = 0 === $.inArray(latestMatch, tokenGroup.matches);
  136. return firstMatch || $.each(tokenGroup.matches, function(ndx, match) {
  137. if (!0 === match.isQuantifier && (firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1]))) return !1;
  138. }), firstMatch;
  139. }
  140. function resolveNdxInitializer(pos, alternateNdx, targetAlternation) {
  141. var bestMatch, indexPos;
  142. if (getMaskSet().validPositions[pos - 1] && targetAlternation && getMaskSet().tests[pos]) for (var vpAlternation = getMaskSet().validPositions[pos - 1].locator, tpAlternation = getMaskSet().tests[pos][0].locator, i = 0; i < targetAlternation; i++) if (vpAlternation[i] !== tpAlternation[i]) return vpAlternation.slice(targetAlternation + 1);
  143. return (getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) && $.each(getMaskSet().tests[pos] || [ getMaskSet().validPositions[pos] ], function(ndx, lmnt) {
  144. var alternation = targetAlternation !== undefined ? targetAlternation : lmnt.alternation, ndxPos = lmnt.locator[alternation] !== undefined ? lmnt.locator[alternation].toString().indexOf(alternateNdx) : -1;
  145. (indexPos === undefined || ndxPos < indexPos) && -1 !== ndxPos && (bestMatch = lmnt,
  146. indexPos = ndxPos);
  147. }), bestMatch ? bestMatch.locator.slice((targetAlternation !== undefined ? targetAlternation : bestMatch.alternation) + 1) : targetAlternation !== undefined ? resolveNdxInitializer(pos, alternateNdx) : undefined;
  148. }
  149. if (testPos > 1e4) throw "Inputmask: There is probably an error in your mask definition or in the code. Create an issue on github with an example of the mask you are using. " + getMaskSet().mask;
  150. if (testPos === pos && match.matches === undefined) return matches.push({
  151. match: match,
  152. locator: loopNdx.reverse(),
  153. cd: cacheDependency
  154. }), !0;
  155. if (match.matches !== undefined) {
  156. if (match.isGroup && quantifierRecurse !== match) {
  157. if (match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx)) return !0;
  158. } else if (match.isOptional) {
  159. var optionalToken = match;
  160. if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) {
  161. if (latestMatch = matches[matches.length - 1].match, !isFirstMatch(latestMatch, optionalToken)) return !0;
  162. insertStop = !0, testPos = pos;
  163. }
  164. } else if (match.isAlternator) {
  165. var maltMatches, alternateToken = match, malternateMatches = [], currentMatches = matches.slice(), loopNdxCnt = loopNdx.length, altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  166. if (-1 === altIndex || "string" == typeof altIndex) {
  167. var amndx, currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr = [];
  168. if ("string" == typeof altIndex) altIndexArr = altIndex.split(","); else for (amndx = 0; amndx < alternateToken.matches.length; amndx++) altIndexArr.push(amndx);
  169. for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
  170. if (amndx = parseInt(altIndexArr[ndx]), matches = [], ndxInitializer = resolveNdxInitializer(testPos, amndx, loopNdxCnt) || ndxInitializerClone.slice(),
  171. !0 !== (match = handleMatch(alternateToken.matches[amndx] || maskToken.matches[amndx], [ amndx ].concat(loopNdx), quantifierRecurse) || match) && match !== undefined && altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length) {
  172. var ntndx = $.inArray(match, maskToken.matches) + 1;
  173. maskToken.matches.length > ntndx && (match = handleMatch(maskToken.matches[ntndx], [ ntndx ].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse)) && (altIndexArr.push(ntndx.toString()),
  174. $.each(matches, function(ndx, lmnt) {
  175. lmnt.alternation = loopNdx.length - 1;
  176. }));
  177. }
  178. maltMatches = matches.slice(), testPos = currentPos, matches = [];
  179. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  180. var altMatch = maltMatches[ndx1], dropMatch = !1;
  181. altMatch.alternation = altMatch.alternation || loopNdxCnt;
  182. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  183. var altMatch2 = malternateMatches[ndx2];
  184. if ("string" != typeof altIndex || -1 !== $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr)) {
  185. if (function(source, target) {
  186. return source.match.nativeDef === target.match.nativeDef || source.match.def === target.match.nativeDef || source.match.nativeDef === target.match.def;
  187. }(altMatch, altMatch2)) {
  188. dropMatch = !0, altMatch.alternation === altMatch2.alternation && -1 === altMatch2.locator[altMatch2.alternation].toString().indexOf(altMatch.locator[altMatch.alternation]) && (altMatch2.locator[altMatch2.alternation] = altMatch2.locator[altMatch2.alternation] + "," + altMatch.locator[altMatch.alternation],
  189. altMatch2.alternation = altMatch.alternation), altMatch.match.nativeDef === altMatch2.match.def && (altMatch.locator[altMatch.alternation] = altMatch2.locator[altMatch2.alternation],
  190. malternateMatches.splice(malternateMatches.indexOf(altMatch2), 1, altMatch));
  191. break;
  192. }
  193. if (altMatch.match.def === altMatch2.match.def) {
  194. dropMatch = !1;
  195. break;
  196. }
  197. if (function(source, target) {
  198. return null === source.match.fn && null !== target.match.fn && target.match.fn.test(source.match.def, getMaskSet(), pos, !1, opts, !1);
  199. }(altMatch, altMatch2) || function(source, target) {
  200. return null !== source.match.fn && null !== target.match.fn && target.match.fn.test(source.match.def.replace(/[\[\]]/g, ""), getMaskSet(), pos, !1, opts, !1);
  201. }(altMatch, altMatch2)) {
  202. altMatch.alternation == altMatch2.alternation && -1 === altMatch.locator[altMatch.alternation].toString().indexOf(altMatch2.locator[altMatch2.alternation].toString().split("")[0]) && (altMatch.na = altMatch.na || altMatch.locator[altMatch.alternation].toString(),
  203. -1 === altMatch.na.indexOf(altMatch.locator[altMatch.alternation].toString().split("")[0]) && (altMatch.na = altMatch.na + "," + altMatch.locator[altMatch2.alternation].toString().split("")[0]),
  204. dropMatch = !0, altMatch.locator[altMatch.alternation] = altMatch2.locator[altMatch2.alternation].toString().split("")[0] + "," + altMatch.locator[altMatch.alternation],
  205. malternateMatches.splice(malternateMatches.indexOf(altMatch2), 0, altMatch));
  206. break;
  207. }
  208. }
  209. }
  210. dropMatch || malternateMatches.push(altMatch);
  211. }
  212. }
  213. "string" == typeof altIndex && (malternateMatches = $.map(malternateMatches, function(lmnt, ndx) {
  214. if (isFinite(ndx)) {
  215. var alternation = lmnt.alternation, altLocArr = lmnt.locator[alternation].toString().split(",");
  216. lmnt.locator[alternation] = undefined, lmnt.alternation = undefined;
  217. for (var alndx = 0; alndx < altLocArr.length; alndx++) -1 !== $.inArray(altLocArr[alndx], altIndexArr) && (lmnt.locator[alternation] !== undefined ? (lmnt.locator[alternation] += ",",
  218. lmnt.locator[alternation] += altLocArr[alndx]) : lmnt.locator[alternation] = parseInt(altLocArr[alndx]),
  219. lmnt.alternation = alternation);
  220. if (lmnt.locator[alternation] !== undefined) return lmnt;
  221. }
  222. })), matches = currentMatches.concat(malternateMatches), testPos = pos, insertStop = matches.length > 0,
  223. match = malternateMatches.length > 0, ndxInitializer = ndxInitializerClone.slice();
  224. } else match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [ altIndex ].concat(loopNdx), quantifierRecurse);
  225. if (match) return !0;
  226. } else if (match.isQuantifier && quantifierRecurse !== maskToken.matches[$.inArray(match, maskToken.matches) - 1]) for (var qt = match, qndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max) && testPos <= pos; qndx++) {
  227. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  228. if (match = handleMatch(tokenGroup, [ qndx ].concat(loopNdx), tokenGroup)) {
  229. if (latestMatch = matches[matches.length - 1].match, latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1,
  230. isFirstMatch(latestMatch, tokenGroup)) {
  231. if (qndx > qt.quantifier.min - 1) {
  232. insertStop = !0, testPos = pos;
  233. break;
  234. }
  235. return !0;
  236. }
  237. return !0;
  238. }
  239. } else if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) return !0;
  240. } else testPos++;
  241. }
  242. for (var tndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; tndx < maskToken.matches.length; tndx++) if (!0 !== maskToken.matches[tndx].isQuantifier) {
  243. var match = handleMatch(maskToken.matches[tndx], [ tndx ].concat(loopNdx), quantifierRecurse);
  244. if (match && testPos === pos) return match;
  245. if (testPos > pos) break;
  246. }
  247. }
  248. function filterTests(tests) {
  249. if (opts.keepStatic && pos > 0 && tests.length > 1 + ("" === tests[tests.length - 1].match.def ? 1 : 0) && !0 !== tests[0].match.optionality && !0 !== tests[0].match.optionalQuantifier && null === tests[0].match.fn && !/[0-9a-bA-Z]/.test(tests[0].match.def)) {
  250. if (getMaskSet().validPositions[pos - 1] === undefined) return [ determineTestTemplate(tests) ];
  251. if (getMaskSet().validPositions[pos - 1].alternation === tests[0].alternation) return [ determineTestTemplate(tests) ];
  252. if (getMaskSet().validPositions[pos - 1]) return [ determineTestTemplate(tests) ];
  253. }
  254. return tests;
  255. }
  256. var latestMatch, maskTokens = getMaskSet().maskToken, testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr ? ndxIntlzr.slice() : [ 0 ], matches = [], insertStop = !1, cacheDependency = ndxIntlzr ? ndxIntlzr.join("") : "";
  257. if (pos > -1) {
  258. if (ndxIntlzr === undefined) {
  259. for (var test, previousPos = pos - 1; (test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) === undefined && previousPos > -1; ) previousPos--;
  260. test !== undefined && previousPos > -1 && (ndxInitializer = function(tests) {
  261. var locator = [];
  262. return $.isArray(tests) || (tests = [ tests ]), tests.length > 0 && (tests[0].alternation === undefined ? (locator = determineTestTemplate(tests.slice()).locator.slice(),
  263. 0 === locator.length && (locator = tests[0].locator.slice())) : $.each(tests, function(ndx, tst) {
  264. if ("" !== tst.def) if (0 === locator.length) locator = tst.locator.slice(); else for (var i = 0; i < locator.length; i++) tst.locator[i] && -1 === locator[i].toString().indexOf(tst.locator[i]) && (locator[i] += "," + tst.locator[i]);
  265. })), locator;
  266. }(test), cacheDependency = ndxInitializer.join(""), testPos = previousPos);
  267. }
  268. if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) return filterTests(getMaskSet().tests[pos]);
  269. for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
  270. if (resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [ mtndx ]) && testPos === pos || testPos > pos) break;
  271. }
  272. }
  273. return (0 === matches.length || insertStop) && matches.push({
  274. match: {
  275. fn: null,
  276. cardinality: 0,
  277. optionality: !0,
  278. casing: null,
  279. def: "",
  280. placeholder: ""
  281. },
  282. locator: [],
  283. cd: cacheDependency
  284. }), ndxIntlzr !== undefined && getMaskSet().tests[pos] ? filterTests($.extend(!0, [], matches)) : (getMaskSet().tests[pos] = $.extend(!0, [], matches),
  285. filterTests(getMaskSet().tests[pos]));
  286. }
  287. function getBufferTemplate() {
  288. return getMaskSet()._buffer === undefined && (getMaskSet()._buffer = getMaskTemplate(!1, 1),
  289. getMaskSet().buffer === undefined && (getMaskSet().buffer = getMaskSet()._buffer.slice())),
  290. getMaskSet()._buffer;
  291. }
  292. function getBuffer(noCache) {
  293. return getMaskSet().buffer !== undefined && !0 !== noCache || (getMaskSet().buffer = getMaskTemplate(!0, getLastValidPosition(), !0)),
  294. getMaskSet().buffer;
  295. }
  296. function refreshFromBuffer(start, end, buffer) {
  297. var i, p;
  298. if (!0 === start) resetMaskSet(), start = 0, end = buffer.length; else for (i = start; i < end; i++) delete getMaskSet().validPositions[i];
  299. for (p = start, i = start; i < end; i++) if (resetMaskSet(!0), buffer[i] !== opts.skipOptionalPartCharacter) {
  300. var valResult = isValid(p, buffer[i], !0, !0);
  301. !1 !== valResult && (resetMaskSet(!0), p = valResult.caret !== undefined ? valResult.caret : valResult.pos + 1);
  302. }
  303. }
  304. function casing(elem, test, pos) {
  305. switch (opts.casing || test.casing) {
  306. case "upper":
  307. elem = elem.toUpperCase();
  308. break;
  309. case "lower":
  310. elem = elem.toLowerCase();
  311. break;
  312. case "title":
  313. var posBefore = getMaskSet().validPositions[pos - 1];
  314. elem = 0 === pos || posBefore && posBefore.input === String.fromCharCode(Inputmask.keyCode.SPACE) ? elem.toUpperCase() : elem.toLowerCase();
  315. break;
  316. default:
  317. if ($.isFunction(opts.casing)) {
  318. var args = Array.prototype.slice.call(arguments);
  319. args.push(getMaskSet().validPositions), elem = opts.casing.apply(this, args);
  320. }
  321. }
  322. return elem;
  323. }
  324. function checkAlternationMatch(altArr1, altArr2, na) {
  325. for (var naNdx, altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1), isMatch = !1, naArr = na !== undefined ? na.split(",") : [], i = 0; i < naArr.length; i++) -1 !== (naNdx = altArr1.indexOf(naArr[i])) && altArr1.splice(naNdx, 1);
  326. for (var alndx = 0; alndx < altArr1.length; alndx++) if (-1 !== $.inArray(altArr1[alndx], altArrC)) {
  327. isMatch = !0;
  328. break;
  329. }
  330. return isMatch;
  331. }
  332. function isValid(pos, c, strict, fromSetValid, fromAlternate) {
  333. function isSelection(posObj) {
  334. var selection = isRTL ? posObj.begin - posObj.end > 1 || posObj.begin - posObj.end == 1 : posObj.end - posObj.begin > 1 || posObj.end - posObj.begin == 1;
  335. return selection && 0 === posObj.begin && posObj.end === getMaskSet().maskLength ? "full" : selection;
  336. }
  337. function _isValid(position, c, strict) {
  338. var rslt = !1;
  339. return $.each(getTests(position), function(ndx, tst) {
  340. for (var test = tst.match, loopend = c ? 1 : 0, chrs = "", i = test.cardinality; i > loopend; i--) chrs += getBufferElement(position - (i - 1));
  341. if (c && (chrs += c), getBuffer(!0), !1 !== (rslt = null != test.fn ? test.fn.test(chrs, getMaskSet(), position, strict, opts, isSelection(pos)) : (c === test.def || c === opts.skipOptionalPartCharacter) && "" !== test.def && {
  342. c: getPlaceholder(position, test, !0) || test.def,
  343. pos: position
  344. })) {
  345. var elem = rslt.c !== undefined ? rslt.c : c;
  346. elem = elem === opts.skipOptionalPartCharacter && null === test.fn ? getPlaceholder(position, test, !0) || test.def : elem;
  347. var validatedPos = position, possibleModifiedBuffer = getBuffer();
  348. if (rslt.remove !== undefined && ($.isArray(rslt.remove) || (rslt.remove = [ rslt.remove ]),
  349. $.each(rslt.remove.sort(function(a, b) {
  350. return b - a;
  351. }), function(ndx, lmnt) {
  352. stripValidPositions(lmnt, lmnt + 1, !0);
  353. })), rslt.insert !== undefined && ($.isArray(rslt.insert) || (rslt.insert = [ rslt.insert ]),
  354. $.each(rslt.insert.sort(function(a, b) {
  355. return a - b;
  356. }), function(ndx, lmnt) {
  357. isValid(lmnt.pos, lmnt.c, !0, fromSetValid);
  358. })), rslt.refreshFromBuffer) {
  359. var refresh = rslt.refreshFromBuffer;
  360. if (refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, possibleModifiedBuffer),
  361. rslt.pos === undefined && rslt.c === undefined) return rslt.pos = getLastValidPosition(),
  362. !1;
  363. if ((validatedPos = rslt.pos !== undefined ? rslt.pos : position) !== position) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0, fromSetValid)),
  364. !1;
  365. } else if (!0 !== rslt && rslt.pos !== undefined && rslt.pos !== position && (validatedPos = rslt.pos,
  366. refreshFromBuffer(position, validatedPos, getBuffer().slice()), validatedPos !== position)) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0)),
  367. !1;
  368. return (!0 === rslt || rslt.pos !== undefined || rslt.c !== undefined) && (ndx > 0 && resetMaskSet(!0),
  369. setValidPosition(validatedPos, $.extend({}, tst, {
  370. input: casing(elem, test, validatedPos)
  371. }), fromSetValid, isSelection(pos)) || (rslt = !1), !1);
  372. }
  373. }), rslt;
  374. }
  375. function setValidPosition(pos, validTest, fromSetValid, isSelection) {
  376. if (isSelection || opts.insertMode && getMaskSet().validPositions[pos] !== undefined && fromSetValid === undefined) {
  377. var i, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), lvp = getLastValidPosition(undefined, !0);
  378. for (i = pos; i <= lvp; i++) delete getMaskSet().validPositions[i];
  379. getMaskSet().validPositions[pos] = $.extend(!0, {}, validTest);
  380. var j, valid = !0, vps = getMaskSet().validPositions, needsValidation = !1, initialLength = getMaskSet().maskLength;
  381. for (i = j = pos; i <= lvp; i++) {
  382. var t = positionsClone[i];
  383. if (t !== undefined) for (var posMatch = j; posMatch < getMaskSet().maskLength && (null === t.match.fn && vps[i] && (!0 === vps[i].match.optionalQuantifier || !0 === vps[i].match.optionality) || null != t.match.fn); ) {
  384. if (posMatch++, !1 === needsValidation && positionsClone[posMatch] && positionsClone[posMatch].match.def === t.match.def) getMaskSet().validPositions[posMatch] = $.extend(!0, {}, positionsClone[posMatch]),
  385. getMaskSet().validPositions[posMatch].input = t.input, fillMissingNonMask(posMatch),
  386. j = posMatch, valid = !0; else if (positionCanMatchDefinition(posMatch, t.match.def)) {
  387. var result = isValid(posMatch, t.input, !0, !0);
  388. valid = !1 !== result, j = result.caret || result.insert ? getLastValidPosition() : posMatch,
  389. needsValidation = !0;
  390. } else if (!(valid = !0 === t.generatedInput) && posMatch >= getMaskSet().maskLength - 1) break;
  391. if (getMaskSet().maskLength < initialLength && (getMaskSet().maskLength = initialLength),
  392. valid) break;
  393. }
  394. if (!valid) break;
  395. }
  396. if (!valid) return getMaskSet().validPositions = $.extend(!0, {}, positionsClone),
  397. resetMaskSet(!0), !1;
  398. } else getMaskSet().validPositions[pos] = $.extend(!0, {}, validTest);
  399. return resetMaskSet(!0), !0;
  400. }
  401. function fillMissingNonMask(maskPos) {
  402. for (var pndx = maskPos - 1; pndx > -1 && !getMaskSet().validPositions[pndx]; pndx--) ;
  403. var testTemplate, testsFromPos;
  404. for (pndx++; pndx < maskPos; pndx++) getMaskSet().validPositions[pndx] === undefined && (!1 === opts.jitMasking || opts.jitMasking > pndx) && (testsFromPos = getTests(pndx, getTestTemplate(pndx - 1).locator, pndx - 1).slice(),
  405. "" === testsFromPos[testsFromPos.length - 1].match.def && testsFromPos.pop(), (testTemplate = determineTestTemplate(testsFromPos)) && (testTemplate.match.def === opts.radixPointDefinitionSymbol || !isMask(pndx, !0) || $.inArray(opts.radixPoint, getBuffer()) < pndx && testTemplate.match.fn && testTemplate.match.fn.test(getPlaceholder(pndx), getMaskSet(), pndx, !1, opts)) && !1 !== (result = _isValid(pndx, getPlaceholder(pndx, testTemplate.match, !0) || (null == testTemplate.match.fn ? testTemplate.match.def : "" !== getPlaceholder(pndx) ? getPlaceholder(pndx) : getBuffer()[pndx]), !0)) && (getMaskSet().validPositions[result.pos || pndx].generatedInput = !0));
  406. }
  407. strict = !0 === strict;
  408. var maskPos = pos;
  409. pos.begin !== undefined && (maskPos = isRTL && !isSelection(pos) ? pos.end : pos.begin);
  410. var result = !0, positionsClone = $.extend(!0, {}, getMaskSet().validPositions);
  411. if ($.isFunction(opts.preValidation) && !strict && !0 !== fromSetValid && (result = opts.preValidation(getBuffer(), maskPos, c, isSelection(pos), opts)),
  412. !0 === result) {
  413. if (fillMissingNonMask(maskPos), isSelection(pos) && (handleRemove(undefined, Inputmask.keyCode.DELETE, pos, !0),
  414. maskPos = getMaskSet().p), maskPos < getMaskSet().maskLength && (maxLength === undefined || maskPos < maxLength) && (result = _isValid(maskPos, c, strict),
  415. (!strict || !0 === fromSetValid) && !1 === result)) {
  416. var currentPosValid = getMaskSet().validPositions[maskPos];
  417. if (!currentPosValid || null !== currentPosValid.match.fn || currentPosValid.match.def !== c && c !== opts.skipOptionalPartCharacter) {
  418. if ((opts.insertMode || getMaskSet().validPositions[seekNext(maskPos)] === undefined) && !isMask(maskPos, !0)) for (var nPos = maskPos + 1, snPos = seekNext(maskPos); nPos <= snPos; nPos++) if (!1 !== (result = _isValid(nPos, c, strict))) {
  419. !function(originalPos, newPos) {
  420. var vp = getMaskSet().validPositions[newPos];
  421. if (vp) for (var targetLocator = vp.locator, tll = targetLocator.length, ps = originalPos; ps < newPos; ps++) if (getMaskSet().validPositions[ps] === undefined && !isMask(ps, !0)) {
  422. var tests = getTests(ps).slice(), bestMatch = determineTestTemplate(tests, !0), equality = -1;
  423. "" === tests[tests.length - 1].match.def && tests.pop(), $.each(tests, function(ndx, tst) {
  424. for (var i = 0; i < tll; i++) {
  425. if (tst.locator[i] === undefined || !checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(","), tst.na)) {
  426. var targetAI = targetLocator[i], bestMatchAI = bestMatch.locator[i], tstAI = tst.locator[i];
  427. targetAI - bestMatchAI > Math.abs(targetAI - tstAI) && (bestMatch = tst);
  428. break;
  429. }
  430. equality < i && (equality = i, bestMatch = tst);
  431. }
  432. }), bestMatch = $.extend({}, bestMatch, {
  433. input: getPlaceholder(ps, bestMatch.match, !0) || bestMatch.match.def
  434. }), bestMatch.generatedInput = !0, setValidPosition(ps, bestMatch, !0), getMaskSet().validPositions[newPos] = undefined,
  435. _isValid(newPos, vp.input, !0);
  436. }
  437. }(maskPos, result.pos !== undefined ? result.pos : nPos), maskPos = nPos;
  438. break;
  439. }
  440. } else result = {
  441. caret: seekNext(maskPos)
  442. };
  443. }
  444. !1 === result && opts.keepStatic && !strict && !0 !== fromAlternate && (result = function(pos, c, strict) {
  445. var lastAlt, alternation, altPos, prevAltPos, i, validPos, altNdxs, decisionPos, validPsClone = $.extend(!0, {}, getMaskSet().validPositions), isValidRslt = !1, lAltPos = getLastValidPosition();
  446. for (prevAltPos = getMaskSet().validPositions[lAltPos]; lAltPos >= 0; lAltPos--) if ((altPos = getMaskSet().validPositions[lAltPos]) && altPos.alternation !== undefined) {
  447. if (lastAlt = lAltPos, alternation = getMaskSet().validPositions[lastAlt].alternation,
  448. prevAltPos.locator[altPos.alternation] !== altPos.locator[altPos.alternation]) break;
  449. prevAltPos = altPos;
  450. }
  451. if (alternation !== undefined) {
  452. decisionPos = parseInt(lastAlt);
  453. var decisionTaker = prevAltPos.locator[prevAltPos.alternation || alternation] !== undefined ? prevAltPos.locator[prevAltPos.alternation || alternation] : altNdxs[0];
  454. decisionTaker.length > 0 && (decisionTaker = decisionTaker.split(",")[0]);
  455. var possibilityPos = getMaskSet().validPositions[decisionPos], prevPos = getMaskSet().validPositions[decisionPos - 1];
  456. $.each(getTests(decisionPos, prevPos ? prevPos.locator : undefined, decisionPos - 1), function(ndx, test) {
  457. altNdxs = test.locator[alternation] ? test.locator[alternation].toString().split(",") : [];
  458. for (var mndx = 0; mndx < altNdxs.length; mndx++) {
  459. var validInputs = [], staticInputsBeforePos = 0, staticInputsBeforePosAlternate = 0, verifyValidInput = !1;
  460. if (decisionTaker < altNdxs[mndx] && (test.na === undefined || -1 === $.inArray(altNdxs[mndx], test.na.split(",")) || -1 === $.inArray(decisionTaker.toString(), altNdxs))) {
  461. getMaskSet().validPositions[decisionPos] = $.extend(!0, {}, test);
  462. var possibilities = getMaskSet().validPositions[decisionPos].locator;
  463. for (getMaskSet().validPositions[decisionPos].locator[alternation] = parseInt(altNdxs[mndx]),
  464. null == test.match.fn ? (possibilityPos.input !== test.match.def && (verifyValidInput = !0,
  465. !0 !== possibilityPos.generatedInput && validInputs.push(possibilityPos.input)),
  466. staticInputsBeforePosAlternate++, getMaskSet().validPositions[decisionPos].generatedInput = !/[0-9a-bA-Z]/.test(test.match.def),
  467. getMaskSet().validPositions[decisionPos].input = test.match.def) : getMaskSet().validPositions[decisionPos].input = possibilityPos.input,
  468. i = decisionPos + 1; i < getLastValidPosition(undefined, !0) + 1; i++) validPos = getMaskSet().validPositions[i],
  469. validPos && !0 !== validPos.generatedInput && /[0-9a-bA-Z]/.test(validPos.input) ? validInputs.push(validPos.input) : i < pos && staticInputsBeforePos++,
  470. delete getMaskSet().validPositions[i];
  471. for (verifyValidInput && validInputs[0] === test.match.def && validInputs.shift(),
  472. resetMaskSet(!0), isValidRslt = !0; validInputs.length > 0; ) {
  473. var input = validInputs.shift();
  474. if (input !== opts.skipOptionalPartCharacter && !(isValidRslt = isValid(getLastValidPosition(undefined, !0) + 1, input, !1, fromSetValid, !0))) break;
  475. }
  476. if (isValidRslt) {
  477. getMaskSet().validPositions[decisionPos].locator = possibilities;
  478. var targetLvp = getLastValidPosition(pos) + 1;
  479. for (i = decisionPos + 1; i < getLastValidPosition() + 1; i++) ((validPos = getMaskSet().validPositions[i]) === undefined || null == validPos.match.fn) && i < pos + (staticInputsBeforePosAlternate - staticInputsBeforePos) && staticInputsBeforePosAlternate++;
  480. pos += staticInputsBeforePosAlternate - staticInputsBeforePos, isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid, !0);
  481. }
  482. if (isValidRslt) return !1;
  483. resetMaskSet(), getMaskSet().validPositions = $.extend(!0, {}, validPsClone);
  484. }
  485. }
  486. });
  487. }
  488. return isValidRslt;
  489. }(maskPos, c, strict)), !0 === result && (result = {
  490. pos: maskPos
  491. });
  492. }
  493. if ($.isFunction(opts.postValidation) && !1 !== result && !strict && !0 !== fromSetValid) {
  494. var postResult = opts.postValidation(getBuffer(!0), result, opts);
  495. if (postResult.refreshFromBuffer && postResult.buffer) {
  496. var refresh = postResult.refreshFromBuffer;
  497. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, postResult.buffer);
  498. }
  499. result = !0 === postResult ? result : postResult;
  500. }
  501. return result && result.pos === undefined && (result.pos = maskPos), !1 === result && (resetMaskSet(!0),
  502. getMaskSet().validPositions = $.extend(!0, {}, positionsClone)), result;
  503. }
  504. function isMask(pos, strict) {
  505. var test = getTestTemplate(pos).match;
  506. if ("" === test.def && (test = getTest(pos).match), null != test.fn) return test.fn;
  507. if (!0 !== strict && pos > -1) {
  508. var tests = getTests(pos);
  509. return tests.length > 1 + ("" === tests[tests.length - 1].match.def ? 1 : 0);
  510. }
  511. return !1;
  512. }
  513. function seekNext(pos, newBlock) {
  514. var maskL = getMaskSet().maskLength;
  515. if (pos >= maskL) return maskL;
  516. var position = pos;
  517. for (getTests(maskL + 1).length > 1 && (getMaskTemplate(!0, maskL + 1, !0), maskL = getMaskSet().maskLength); ++position < maskL && (!0 === newBlock && (!0 !== getTest(position).match.newBlockMarker || !isMask(position)) || !0 !== newBlock && !isMask(position)); ) ;
  518. return position;
  519. }
  520. function seekPrevious(pos, newBlock) {
  521. var tests, position = pos;
  522. if (position <= 0) return 0;
  523. for (;--position > 0 && (!0 === newBlock && !0 !== getTest(position).match.newBlockMarker || !0 !== newBlock && !isMask(position) && (tests = getTests(position),
  524. tests.length < 2 || 2 === tests.length && "" === tests[1].match.def)); ) ;
  525. return position;
  526. }
  527. function getBufferElement(position) {
  528. return getMaskSet().validPositions[position] === undefined ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
  529. }
  530. function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
  531. if (event && $.isFunction(opts.onBeforeWrite)) {
  532. var result = opts.onBeforeWrite(event, buffer, caretPos, opts);
  533. if (result) {
  534. if (result.refreshFromBuffer) {
  535. var refresh = result.refreshFromBuffer;
  536. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, result.buffer || buffer),
  537. buffer = getBuffer(!0);
  538. }
  539. caretPos !== undefined && (caretPos = result.caret !== undefined ? result.caret : caretPos);
  540. }
  541. }
  542. input !== undefined && (input.inputmask._valueSet(buffer.join("")), caretPos === undefined || event !== undefined && "blur" === event.type ? renderColorMask(input, buffer, caretPos) : android && "input" === event.type ? setTimeout(function() {
  543. caret(input, caretPos);
  544. }, 0) : caret(input, caretPos), !0 === triggerInputEvent && (skipInputEvent = !0,
  545. $(input).trigger("input")));
  546. }
  547. function getPlaceholder(pos, test, returnPL) {
  548. if (test = test || getTest(pos).match, test.placeholder !== undefined || !0 === returnPL) return $.isFunction(test.placeholder) ? test.placeholder(opts) : test.placeholder;
  549. if (null === test.fn) {
  550. if (pos > -1 && getMaskSet().validPositions[pos] === undefined) {
  551. var prevTest, tests = getTests(pos), staticAlternations = [];
  552. if (tests.length > 1 + ("" === tests[tests.length - 1].match.def ? 1 : 0)) for (var i = 0; i < tests.length; i++) if (!0 !== tests[i].match.optionality && !0 !== tests[i].match.optionalQuantifier && (null === tests[i].match.fn || prevTest === undefined || !1 !== tests[i].match.fn.test(prevTest.match.def, getMaskSet(), pos, !0, opts)) && (staticAlternations.push(tests[i]),
  553. null === tests[i].match.fn && (prevTest = tests[i]), staticAlternations.length > 1 && /[0-9a-bA-Z]/.test(staticAlternations[0].match.def))) return opts.placeholder.charAt(pos % opts.placeholder.length);
  554. }
  555. return test.def;
  556. }
  557. return opts.placeholder.charAt(pos % opts.placeholder.length);
  558. }
  559. function checkVal(input, writeOut, strict, nptvl, initiatingEvent) {
  560. function isTemplateMatch(ndx, charCodes) {
  561. return -1 !== getBufferTemplate().slice(ndx, seekNext(ndx)).join("").indexOf(charCodes) && !isMask(ndx) && getTest(ndx).match.nativeDef === charCodes.charAt(charCodes.length - 1);
  562. }
  563. var inputValue = nptvl.slice(), charCodes = "", initialNdx = 0, result = undefined;
  564. if (resetMaskSet(), getMaskSet().p = seekNext(-1), !strict) if (!0 !== opts.autoUnmask) {
  565. var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""), matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
  566. matches && matches.length > 0 && (inputValue.splice(0, matches.length * staticInput.length),
  567. initialNdx = seekNext(initialNdx));
  568. } else initialNdx = seekNext(initialNdx);
  569. if ($.each(inputValue, function(ndx, charCode) {
  570. if (charCode !== undefined) {
  571. var keypress = new $.Event("_checkval");
  572. keypress.which = charCode.charCodeAt(0), charCodes += charCode;
  573. var lvp = getLastValidPosition(undefined, !0), lvTest = getMaskSet().validPositions[lvp], nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : undefined, lvp);
  574. if (!isTemplateMatch(initialNdx, charCodes) || strict || opts.autoUnmask) {
  575. var pos = strict ? ndx : null == nextTest.match.fn && nextTest.match.optionality && lvp + 1 < getMaskSet().p ? lvp + 1 : getMaskSet().p;
  576. result = EventHandlers.keypressEvent.call(input, keypress, !0, !1, strict, pos),
  577. initialNdx = pos + 1, charCodes = "";
  578. } else result = EventHandlers.keypressEvent.call(input, keypress, !0, !1, !0, lvp + 1);
  579. if (!1 !== result && !strict && $.isFunction(opts.onBeforeWrite)) {
  580. var fp = result.forwardPosition;
  581. if (result = opts.onBeforeWrite(keypress, getBuffer(), result.forwardPosition, opts),
  582. result.forwardPosition = fp, result && result.refreshFromBuffer) {
  583. var refresh = result.refreshFromBuffer;
  584. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, result.buffer),
  585. resetMaskSet(!0), result.caret && (getMaskSet().p = result.caret, result.forwardPosition = result.caret);
  586. }
  587. }
  588. }
  589. }), writeOut) {
  590. var caretPos = undefined;
  591. document.activeElement === input && result && (caretPos = opts.numericInput ? seekPrevious(result.forwardPosition) : result.forwardPosition),
  592. writeBuffer(input, getBuffer(), caretPos, initiatingEvent || new $.Event("checkval"), initiatingEvent && "input" === initiatingEvent.type);
  593. }
  594. }
  595. function unmaskedvalue(input) {
  596. if (input) {
  597. if (input.inputmask === undefined) return input.value;
  598. input.inputmask && input.inputmask.refreshValue && EventHandlers.setValueEvent.call(input);
  599. }
  600. var umValue = [], vps = getMaskSet().validPositions;
  601. for (var pndx in vps) vps[pndx].match && null != vps[pndx].match.fn && umValue.push(vps[pndx].input);
  602. var unmaskedValue = 0 === umValue.length ? "" : (isRTL ? umValue.reverse() : umValue).join("");
  603. if ($.isFunction(opts.onUnMask)) {
  604. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
  605. unmaskedValue = opts.onUnMask(bufferValue, unmaskedValue, opts);
  606. }
  607. return unmaskedValue;
  608. }
  609. function caret(input, begin, end, notranslate) {
  610. function translatePosition(pos) {
  611. if (!0 !== notranslate && isRTL && "number" == typeof pos && (!opts.greedy || "" !== opts.placeholder)) {
  612. pos = getBuffer().join("").length - pos;
  613. }
  614. return pos;
  615. }
  616. var range;
  617. if (begin === undefined) return input.setSelectionRange ? (begin = input.selectionStart,
  618. end = input.selectionEnd) : window.getSelection ? (range = window.getSelection().getRangeAt(0),
  619. range.commonAncestorContainer.parentNode !== input && range.commonAncestorContainer !== input || (begin = range.startOffset,
  620. end = range.endOffset)) : document.selection && document.selection.createRange && (range = document.selection.createRange(),
  621. begin = 0 - range.duplicate().moveStart("character", -input.inputmask._valueGet().length),
  622. end = begin + range.text.length), {
  623. begin: translatePosition(begin),
  624. end: translatePosition(end)
  625. };
  626. if (begin.begin !== undefined && (end = begin.end, begin = begin.begin), "number" == typeof begin) {
  627. begin = translatePosition(begin), end = translatePosition(end), end = "number" == typeof end ? end : begin;
  628. var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
  629. if (input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0, mobile || !1 !== opts.insertMode || begin !== end || end++,
  630. input.setSelectionRange) input.selectionStart = begin, input.selectionEnd = end; else if (window.getSelection) {
  631. if (range = document.createRange(), input.firstChild === undefined || null === input.firstChild) {
  632. var textNode = document.createTextNode("");
  633. input.appendChild(textNode);
  634. }
  635. range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length),
  636. range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length),
  637. range.collapse(!0);
  638. var sel = window.getSelection();
  639. sel.removeAllRanges(), sel.addRange(range);
  640. } else input.createTextRange && (range = input.createTextRange(), range.collapse(!0),
  641. range.moveEnd("character", end), range.moveStart("character", begin), range.select());
  642. renderColorMask(input, undefined, {
  643. begin: begin,
  644. end: end
  645. });
  646. }
  647. }
  648. function determineLastRequiredPosition(returnDefinition) {
  649. var pos, testPos, buffer = getBuffer(), bl = buffer.length, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet().validPositions[lvp], ndxIntlzr = lvTest !== undefined ? lvTest.locator.slice() : undefined;
  650. for (pos = lvp + 1; pos < buffer.length; pos++) testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  651. ndxIntlzr = testPos.locator.slice(), positions[pos] = $.extend(!0, {}, testPos);
  652. var lvTestAlt = lvTest && lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation] : undefined;
  653. for (pos = bl - 1; pos > lvp && (testPos = positions[pos], (testPos.match.optionality || testPos.match.optionalQuantifier && testPos.match.newBlockMarker || lvTestAlt && (lvTestAlt !== positions[pos].locator[lvTest.alternation] && null != testPos.match.fn || null === testPos.match.fn && testPos.locator[lvTest.alternation] && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAlt.toString().split(",")) && "" !== getTests(pos)[0].def)) && buffer[pos] === getPlaceholder(pos, testPos.match)); pos--) bl--;
  654. return returnDefinition ? {
  655. l: bl,
  656. def: positions[bl] ? positions[bl].match : undefined
  657. } : bl;
  658. }
  659. function clearOptionalTail(buffer) {
  660. for (var validPos, rl = determineLastRequiredPosition(), bl = buffer.length, lv = getMaskSet().validPositions[getLastValidPosition()]; rl < bl && !isMask(rl, !0) && (validPos = lv !== undefined ? getTestTemplate(rl, lv.locator.slice(""), lv) : getTest(rl)) && !0 !== validPos.match.optionality && (!0 !== validPos.match.optionalQuantifier && !0 !== validPos.match.newBlockMarker || rl + 1 === bl && "" === (lv !== undefined ? getTestTemplate(rl + 1, lv.locator.slice(""), lv) : getTest(rl + 1)).match.def); ) rl++;
  661. for (;(validPos = getMaskSet().validPositions[rl - 1]) && validPos && validPos.match.optionality && validPos.input === opts.skipOptionalPartCharacter; ) rl--;
  662. return buffer.splice(rl), buffer;
  663. }
  664. function isComplete(buffer) {
  665. if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
  666. if ("*" === opts.repeat) return undefined;
  667. var complete = !1, lrp = determineLastRequiredPosition(!0), aml = seekPrevious(lrp.l);
  668. if (lrp.def === undefined || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
  669. complete = !0;
  670. for (var i = 0; i <= aml; i++) {
  671. var test = getTestTemplate(i).match;
  672. if (null !== test.fn && getMaskSet().validPositions[i] === undefined && !0 !== test.optionality && !0 !== test.optionalQuantifier || null === test.fn && buffer[i] !== getPlaceholder(i, test)) {
  673. complete = !1;
  674. break;
  675. }
  676. }
  677. }
  678. return complete;
  679. }
  680. function handleRemove(input, k, pos, strict, fromIsValid) {
  681. if ((opts.numericInput || isRTL) && (k === Inputmask.keyCode.BACKSPACE ? k = Inputmask.keyCode.DELETE : k === Inputmask.keyCode.DELETE && (k = Inputmask.keyCode.BACKSPACE),
  682. isRTL)) {
  683. var pend = pos.end;
  684. pos.end = pos.begin, pos.begin = pend;
  685. }
  686. k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || !1 === opts.insertMode) ? (pos.begin = seekPrevious(pos.begin),
  687. getMaskSet().validPositions[pos.begin] !== undefined && getMaskSet().validPositions[pos.begin].input === opts.groupSeparator && pos.begin--) : k === Inputmask.keyCode.DELETE && pos.begin === pos.end && (pos.end = isMask(pos.end, !0) && getMaskSet().validPositions[pos.end] && getMaskSet().validPositions[pos.end].input !== opts.radixPoint ? pos.end + 1 : seekNext(pos.end) + 1,
  688. getMaskSet().validPositions[pos.begin] !== undefined && getMaskSet().validPositions[pos.begin].input === opts.groupSeparator && pos.end++),
  689. stripValidPositions(pos.begin, pos.end, !1, strict), !0 !== strict && function() {
  690. if (opts.keepStatic) {
  691. for (var validInputs = [], lastAlt = getLastValidPosition(-1, !0), positionsClone = $.extend(!0, {}, getMaskSet().validPositions), prevAltPos = getMaskSet().validPositions[lastAlt]; lastAlt >= 0; lastAlt--) {
  692. var altPos = getMaskSet().validPositions[lastAlt];
  693. if (altPos) {
  694. if (!0 !== altPos.generatedInput && /[0-9a-bA-Z]/.test(altPos.input) && validInputs.push(altPos.input),
  695. delete getMaskSet().validPositions[lastAlt], altPos.alternation !== undefined && altPos.locator[altPos.alternation] !== prevAltPos.locator[altPos.alternation]) break;
  696. prevAltPos = altPos;
  697. }
  698. }
  699. if (lastAlt > -1) for (getMaskSet().p = seekNext(getLastValidPosition(-1, !0)); validInputs.length > 0; ) {
  700. var keypress = new $.Event("keypress");
  701. keypress.which = validInputs.pop().charCodeAt(0), EventHandlers.keypressEvent.call(input, keypress, !0, !1, !1, getMaskSet().p);
  702. } else getMaskSet().validPositions = $.extend(!0, {}, positionsClone);
  703. }
  704. }();
  705. var lvp = getLastValidPosition(pos.begin, !0);
  706. if (lvp < pos.begin) getMaskSet().p = seekNext(lvp); else if (!0 !== strict && (getMaskSet().p = pos.begin,
  707. !0 !== fromIsValid)) for (;getMaskSet().p < lvp && getMaskSet().validPositions[getMaskSet().p] === undefined; ) getMaskSet().p++;
  708. }
  709. function initializeColorMask(input) {
  710. function findCaretPos(clientx) {
  711. var caretPos, e = document.createElement("span");
  712. for (var style in computedStyle) isNaN(style) && -1 !== style.indexOf("font") && (e.style[style] = computedStyle[style]);
  713. e.style.textTransform = computedStyle.textTransform, e.style.letterSpacing = computedStyle.letterSpacing,
  714. e.style.position = "absolute", e.style.height = "auto", e.style.width = "auto",
  715. e.style.visibility = "hidden", e.style.whiteSpace = "nowrap", document.body.appendChild(e);
  716. var itl, inputText = input.inputmask._valueGet(), previousWidth = 0;
  717. for (caretPos = 0, itl = inputText.length; caretPos <= itl; caretPos++) {
  718. if (e.innerHTML += inputText.charAt(caretPos) || "_", e.offsetWidth >= clientx) {
  719. var offset1 = clientx - previousWidth, offset2 = e.offsetWidth - clientx;
  720. e.innerHTML = inputText.charAt(caretPos), offset1 -= e.offsetWidth / 3, caretPos = offset1 < offset2 ? caretPos - 1 : caretPos;
  721. break;
  722. }
  723. previousWidth = e.offsetWidth;
  724. }
  725. return document.body.removeChild(e), caretPos;
  726. }
  727. function position() {
  728. colorMask.style.position = "absolute", colorMask.style.top = offset.top + "px",
  729. colorMask.style.left = offset.left + "px", colorMask.style.width = parseInt(input.offsetWidth) - parseInt(computedStyle.paddingLeft) - parseInt(computedStyle.paddingRight) - parseInt(computedStyle.borderLeftWidth) - parseInt(computedStyle.borderRightWidth) + "px",
  730. colorMask.style.height = parseInt(input.offsetHeight) - parseInt(computedStyle.paddingTop) - parseInt(computedStyle.paddingBottom) - parseInt(computedStyle.borderTopWidth) - parseInt(computedStyle.borderBottomWidth) + "px",
  731. colorMask.style.lineHeight = colorMask.style.height, colorMask.style.zIndex = isNaN(computedStyle.zIndex) ? -1 : computedStyle.zIndex - 1,
  732. colorMask.style.webkitAppearance = "textfield", colorMask.style.mozAppearance = "textfield",
  733. colorMask.style.Appearance = "textfield";
  734. }
  735. var offset = $(input).position(), computedStyle = (input.ownerDocument.defaultView || window).getComputedStyle(input, null);
  736. colorMask = document.createElement("div"), document.body.appendChild(colorMask);
  737. for (var style in computedStyle) computedStyle.hasOwnProperty(style) && isNaN(style) && "cssText" !== style && -1 == style.indexOf("webkit") && (colorMask.style[style] = computedStyle[style]);
  738. input.style.backgroundColor = "transparent", input.style.color = "transparent",
  739. input.style.webkitAppearance = "caret", input.style.mozAppearance = "caret", input.style.Appearance = "caret",
  740. position(), $(window).on("resize", function(e) {
  741. offset = $(input).position(), computedStyle = (input.ownerDocument.defaultView || window).getComputedStyle(input, null),
  742. position();
  743. }), $(input).on("click", function(e) {
  744. return caret(input, findCaretPos(e.clientX)), EventHandlers.clickEvent.call(this, [ e ]);
  745. }), $(input).on("keydown", function(e) {
  746. e.shiftKey || !1 === opts.insertMode || setTimeout(function() {
  747. renderColorMask(input);
  748. }, 0);
  749. });
  750. }
  751. function renderColorMask(input, buffer, caretPos) {
  752. function handleStatic() {
  753. isStatic || null !== test.fn && testPos.input !== undefined ? isStatic && null !== test.fn && testPos.input !== undefined && (isStatic = !1,
  754. maskTemplate += "</span>") : (isStatic = !0, maskTemplate += "<span class='im-static''>");
  755. }
  756. if (colorMask !== undefined) {
  757. buffer = buffer || getBuffer(), caretPos === undefined ? caretPos = caret(input) : caretPos.begin === undefined && (caretPos = {
  758. begin: caretPos,
  759. end: caretPos
  760. });
  761. var maskTemplate = "", isStatic = !1;
  762. if ("" != buffer) {
  763. var ndxIntlzr, test, testPos, pos = 0, lvp = getLastValidPosition();
  764. do {
  765. pos === caretPos.begin && document.activeElement === input && (maskTemplate += "<span class='im-caret' style='border-right-width: 1px;border-right-style: solid;'></span>"),
  766. getMaskSet().validPositions[pos] ? (testPos = getMaskSet().validPositions[pos],
  767. test = testPos.match, ndxIntlzr = testPos.locator.slice(), handleStatic(), maskTemplate += testPos.input) : (testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  768. test = testPos.match, ndxIntlzr = testPos.locator.slice(), (!1 === opts.jitMasking || pos < lvp || "number" == typeof opts.jitMasking && isFinite(opts.jitMasking) && opts.jitMasking > pos) && (handleStatic(),
  769. maskTemplate += getPlaceholder(pos, test))), pos++;
  770. } while ((maxLength === undefined || pos < maxLength) && (null !== test.fn || "" !== test.def) || lvp > pos);
  771. }
  772. colorMask.innerHTML = maskTemplate;
  773. }
  774. }
  775. maskset = maskset || this.maskset, opts = opts || this.opts;
  776. var undoValue, $el, maxLength, colorMask, valueBuffer, el = this.el, isRTL = this.isRTL, skipKeyPressEvent = !1, skipInputEvent = !1, ignorable = !1, mouseEnter = !1, EventRuler = {
  777. on: function(input, eventName, eventHandler) {
  778. var ev = function(e) {
  779. if (this.inputmask === undefined && "FORM" !== this.nodeName) {
  780. var imOpts = $.data(this, "_inputmask_opts");
  781. imOpts ? new Inputmask(imOpts).mask(this) : EventRuler.off(this);
  782. } else {
  783. if ("setvalue" === e.type || "FORM" === this.nodeName || !(this.disabled || this.readOnly && !("keydown" === e.type && e.ctrlKey && 67 === e.keyCode || !1 === opts.tabThrough && e.keyCode === Inputmask.keyCode.TAB))) {
  784. switch (e.type) {
  785. case "input":
  786. if (!0 === skipInputEvent) return skipInputEvent = !1, e.preventDefault();
  787. break;
  788. case "keydown":
  789. skipKeyPressEvent = !1, skipInputEvent = !1;
  790. break;
  791. case "keypress":
  792. if (!0 === skipKeyPressEvent) return e.preventDefault();
  793. skipKeyPressEvent = !0;
  794. break;
  795. case "click":
  796. if (iemobile || iphone) {
  797. var that = this, args = arguments;
  798. return setTimeout(function() {
  799. eventHandler.apply(that, args);
  800. }, 0), !1;
  801. }
  802. }
  803. var returnVal = eventHandler.apply(this, arguments);
  804. return !1 === returnVal && (e.preventDefault(), e.stopPropagation()), returnVal;
  805. }
  806. e.preventDefault();
  807. }
  808. };
  809. input.inputmask.events[eventName] = input.inputmask.events[eventName] || [], input.inputmask.events[eventName].push(ev),
  810. -1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null != input.form && $(input.form).on(eventName, ev) : $(input).on(eventName, ev);
  811. },
  812. off: function(input, event) {
  813. if (input.inputmask && input.inputmask.events) {
  814. var events;
  815. event ? (events = [], events[event] = input.inputmask.events[event]) : events = input.inputmask.events,
  816. $.each(events, function(eventName, evArr) {
  817. for (;evArr.length > 0; ) {
  818. var ev = evArr.pop();
  819. -1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null != input.form && $(input.form).off(eventName, ev) : $(input).off(eventName, ev);
  820. }
  821. delete input.inputmask.events[eventName];
  822. });
  823. }
  824. }
  825. }, EventHandlers = {
  826. keydownEvent: function(e) {
  827. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  828. if (k === Inputmask.keyCode.BACKSPACE || k === Inputmask.keyCode.DELETE || iphone && k === Inputmask.keyCode.BACKSPACE_SAFARI || e.ctrlKey && k === Inputmask.keyCode.X && !function(eventName) {
  829. var el = document.createElement("input"), evName = "on" + eventName, isSupported = evName in el;
  830. return isSupported || (el.setAttribute(evName, "return;"), isSupported = "function" == typeof el[evName]),
  831. el = null, isSupported;
  832. }("cut")) e.preventDefault(), handleRemove(input, k, pos), writeBuffer(input, getBuffer(!0), getMaskSet().p, e, input.inputmask._valueGet() !== getBuffer().join("")),
  833. input.inputmask._valueGet() === getBufferTemplate().join("") ? $input.trigger("cleared") : !0 === isComplete(getBuffer()) && $input.trigger("complete"); else if (k === Inputmask.keyCode.END || k === Inputmask.keyCode.PAGE_DOWN) {
  834. e.preventDefault();
  835. var caretPos = seekNext(getLastValidPosition());
  836. opts.insertMode || caretPos !== getMaskSet().maskLength || e.shiftKey || caretPos--,
  837. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, !0);
  838. } else k === Inputmask.keyCode.HOME && !e.shiftKey || k === Inputmask.keyCode.PAGE_UP ? (e.preventDefault(),
  839. caret(input, 0, e.shiftKey ? pos.begin : 0, !0)) : (opts.undoOnEscape && k === Inputmask.keyCode.ESCAPE || 90 === k && e.ctrlKey) && !0 !== e.altKey ? (checkVal(input, !0, !1, undoValue.split("")),
  840. $input.trigger("click")) : k !== Inputmask.keyCode.INSERT || e.shiftKey || e.ctrlKey ? !0 === opts.tabThrough && k === Inputmask.keyCode.TAB ? (!0 === e.shiftKey ? (null === getTest(pos.begin).match.fn && (pos.begin = seekNext(pos.begin)),
  841. pos.end = seekPrevious(pos.begin, !0), pos.begin = seekPrevious(pos.end, !0)) : (pos.begin = seekNext(pos.begin, !0),
  842. pos.end = seekNext(pos.begin, !0), pos.end < getMaskSet().maskLength && pos.end--),
  843. pos.begin < getMaskSet().maskLength && (e.preventDefault(), caret(input, pos.begin, pos.end))) : e.shiftKey || !1 === opts.insertMode && (k === Inputmask.keyCode.RIGHT ? setTimeout(function() {
  844. var caretPos = caret(input);
  845. caret(input, caretPos.begin);
  846. }, 0) : k === Inputmask.keyCode.LEFT && setTimeout(function() {
  847. var caretPos = caret(input);
  848. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  849. }, 0)) : (opts.insertMode = !opts.insertMode, caret(input, opts.insertMode || pos.begin !== getMaskSet().maskLength ? pos.begin : pos.begin - 1));
  850. opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts), ignorable = -1 !== $.inArray(k, opts.ignorables);
  851. },
  852. keypressEvent: function(e, checkval, writeOut, strict, ndx) {
  853. var input = this, $input = $(input), k = e.which || e.charCode || e.keyCode;
  854. if (!(!0 === checkval || e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable)) return k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("") && (undoValue = getBuffer().join(""),
  855. setTimeout(function() {
  856. $input.trigger("change");
  857. }, 0)), !0;
  858. if (k) {
  859. 46 === k && !1 === e.shiftKey && "" !== opts.radixPoint && (k = opts.radixPoint.charCodeAt(0));
  860. var forwardPosition, pos = checkval ? {
  861. begin: ndx,
  862. end: ndx
  863. } : caret(input), c = String.fromCharCode(k);
  864. getMaskSet().writeOutBuffer = !0;
  865. var valResult = isValid(pos, c, strict);
  866. if (!1 !== valResult && (resetMaskSet(!0), forwardPosition = valResult.caret !== undefined ? valResult.caret : checkval ? valResult.pos + 1 : seekNext(valResult.pos),
  867. getMaskSet().p = forwardPosition), !1 !== writeOut && (setTimeout(function() {
  868. opts.onKeyValidation.call(input, k, valResult, opts);
  869. }, 0), getMaskSet().writeOutBuffer && !1 !== valResult)) {
  870. var buffer = getBuffer();
  871. writeBuffer(input, buffer, opts.numericInput && valResult.caret === undefined ? seekPrevious(forwardPosition) : forwardPosition, e, !0 !== checkval),
  872. !0 !== checkval && setTimeout(function() {
  873. !0 === isComplete(buffer) && $input.trigger("complete");
  874. }, 0);
  875. }
  876. if (e.preventDefault(), checkval) return !1 !== valResult && (valResult.forwardPosition = forwardPosition),
  877. valResult;
  878. }
  879. },
  880. pasteEvent: function(e) {
  881. var tempValue, input = this, ev = e.originalEvent || e, $input = $(input), inputValue = input.inputmask._valueGet(!0), caretPos = caret(input);
  882. isRTL && (tempValue = caretPos.end, caretPos.end = caretPos.begin, caretPos.begin = tempValue);
  883. var valueBeforeCaret = inputValue.substr(0, caretPos.begin), valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
  884. if (valueBeforeCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(0, caretPos.begin).join("") && (valueBeforeCaret = ""),
  885. valueAfterCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(caretPos.end).join("") && (valueAfterCaret = ""),
  886. isRTL && (tempValue = valueBeforeCaret, valueBeforeCaret = valueAfterCaret, valueAfterCaret = tempValue),
  887. window.clipboardData && window.clipboardData.getData) inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret; else {
  888. if (!ev.clipboardData || !ev.clipboardData.getData) return !0;
  889. inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret;
  890. }
  891. var pasteValue = inputValue;
  892. if ($.isFunction(opts.onBeforePaste)) {
  893. if (!1 === (pasteValue = opts.onBeforePaste(inputValue, opts))) return e.preventDefault();
  894. pasteValue || (pasteValue = inputValue);
  895. }
  896. return checkVal(input, !1, !1, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split("")),
  897. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, undoValue !== getBuffer().join("")),
  898. !0 === isComplete(getBuffer()) && $input.trigger("complete"), e.preventDefault();
  899. },
  900. inputFallBackEvent: function(e) {
  901. var input = this, inputValue = input.inputmask._valueGet();
  902. if (getBuffer().join("") !== inputValue) {
  903. var caretPos = caret(input);
  904. if ("." === inputValue.charAt(caretPos.begin - 1) && "" !== opts.radixPoint && (inputValue = inputValue.split(""),
  905. inputValue[caretPos.begin - 1] = opts.radixPoint.charAt(0), inputValue = inputValue.join("")),
  906. inputValue.charAt(caretPos.begin - 1) === opts.radixPoint && inputValue.length > getBuffer().length) {
  907. var keypress = new $.Event("keypress");
  908. return keypress.which = opts.radixPoint.charCodeAt(0), EventHandlers.keypressEvent.call(input, keypress, !0, !0, !1, caretPos.begin),
  909. !1;
  910. }
  911. if (inputValue = inputValue.replace(new RegExp("(" + Inputmask.escapeRegex(getBufferTemplate().join("")) + ")*"), ""),
  912. iemobile) {
  913. var inputChar = inputValue.replace(getBuffer().join(""), "");
  914. if (1 === inputChar.length) {
  915. var keypress = new $.Event("keypress");
  916. return keypress.which = inputChar.charCodeAt(0), EventHandlers.keypressEvent.call(input, keypress, !0, !0, !1, getMaskSet().validPositions[caretPos.begin - 1] ? caretPos.begin : caretPos.begin - 1),
  917. !1;
  918. }
  919. }
  920. if (caretPos.begin > inputValue.length && (caret(input, inputValue.length), caretPos = caret(input)),
  921. getBuffer().length - inputValue.length != 1 || inputValue.charAt(caretPos.begin) === getBuffer()[caretPos.begin] || inputValue.charAt(caretPos.begin + 1) === getBuffer()[caretPos.begin] || isMask(caretPos.begin)) {
  922. var stickyParts = [], bufferTemplate = getBufferTemplate().join("");
  923. for (stickyParts.push(inputValue.substr(0, caretPos.begin)), stickyParts.push(inputValue.substr(caretPos.begin)); null === inputValue.match(Inputmask.escapeRegex(bufferTemplate) + "$"); ) bufferTemplate = bufferTemplate.slice(1);
  924. inputValue = inputValue.replace(bufferTemplate, ""), $.isFunction(opts.onBeforeMask) && (inputValue = opts.onBeforeMask(inputValue, opts) || inputValue),
  925. checkVal(input, !0, !1, inputValue.split(""), e), function(input, frontPart, backPart) {
  926. var targetPos = caret(input).begin, currentValue = input.inputmask._valueGet(), pos = currentValue.indexOf(frontPart), currentPos = targetPos;
  927. if (0 === pos && targetPos !== frontPart.length) targetPos = frontPart.length; else {
  928. for (;null === currentValue.match(Inputmask.escapeRegex(backPart) + "$"); ) backPart = backPart.substr(1);
  929. var pos2 = currentValue.indexOf(backPart);
  930. -1 !== pos2 && "" !== backPart && targetPos > pos2 && pos2 > pos && (targetPos = pos2);
  931. }
  932. isMask(targetPos) || (targetPos = seekNext(targetPos)), currentPos !== targetPos && (caret(input, targetPos),
  933. android && setTimeout(function() {
  934. caret(input, targetPos);
  935. }, 0));
  936. }(input, stickyParts[0], stickyParts[1]), !0 === isComplete(getBuffer()) && $(input).trigger("complete");
  937. } else e.keyCode = Inputmask.keyCode.BACKSPACE, EventHandlers.keydownEvent.call(input, e);
  938. e.preventDefault();
  939. }
  940. },
  941. setValueEvent: function(e) {
  942. this.inputmask.refreshValue = !1;
  943. var input = this, value = input.inputmask._valueGet(!0);
  944. $.isFunction(opts.onBeforeMask) && (value = opts.onBeforeMask(value, opts) || value),
  945. value = value.split(""), checkVal(input, !0, !1, isRTL ? value.reverse() : value),
  946. undoValue = getBuffer().join(""), (opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("") && input.inputmask._valueSet("");
  947. },
  948. focusEvent: function(e) {
  949. var input = this, nptValue = input.inputmask._valueGet();
  950. opts.showMaskOnFocus && (!opts.showMaskOnHover || opts.showMaskOnHover && "" === nptValue) && (input.inputmask._valueGet() !== getBuffer().join("") ? writeBuffer(input, getBuffer(), seekNext(getLastValidPosition())) : !1 === mouseEnter && caret(input, seekNext(getLastValidPosition()))),
  951. !0 === opts.positionCaretOnTab && !1 === mouseEnter && (writeBuffer(input, getBuffer(), caret(input)),
  952. EventHandlers.clickEvent.apply(input, [ e, !0 ])), undoValue = getBuffer().join("");
  953. },
  954. mouseleaveEvent: function(e) {
  955. var input = this;
  956. if (mouseEnter = !1, opts.clearMaskOnLostFocus && document.activeElement !== input) {
  957. var buffer = getBuffer().slice(), nptValue = input.inputmask._valueGet();
  958. nptValue !== input.getAttribute("placeholder") && "" !== nptValue && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer),
  959. writeBuffer(input, buffer));
  960. }
  961. },
  962. clickEvent: function(e, tabbed) {
  963. function doRadixFocus(clickPos) {
  964. if ("" !== opts.radixPoint) {
  965. var vps = getMaskSet().validPositions;
  966. if (vps[clickPos] === undefined || vps[clickPos].input === getPlaceholder(clickPos)) {
  967. if (clickPos < seekNext(-1)) return !0;
  968. var radixPos = $.inArray(opts.radixPoint, getBuffer());
  969. if (-1 !== radixPos) {
  970. for (var vp in vps) if (radixPos < vp && vps[vp].input !== getPlaceholder(vp)) return !1;
  971. return !0;
  972. }
  973. }
  974. }
  975. return !1;
  976. }
  977. var input = this;
  978. setTimeout(function() {
  979. if (document.activeElement === input) {
  980. var selectedCaret = caret(input);
  981. if (tabbed && (isRTL ? selectedCaret.end = selectedCaret.begin : selectedCaret.begin = selectedCaret.end),
  982. selectedCaret.begin === selectedCaret.end) switch (opts.positionCaretOnClick) {
  983. case "none":
  984. break;
  985. case "radixFocus":
  986. if (doRadixFocus(selectedCaret.begin)) {
  987. var radixPos = getBuffer().join("").indexOf(opts.radixPoint);
  988. caret(input, opts.numericInput ? seekNext(radixPos) : radixPos);
  989. break;
  990. }
  991. default:
  992. var clickPosition = selectedCaret.begin, lvclickPosition = getLastValidPosition(clickPosition, !0), lastPosition = seekNext(lvclickPosition);
  993. if (clickPosition < lastPosition) caret(input, isMask(clickPosition) || isMask(clickPosition - 1) ? clickPosition : seekNext(clickPosition)); else {
  994. var placeholder = getPlaceholder(lastPosition), lvp = getMaskSet().validPositions[lvclickPosition], tt = getTestTemplate(lastPosition, lvp ? lvp.match.locator : undefined, lvp);
  995. if ("" !== placeholder && getBuffer()[lastPosition] !== placeholder && !0 !== tt.match.optionalQuantifier || !isMask(lastPosition) && tt.match.def === placeholder) {
  996. var newPos = seekNext(lastPosition);
  997. clickPosition >= newPos && (lastPosition = newPos);
  998. }
  999. caret(input, lastPosition);
  1000. }
  1001. }
  1002. }
  1003. }, 0);
  1004. },
  1005. dblclickEvent: function(e) {
  1006. var input = this;
  1007. setTimeout(function() {
  1008. caret(input, 0, seekNext(getLastValidPosition()));
  1009. }, 0);
  1010. },
  1011. cutEvent: function(e) {
  1012. var input = this, $input = $(input), pos = caret(input), ev = e.originalEvent || e, clipboardData = window.clipboardData || ev.clipboardData, clipData = isRTL ? getBuffer().slice(pos.end, pos.begin) : getBuffer().slice(pos.begin, pos.end);
  1013. clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join("")),
  1014. document.execCommand && document.execCommand("copy"), handleRemove(input, Inputmask.keyCode.DELETE, pos),
  1015. writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join("")),
  1016. input.inputmask._valueGet() === getBufferTemplate().join("") && $input.trigger("cleared");
  1017. },
  1018. blurEvent: function(e) {
  1019. var $input = $(this), input = this;
  1020. if (input.inputmask) {
  1021. var nptValue = input.inputmask._valueGet(), buffer = getBuffer().slice();
  1022. "" !== nptValue && (opts.clearMaskOnLostFocus && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer)),
  1023. !1 === isComplete(buffer) && (setTimeout(function() {
  1024. $input.trigger("incomplete");
  1025. }, 0), opts.clearIncomplete && (resetMaskSet(), buffer = opts.clearMaskOnLostFocus ? [] : getBufferTemplate().slice())),
  1026. writeBuffer(input, buffer, undefined, e)), undoValue !== getBuffer().join("") && (undoValue = buffer.join(""),
  1027. $input.trigger("change"));
  1028. }
  1029. },
  1030. mouseenterEvent: function(e) {
  1031. var input = this;
  1032. mouseEnter = !0, document.activeElement !== input && opts.showMaskOnHover && input.inputmask._valueGet() !== getBuffer().join("") && writeBuffer(input, getBuffer());
  1033. },
  1034. submitEvent: function(e) {
  1035. undoValue !== getBuffer().join("") && $el.trigger("change"), opts.clearMaskOnLostFocus && -1 === getLastValidPosition() && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("") && el.inputmask._valueSet(""),
  1036. opts.removeMaskOnSubmit && (el.inputmask._valueSet(el.inputmask.unmaskedvalue(), !0),
  1037. setTimeout(function() {
  1038. writeBuffer(el, getBuffer());
  1039. }, 0));
  1040. },
  1041. resetEvent: function(e) {
  1042. el.inputmask.refreshValue = !0, setTimeout(function() {
  1043. $el.trigger("setvalue");
  1044. }, 0);
  1045. }
  1046. };
  1047. if (actionObj !== undefined) switch (actionObj.action) {
  1048. case "isComplete":
  1049. return el = actionObj.el, isComplete(getBuffer());
  1050. case "unmaskedvalue":
  1051. return el !== undefined && actionObj.value === undefined || (valueBuffer = actionObj.value,
  1052. valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(valueBuffer, opts) || valueBuffer : valueBuffer).split(""),
  1053. checkVal(undefined, !1, !1, isRTL ? valueBuffer.reverse() : valueBuffer), $.isFunction(opts.onBeforeWrite) && opts.onBeforeWrite(undefined, getBuffer(), 0, opts)),
  1054. unmaskedvalue(el);
  1055. case "mask":
  1056. !function(elem) {
  1057. EventRuler.off(elem);
  1058. var isSupported = function(input, opts) {
  1059. var elementType = input.getAttribute("type"), isSupported = "INPUT" === input.tagName && -1 !== $.inArray(elementType, opts.supportsInputType) || input.isContentEditable || "TEXTAREA" === input.tagName;
  1060. if (!isSupported) if ("INPUT" === input.tagName) {
  1061. var el = document.createElement("input");
  1062. el.setAttribute("type", elementType), isSupported = "text" === el.type, el = null;
  1063. } else isSupported = "partial";
  1064. return !1 !== isSupported && function(npt) {
  1065. function getter() {
  1066. return this.inputmask ? this.inputmask.opts.autoUnmask ? this.inputmask.unmaskedvalue() : -1 !== getLastValidPosition() || !0 !== opts.nullable ? document.activeElement === this && opts.clearMaskOnLostFocus ? (isRTL ? clearOptionalTail(getBuffer().slice()).reverse() : clearOptionalTail(getBuffer().slice())).join("") : valueGet.call(this) : "" : valueGet.call(this);
  1067. }
  1068. function setter(value) {
  1069. valueSet.call(this, value), this.inputmask && $(this).trigger("setvalue");
  1070. }
  1071. var valueGet, valueSet;
  1072. if (!npt.inputmask.__valueGet) {
  1073. if (!0 !== opts.noValuePatching) {
  1074. if (Object.getOwnPropertyDescriptor) {
  1075. "function" != typeof Object.getPrototypeOf && (Object.getPrototypeOf = "object" == typeof "test".__proto__ ? function(object) {
  1076. return object.__proto__;
  1077. } : function(object) {
  1078. return object.constructor.prototype;
  1079. });
  1080. var valueProperty = Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value") : undefined;
  1081. valueProperty && valueProperty.get && valueProperty.set ? (valueGet = valueProperty.get,
  1082. valueSet = valueProperty.set, Object.defineProperty(npt, "value", {
  1083. get: getter,
  1084. set: setter,
  1085. configurable: !0
  1086. })) : "INPUT" !== npt.tagName && (valueGet = function() {
  1087. return this.textContent;
  1088. }, valueSet = function(value) {
  1089. this.textContent = value;
  1090. }, Object.defineProperty(npt, "value", {
  1091. get: getter,
  1092. set: setter,
  1093. configurable: !0
  1094. }));
  1095. } else document.__lookupGetter__ && npt.__lookupGetter__("value") && (valueGet = npt.__lookupGetter__("value"),
  1096. valueSet = npt.__lookupSetter__("value"), npt.__defineGetter__("value", getter),
  1097. npt.__defineSetter__("value", setter));
  1098. npt.inputmask.__valueGet = valueGet, npt.inputmask.__valueSet = valueSet;
  1099. }
  1100. npt.inputmask._valueGet = function(overruleRTL) {
  1101. return isRTL && !0 !== overruleRTL ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
  1102. }, npt.inputmask._valueSet = function(value, overruleRTL) {
  1103. valueSet.call(this.el, null === value || value === undefined ? "" : !0 !== overruleRTL && isRTL ? value.split("").reverse().join("") : value);
  1104. }, valueGet === undefined && (valueGet = function() {
  1105. return this.value;
  1106. }, valueSet = function(value) {
  1107. this.value = value;
  1108. }, function(type) {
  1109. if ($.valHooks && ($.valHooks[type] === undefined || !0 !== $.valHooks[type].inputmaskpatch)) {
  1110. var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function(elem) {
  1111. return elem.value;
  1112. }, valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function(elem, value) {
  1113. return elem.value = value, elem;
  1114. };
  1115. $.valHooks[type] = {
  1116. get: function(elem) {
  1117. if (elem.inputmask) {
  1118. if (elem.inputmask.opts.autoUnmask) return elem.inputmask.unmaskedvalue();
  1119. var result = valhookGet(elem);
  1120. return -1 !== getLastValidPosition(undefined, undefined, elem.inputmask.maskset.validPositions) || !0 !== opts.nullable ? result : "";
  1121. }
  1122. return valhookGet(elem);
  1123. },
  1124. set: function(elem, value) {
  1125. var result, $elem = $(elem);
  1126. return result = valhookSet(elem, value), elem.inputmask && $elem.trigger("setvalue"),
  1127. result;
  1128. },
  1129. inputmaskpatch: !0
  1130. };
  1131. }
  1132. }(npt.type), function(npt) {
  1133. EventRuler.on(npt, "mouseenter", function(event) {
  1134. var $input = $(this);
  1135. this.inputmask._valueGet() !== getBuffer().join("") && $input.trigger("setvalue");
  1136. });
  1137. }(npt));
  1138. }
  1139. }(input), isSupported;
  1140. }(elem, opts);
  1141. if (!1 !== isSupported && (el = elem, $el = $(el), !0 === opts.colorMask && initializeColorMask(el),
  1142. android && (el.hasOwnProperty("inputmode") && (el.inputmode = opts.inputmode, el.setAttribute("inputmode", opts.inputmode)),
  1143. "rtfm" === opts.androidHack && (!0 !== opts.colorMask && initializeColorMask(el),
  1144. el.type = "password")), !0 === isSupported && (EventRuler.on(el, "submit", EventHandlers.submitEvent),
  1145. EventRuler.on(el, "reset", EventHandlers.resetEvent), EventRuler.on(el, "mouseenter", EventHandlers.mouseenterEvent),
  1146. EventRuler.on(el, "blur", EventHandlers.blurEvent), EventRuler.on(el, "focus", EventHandlers.focusEvent),
  1147. EventRuler.on(el, "mouseleave", EventHandlers.mouseleaveEvent), !0 !== opts.colorMask && EventRuler.on(el, "click", EventHandlers.clickEvent),
  1148. EventRuler.on(el, "dblclick", EventHandlers.dblclickEvent), EventRuler.on(el, "paste", EventHandlers.pasteEvent),
  1149. EventRuler.on(el, "dragdrop", EventHandlers.pasteEvent), EventRuler.on(el, "drop", EventHandlers.pasteEvent),
  1150. EventRuler.on(el, "cut", EventHandlers.cutEvent), EventRuler.on(el, "complete", opts.oncomplete),
  1151. EventRuler.on(el, "incomplete", opts.onincomplete), EventRuler.on(el, "cleared", opts.oncleared),
  1152. android || !0 === opts.inputEventOnly || (EventRuler.on(el, "keydown", EventHandlers.keydownEvent),
  1153. EventRuler.on(el, "keypress", EventHandlers.keypressEvent)), EventRuler.on(el, "compositionstart", $.noop),
  1154. EventRuler.on(el, "compositionupdate", $.noop), EventRuler.on(el, "compositionend", $.noop),
  1155. EventRuler.on(el, "keyup", $.noop), EventRuler.on(el, "input", EventHandlers.inputFallBackEvent),
  1156. EventRuler.on(el, "beforeinput", $.noop)), EventRuler.on(el, "setvalue", EventHandlers.setValueEvent),
  1157. undoValue = getBufferTemplate().join(""), "" !== el.inputmask._valueGet(!0) || !1 === opts.clearMaskOnLostFocus || document.activeElement === el)) {
  1158. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(el.inputmask._valueGet(!0), opts) || el.inputmask._valueGet(!0) : el.inputmask._valueGet(!0);
  1159. "" !== initialValue && checkVal(el, !0, !1, isRTL ? initialValue.split("").reverse() : initialValue.split(""));
  1160. var buffer = getBuffer().slice();
  1161. undoValue = buffer.join(""), !1 === isComplete(buffer) && opts.clearIncomplete && resetMaskSet(),
  1162. opts.clearMaskOnLostFocus && document.activeElement !== el && (-1 === getLastValidPosition() ? buffer = [] : clearOptionalTail(buffer)),
  1163. writeBuffer(el, buffer), document.activeElement === el && caret(el, seekNext(getLastValidPosition()));
  1164. }
  1165. }(el);
  1166. break;
  1167. case "format":
  1168. return valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(actionObj.value, opts) || actionObj.value : actionObj.value).split(""),
  1169. checkVal(undefined, !0, !1, isRTL ? valueBuffer.reverse() : valueBuffer), actionObj.metadata ? {
  1170. value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
  1171. metadata: maskScope.call(this, {
  1172. action: "getmetadata"
  1173. }, maskset, opts)
  1174. } : isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
  1175. case "isValid":
  1176. actionObj.value ? (valueBuffer = actionObj.value.split(""), checkVal(undefined, !0, !0, isRTL ? valueBuffer.reverse() : valueBuffer)) : actionObj.value = getBuffer().join("");
  1177. for (var buffer = getBuffer(), rl = determineLastRequiredPosition(), lmib = buffer.length - 1; lmib > rl && !isMask(lmib); lmib--) ;
  1178. return buffer.splice(rl, lmib + 1 - rl), isComplete(buffer) && actionObj.value === getBuffer().join("");
  1179. case "getemptymask":
  1180. return getBufferTemplate().join("");
  1181. case "remove":
  1182. if (el && el.inputmask) {
  1183. $el = $(el), el.inputmask._valueSet(opts.autoUnmask ? unmaskedvalue(el) : el.inputmask._valueGet(!0)),
  1184. EventRuler.off(el);
  1185. Object.getOwnPropertyDescriptor && Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value") && el.inputmask.__valueGet && Object.defineProperty(el, "value", {
  1186. get: el.inputmask.__valueGet,
  1187. set: el.inputmask.__valueSet,
  1188. configurable: !0
  1189. }) : document.__lookupGetter__ && el.__lookupGetter__("value") && el.inputmask.__valueGet && (el.__defineGetter__("value", el.inputmask.__valueGet),
  1190. el.__defineSetter__("value", el.inputmask.__valueSet)), el.inputmask = undefined;
  1191. }
  1192. return el;
  1193. case "getmetadata":
  1194. if ($.isArray(maskset.metadata)) {
  1195. var maskTarget = getMaskTemplate(!0, 0, !1).join("");
  1196. return $.each(maskset.metadata, function(ndx, mtdt) {
  1197. if (mtdt.mask === maskTarget) return maskTarget = mtdt, !1;
  1198. }), maskTarget;
  1199. }
  1200. return maskset.metadata;
  1201. }
  1202. }
  1203. var ua = navigator.userAgent, mobile = /mobile/i.test(ua), iemobile = /iemobile/i.test(ua), iphone = /iphone/i.test(ua) && !iemobile, android = /android/i.test(ua) && !iemobile;
  1204. return Inputmask.prototype = {
  1205. dataAttribute: "data-inputmask",
  1206. defaults: {
  1207. placeholder: "_",
  1208. optionalmarker: {
  1209. start: "[",
  1210. end: "]"
  1211. },
  1212. quantifiermarker: {
  1213. start: "{",
  1214. end: "}"
  1215. },
  1216. groupmarker: {
  1217. start: "(",
  1218. end: ")"
  1219. },
  1220. alternatormarker: "|",
  1221. escapeChar: "\\",
  1222. mask: null,
  1223. regex: null,
  1224. oncomplete: $.noop,
  1225. onincomplete: $.noop,
  1226. oncleared: $.noop,
  1227. repeat: 0,
  1228. greedy: !0,
  1229. autoUnmask: !1,
  1230. removeMaskOnSubmit: !1,
  1231. clearMaskOnLostFocus: !0,
  1232. insertMode: !0,
  1233. clearIncomplete: !1,
  1234. alias: null,
  1235. onKeyDown: $.noop,
  1236. onBeforeMask: null,
  1237. onBeforePaste: function(pastedValue, opts) {
  1238. return $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(pastedValue, opts) : pastedValue;
  1239. },
  1240. onBeforeWrite: null,
  1241. onUnMask: null,
  1242. showMaskOnFocus: !0,
  1243. showMaskOnHover: !0,
  1244. onKeyValidation: $.noop,
  1245. skipOptionalPartCharacter: " ",
  1246. numericInput: !1,
  1247. rightAlign: !1,
  1248. undoOnEscape: !0,
  1249. radixPoint: "",
  1250. radixPointDefinitionSymbol: undefined,
  1251. groupSeparator: "",
  1252. keepStatic: null,
  1253. positionCaretOnTab: !0,
  1254. tabThrough: !1,
  1255. supportsInputType: [ "text", "tel", "password" ],
  1256. ignorables: [ 8, 9, 13, 19, 27, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 93, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 0, 229 ],
  1257. isComplete: null,
  1258. canClearPosition: $.noop,
  1259. preValidation: null,
  1260. postValidation: null,
  1261. staticDefinitionSymbol: undefined,
  1262. jitMasking: !1,
  1263. nullable: !0,
  1264. inputEventOnly: !1,
  1265. noValuePatching: !1,
  1266. positionCaretOnClick: "lvp",
  1267. casing: null,
  1268. inputmode: "verbatim",
  1269. colorMask: !1,
  1270. androidHack: !1
  1271. },
  1272. definitions: {
  1273. "9": {
  1274. validator: "[0-9]",
  1275. cardinality: 1,
  1276. definitionSymbol: "*"
  1277. },
  1278. a: {
  1279. validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
  1280. cardinality: 1,
  1281. definitionSymbol: "*"
  1282. },
  1283. "*": {
  1284. validator: "[0-9A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
  1285. cardinality: 1
  1286. }
  1287. },
  1288. aliases: {},
  1289. masksCache: {},
  1290. mask: function(elems) {
  1291. function importAttributeOptions(npt, opts, userOptions, dataAttribute) {
  1292. function importOption(option, optionData) {
  1293. null !== (optionData = optionData !== undefined ? optionData : npt.getAttribute(dataAttribute + "-" + option)) && ("string" == typeof optionData && (0 === option.indexOf("on") ? optionData = window[optionData] : "false" === optionData ? optionData = !1 : "true" === optionData && (optionData = !0)),
  1294. userOptions[option] = optionData);
  1295. }
  1296. ("rtl" === npt.dir || opts.rightAlign) && (npt.style.textAlign = "right"), ("rtl" === npt.dir || opts.numericInput) && (npt.dir = "ltr",
  1297. npt.removeAttribute("dir"), opts.isRTL = !0);
  1298. var option, dataoptions, optionData, p, attrOptions = npt.getAttribute(dataAttribute);
  1299. if (attrOptions && "" !== attrOptions && (attrOptions = attrOptions.replace(new RegExp("'", "g"), '"'),
  1300. dataoptions = JSON.parse("{" + attrOptions + "}")), dataoptions) {
  1301. optionData = undefined;
  1302. for (p in dataoptions) if ("alias" === p.toLowerCase()) {
  1303. optionData = dataoptions[p];
  1304. break;
  1305. }
  1306. }
  1307. importOption("alias", optionData), userOptions.alias && resolveAlias(userOptions.alias, userOptions, opts);
  1308. for (option in opts) {
  1309. if (dataoptions) {
  1310. optionData = undefined;
  1311. for (p in dataoptions) if (p.toLowerCase() === option.toLowerCase()) {
  1312. optionData = dataoptions[p];
  1313. break;
  1314. }
  1315. }
  1316. importOption(option, optionData);
  1317. }
  1318. return $.extend(!0, opts, userOptions), opts;
  1319. }
  1320. var that = this;
  1321. return "string" == typeof elems && (elems = document.getElementById(elems) || document.querySelectorAll(elems)),
  1322. elems = elems.nodeName ? [ elems ] : elems, $.each(elems, function(ndx, el) {
  1323. var scopedOpts = $.extend(!0, {}, that.opts);
  1324. importAttributeOptions(el, scopedOpts, $.extend(!0, {}, that.userOptions), that.dataAttribute);
  1325. var maskset = generateMaskSet(scopedOpts, that.noMasksCache);
  1326. maskset !== undefined && (el.inputmask !== undefined && el.inputmask.remove(), el.inputmask = new Inputmask(undefined, undefined, !0),
  1327. el.inputmask.opts = scopedOpts, el.inputmask.noMasksCache = that.noMasksCache, el.inputmask.userOptions = $.extend(!0, {}, that.userOptions),
  1328. el.inputmask.isRTL = scopedOpts.isRTL, el.inputmask.el = el, el.inputmask.maskset = maskset,
  1329. $.data(el, "_inputmask_opts", scopedOpts), maskScope.call(el.inputmask, {
  1330. action: "mask"
  1331. }));
  1332. }), elems && elems[0] ? elems[0].inputmask || this : this;
  1333. },
  1334. option: function(options, noremask) {
  1335. return "string" == typeof options ? this.opts[options] : "object" == typeof options ? ($.extend(this.userOptions, options),
  1336. this.el && !0 !== noremask && this.mask(this.el), this) : void 0;
  1337. },
  1338. unmaskedvalue: function(value) {
  1339. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1340. maskScope.call(this, {
  1341. action: "unmaskedvalue",
  1342. value: value
  1343. });
  1344. },
  1345. remove: function() {
  1346. return maskScope.call(this, {
  1347. action: "remove"
  1348. });
  1349. },
  1350. getemptymask: function() {
  1351. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1352. maskScope.call(this, {
  1353. action: "getemptymask"
  1354. });
  1355. },
  1356. hasMaskedValue: function() {
  1357. return !this.opts.autoUnmask;
  1358. },
  1359. isComplete: function() {
  1360. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1361. maskScope.call(this, {
  1362. action: "isComplete"
  1363. });
  1364. },
  1365. getmetadata: function() {
  1366. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1367. maskScope.call(this, {
  1368. action: "getmetadata"
  1369. });
  1370. },
  1371. isValid: function(value) {
  1372. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1373. maskScope.call(this, {
  1374. action: "isValid",
  1375. value: value
  1376. });
  1377. },
  1378. format: function(value, metadata) {
  1379. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1380. maskScope.call(this, {
  1381. action: "format",
  1382. value: value,
  1383. metadata: metadata
  1384. });
  1385. },
  1386. analyseMask: function(mask, regexMask, opts) {
  1387. function MaskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  1388. this.matches = [], this.openGroup = isGroup || !1, this.alternatorGroup = !1, this.isGroup = isGroup || !1,
  1389. this.isOptional = isOptional || !1, this.isQuantifier = isQuantifier || !1, this.isAlternator = isAlternator || !1,
  1390. this.quantifier = {
  1391. min: 1,
  1392. max: 1
  1393. };
  1394. }
  1395. function insertTestDefinition(mtoken, element, position) {
  1396. position = position !== undefined ? position : mtoken.matches.length;
  1397. var prevMatch = mtoken.matches[position - 1];
  1398. if (regexMask) 0 === element.indexOf("[") || escaped ? mtoken.matches.splice(position++, 0, {
  1399. fn: new RegExp(element, opts.casing ? "i" : ""),
  1400. cardinality: 1,
  1401. optionality: mtoken.isOptional,
  1402. newBlockMarker: prevMatch === undefined || prevMatch.def !== element,
  1403. casing: null,
  1404. def: element,
  1405. placeholder: undefined,
  1406. nativeDef: element
  1407. }) : $.each(element.split(""), function(ndx, lmnt) {
  1408. prevMatch = mtoken.matches[position - 1], mtoken.matches.splice(position++, 0, {
  1409. fn: null,
  1410. cardinality: 0,
  1411. optionality: mtoken.isOptional,
  1412. newBlockMarker: prevMatch === undefined || prevMatch.def !== lmnt && null !== prevMatch.fn,
  1413. casing: null,
  1414. def: opts.staticDefinitionSymbol || lmnt,
  1415. placeholder: opts.staticDefinitionSymbol !== undefined ? lmnt : undefined,
  1416. nativeDef: lmnt
  1417. });
  1418. }), escaped = !1; else {
  1419. var maskdef = (opts.definitions ? opts.definitions[element] : undefined) || Inputmask.prototype.definitions[element];
  1420. if (maskdef && !escaped) {
  1421. for (var prevalidators = maskdef.prevalidator, prevalidatorsL = prevalidators ? prevalidators.length : 0, i = 1; i < maskdef.cardinality; i++) {
  1422. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator.validator, cardinality = prevalidator.cardinality;
  1423. mtoken.matches.splice(position++, 0, {
  1424. fn: validator ? "string" == typeof validator ? new RegExp(validator, opts.casing ? "i" : "") : new function() {
  1425. this.test = validator;
  1426. }() : new RegExp("."),
  1427. cardinality: cardinality || 1,
  1428. optionality: mtoken.isOptional,
  1429. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  1430. casing: maskdef.casing,
  1431. def: maskdef.definitionSymbol || element,
  1432. placeholder: maskdef.placeholder,
  1433. nativeDef: element
  1434. }), prevMatch = mtoken.matches[position - 1];
  1435. }
  1436. mtoken.matches.splice(position++, 0, {
  1437. fn: maskdef.validator ? "string" == typeof maskdef.validator ? new RegExp(maskdef.validator, opts.casing ? "i" : "") : new function() {
  1438. this.test = maskdef.validator;
  1439. }() : new RegExp("."),
  1440. cardinality: maskdef.cardinality,
  1441. optionality: mtoken.isOptional,
  1442. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  1443. casing: maskdef.casing,
  1444. def: maskdef.definitionSymbol || element,
  1445. placeholder: maskdef.placeholder,
  1446. nativeDef: element
  1447. });
  1448. } else mtoken.matches.splice(position++, 0, {
  1449. fn: null,
  1450. cardinality: 0,
  1451. optionality: mtoken.isOptional,
  1452. newBlockMarker: prevMatch === undefined || prevMatch.def !== element && null !== prevMatch.fn,
  1453. casing: null,
  1454. def: opts.staticDefinitionSymbol || element,
  1455. placeholder: opts.staticDefinitionSymbol !== undefined ? element : undefined,
  1456. nativeDef: element
  1457. }), escaped = !1;
  1458. }
  1459. }
  1460. function verifyGroupMarker(maskToken) {
  1461. maskToken && maskToken.matches && $.each(maskToken.matches, function(ndx, token) {
  1462. var nextToken = maskToken.matches[ndx + 1];
  1463. (nextToken === undefined || nextToken.matches === undefined || !1 === nextToken.isQuantifier) && token && token.isGroup && (token.isGroup = !1,
  1464. regexMask || (insertTestDefinition(token, opts.groupmarker.start, 0), !0 !== token.openGroup && insertTestDefinition(token, opts.groupmarker.end))),
  1465. verifyGroupMarker(token);
  1466. });
  1467. }
  1468. function defaultCase() {
  1469. if (openenings.length > 0) {
  1470. if (currentOpeningToken = openenings[openenings.length - 1], insertTestDefinition(currentOpeningToken, m),
  1471. currentOpeningToken.isAlternator) {
  1472. alternator = openenings.pop();
  1473. for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
  1474. openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
  1475. currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
  1476. }
  1477. } else insertTestDefinition(currentToken, m);
  1478. }
  1479. function reverseTokens(maskToken) {
  1480. maskToken.matches = maskToken.matches.reverse();
  1481. for (var match in maskToken.matches) if (maskToken.matches.hasOwnProperty(match)) {
  1482. var intMatch = parseInt(match);
  1483. if (maskToken.matches[match].isQuantifier && maskToken.matches[intMatch + 1] && maskToken.matches[intMatch + 1].isGroup) {
  1484. var qt = maskToken.matches[match];
  1485. maskToken.matches.splice(match, 1), maskToken.matches.splice(intMatch + 1, 0, qt);
  1486. }
  1487. maskToken.matches[match].matches !== undefined ? maskToken.matches[match] = reverseTokens(maskToken.matches[match]) : maskToken.matches[match] = function(st) {
  1488. return st === opts.optionalmarker.start ? st = opts.optionalmarker.end : st === opts.optionalmarker.end ? st = opts.optionalmarker.start : st === opts.groupmarker.start ? st = opts.groupmarker.end : st === opts.groupmarker.end && (st = opts.groupmarker.start),
  1489. st;
  1490. }(maskToken.matches[match]);
  1491. }
  1492. return maskToken;
  1493. }
  1494. var match, m, openingToken, currentOpeningToken, alternator, lastMatch, groupToken, tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})|[^.?*+^${[]()|\\]+|./g, regexTokenizer = /\[\^?]?(?:[^\\\]]+|\\[\S\s]?)*]?|\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9][0-9]*|x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4}|c[A-Za-z]|[\S\s]?)|\((?:\?[:=!]?)?|(?:[?*+]|\{[0-9]+(?:,[0-9]*)?\})\??|[^.?*+^${[()|\\]+|./g, escaped = !1, currentToken = new MaskToken(), openenings = [], maskTokens = [];
  1495. for (regexMask && (opts.optionalmarker.start = undefined, opts.optionalmarker.end = undefined); match = regexMask ? regexTokenizer.exec(mask) : tokenizer.exec(mask); ) {
  1496. if (m = match[0], regexMask && !0 !== escaped) switch (m.charAt(0)) {
  1497. case "?":
  1498. m = "{0,1}";
  1499. break;
  1500. case "+":
  1501. case "*":
  1502. m = "{" + m + "}";
  1503. }
  1504. if (escaped) defaultCase(); else switch (m.charAt(0)) {
  1505. case opts.escapeChar:
  1506. escaped = !0, regexMask && defaultCase();
  1507. break;
  1508. case opts.optionalmarker.end:
  1509. case opts.groupmarker.end:
  1510. if (openingToken = openenings.pop(), openingToken.openGroup = !1, openingToken !== undefined) if (openenings.length > 0) {
  1511. if (currentOpeningToken = openenings[openenings.length - 1], currentOpeningToken.matches.push(openingToken),
  1512. currentOpeningToken.isAlternator) {
  1513. alternator = openenings.pop();
  1514. for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1,
  1515. alternator.matches[mndx].alternatorGroup = !1;
  1516. openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
  1517. currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
  1518. }
  1519. } else currentToken.matches.push(openingToken); else defaultCase();
  1520. break;
  1521. case opts.optionalmarker.start:
  1522. openenings.push(new MaskToken(!1, !0));
  1523. break;
  1524. case opts.groupmarker.start:
  1525. openenings.push(new MaskToken(!0));
  1526. break;
  1527. case opts.quantifiermarker.start:
  1528. var quantifier = new MaskToken(!1, !1, !0);
  1529. m = m.replace(/[{}]/g, "");
  1530. var mq = m.split(","), mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]), mq1 = 1 === mq.length ? mq0 : isNaN(mq[1]) ? mq[1] : parseInt(mq[1]);
  1531. if ("*" !== mq1 && "+" !== mq1 || (mq0 = "*" === mq1 ? 0 : 1), quantifier.quantifier = {
  1532. min: mq0,
  1533. max: mq1
  1534. }, openenings.length > 0) {
  1535. var matches = openenings[openenings.length - 1].matches;
  1536. match = matches.pop(), match.isGroup || (groupToken = new MaskToken(!0), groupToken.matches.push(match),
  1537. match = groupToken), matches.push(match), matches.push(quantifier);
  1538. } else match = currentToken.matches.pop(), match.isGroup || (regexMask && null === match.fn && "." === match.def && (match.fn = new RegExp(match.def, opts.casing ? "i" : "")),
  1539. groupToken = new MaskToken(!0), groupToken.matches.push(match), match = groupToken),
  1540. currentToken.matches.push(match), currentToken.matches.push(quantifier);
  1541. break;
  1542. case opts.alternatormarker:
  1543. if (openenings.length > 0) {
  1544. currentOpeningToken = openenings[openenings.length - 1];
  1545. var subToken = currentOpeningToken.matches[currentOpeningToken.matches.length - 1];
  1546. lastMatch = currentOpeningToken.openGroup && (subToken.matches === undefined || !1 === subToken.isGroup && !1 === subToken.isAlternator) ? openenings.pop() : currentOpeningToken.matches.pop();
  1547. } else lastMatch = currentToken.matches.pop();
  1548. if (lastMatch.isAlternator) openenings.push(lastMatch); else if (lastMatch.alternatorGroup ? (alternator = openenings.pop(),
  1549. lastMatch.alternatorGroup = !1) : alternator = new MaskToken(!1, !1, !1, !0), alternator.matches.push(lastMatch),
  1550. openenings.push(alternator), lastMatch.openGroup) {
  1551. lastMatch.openGroup = !1;
  1552. var alternatorGroup = new MaskToken(!0);
  1553. alternatorGroup.alternatorGroup = !0, openenings.push(alternatorGroup);
  1554. }
  1555. break;
  1556. default:
  1557. defaultCase();
  1558. }
  1559. }
  1560. for (;openenings.length > 0; ) openingToken = openenings.pop(), currentToken.matches.push(openingToken);
  1561. return currentToken.matches.length > 0 && (verifyGroupMarker(currentToken), maskTokens.push(currentToken)),
  1562. (opts.numericInput || opts.isRTL) && reverseTokens(maskTokens[0]), maskTokens;
  1563. }
  1564. }, Inputmask.extendDefaults = function(options) {
  1565. $.extend(!0, Inputmask.prototype.defaults, options);
  1566. }, Inputmask.extendDefinitions = function(definition) {
  1567. $.extend(!0, Inputmask.prototype.definitions, definition);
  1568. }, Inputmask.extendAliases = function(alias) {
  1569. $.extend(!0, Inputmask.prototype.aliases, alias);
  1570. }, Inputmask.format = function(value, options, metadata) {
  1571. return Inputmask(options).format(value, metadata);
  1572. }, Inputmask.unmask = function(value, options) {
  1573. return Inputmask(options).unmaskedvalue(value);
  1574. }, Inputmask.isValid = function(value, options) {
  1575. return Inputmask(options).isValid(value);
  1576. }, Inputmask.remove = function(elems) {
  1577. $.each(elems, function(ndx, el) {
  1578. el.inputmask && el.inputmask.remove();
  1579. });
  1580. }, Inputmask.escapeRegex = function(str) {
  1581. var specials = [ "/", ".", "*", "+", "?", "|", "(", ")", "[", "]", "{", "}", "\\", "$", "^" ];
  1582. return str.replace(new RegExp("(\\" + specials.join("|\\") + ")", "gim"), "\\$1");
  1583. }, Inputmask.keyCode = {
  1584. ALT: 18,
  1585. BACKSPACE: 8,
  1586. BACKSPACE_SAFARI: 127,
  1587. CAPS_LOCK: 20,
  1588. COMMA: 188,
  1589. COMMAND: 91,
  1590. COMMAND_LEFT: 91,
  1591. COMMAND_RIGHT: 93,
  1592. CONTROL: 17,
  1593. DELETE: 46,
  1594. DOWN: 40,
  1595. END: 35,
  1596. ENTER: 13,
  1597. ESCAPE: 27,
  1598. HOME: 36,
  1599. INSERT: 45,
  1600. LEFT: 37,
  1601. MENU: 93,
  1602. NUMPAD_ADD: 107,
  1603. NUMPAD_DECIMAL: 110,
  1604. NUMPAD_DIVIDE: 111,
  1605. NUMPAD_ENTER: 108,
  1606. NUMPAD_MULTIPLY: 106,
  1607. NUMPAD_SUBTRACT: 109,
  1608. PAGE_DOWN: 34,
  1609. PAGE_UP: 33,
  1610. PERIOD: 190,
  1611. RIGHT: 39,
  1612. SHIFT: 16,
  1613. SPACE: 32,
  1614. TAB: 9,
  1615. UP: 38,
  1616. WINDOWS: 91,
  1617. X: 88
  1618. }, Inputmask;
  1619. });