inputmask.js 117 KB

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