inputmask.js 116 KB

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