inputmask.js 117 KB

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