inputmask.js 115 KB

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