inputmask.js 115 KB

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