inputmask.js 116 KB

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