inputmask.js 115 KB

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