inputmask.js 113 KB

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