inputmask.js 115 KB

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