jquery.inputmask.bundle.js 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. /*!
  2. * jquery.inputmask.bundle.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-beta.2
  7. */
  8. !function(modules) {
  9. function __webpack_require__(moduleId) {
  10. if (installedModules[moduleId]) return installedModules[moduleId].exports;
  11. var module = installedModules[moduleId] = {
  12. i: moduleId,
  13. l: !1,
  14. exports: {}
  15. };
  16. return modules[moduleId].call(module.exports, module, module.exports, __webpack_require__),
  17. module.l = !0, module.exports;
  18. }
  19. var installedModules = {};
  20. __webpack_require__.m = modules, __webpack_require__.c = installedModules, __webpack_require__.d = function(exports, name, getter) {
  21. __webpack_require__.o(exports, name) || Object.defineProperty(exports, name, {
  22. configurable: !1,
  23. enumerable: !0,
  24. get: getter
  25. });
  26. }, __webpack_require__.n = function(module) {
  27. var getter = module && module.__esModule ? function() {
  28. return module.default;
  29. } : function() {
  30. return module;
  31. };
  32. return __webpack_require__.d(getter, "a", getter), getter;
  33. }, __webpack_require__.o = function(object, property) {
  34. return Object.prototype.hasOwnProperty.call(object, property);
  35. }, __webpack_require__.p = "", __webpack_require__(__webpack_require__.s = 3);
  36. }([ function(module, exports, __webpack_require__) {
  37. "use strict";
  38. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  39. "function" == typeof Symbol && Symbol.iterator;
  40. !function(factory) {
  41. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(2) ], void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  42. }(function($) {
  43. return $;
  44. });
  45. }, function(module, exports, __webpack_require__) {
  46. "use strict";
  47. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__, _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) {
  48. return typeof obj;
  49. } : function(obj) {
  50. return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
  51. };
  52. !function(factory) {
  53. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(5), __webpack_require__(6) ],
  54. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  55. }(function($, window, document, undefined) {
  56. function Inputmask(alias, options, internal) {
  57. if (!(this instanceof Inputmask)) return new Inputmask(alias, options, internal);
  58. this.el = undefined, this.events = {}, this.maskset = undefined, this.refreshValue = !1,
  59. !0 !== internal && ($.isPlainObject(alias) ? options = alias : (options = options || {},
  60. alias && (options.alias = alias)), this.opts = $.extend(!0, {}, this.defaults, options),
  61. this.noMasksCache = options && options.definitions !== undefined, this.userOptions = options || {},
  62. this.isRTL = this.opts.numericInput, resolveAlias(this.opts.alias, options, this.opts));
  63. }
  64. function resolveAlias(aliasStr, options, opts) {
  65. var aliasDefinition = Inputmask.prototype.aliases[aliasStr];
  66. return aliasDefinition ? (aliasDefinition.alias && resolveAlias(aliasDefinition.alias, undefined, opts),
  67. $.extend(!0, opts, aliasDefinition), $.extend(!0, opts, options), !0) : (null === opts.mask && (opts.mask = aliasStr),
  68. !1);
  69. }
  70. function generateMaskSet(opts, nocache) {
  71. function generateMask(mask, metadata, opts) {
  72. var regexMask = !1;
  73. if (null !== mask && "" !== mask || ((regexMask = null !== opts.regex) ? mask = (mask = opts.regex).replace(/^(\^)(.*)(\$)$/, "$2") : (regexMask = !0,
  74. mask = ".*")), 1 === mask.length && !1 === opts.greedy && 0 !== opts.repeat && (opts.placeholder = ""),
  75. opts.repeat > 0 || "*" === opts.repeat || "+" === opts.repeat) {
  76. var repeatStart = "*" === opts.repeat ? 0 : "+" === opts.repeat ? 1 : opts.repeat;
  77. mask = opts.groupmarker[0] + mask + opts.groupmarker[1] + opts.quantifiermarker[0] + repeatStart + "," + opts.repeat + opts.quantifiermarker[1];
  78. }
  79. var masksetDefinition, maskdefKey = regexMask ? "regex_" + opts.regex : opts.numericInput ? mask.split("").reverse().join("") : mask;
  80. return Inputmask.prototype.masksCache[maskdefKey] === undefined || !0 === nocache ? (masksetDefinition = {
  81. mask: mask,
  82. maskToken: Inputmask.prototype.analyseMask(mask, regexMask, opts),
  83. validPositions: {},
  84. _buffer: undefined,
  85. buffer: undefined,
  86. tests: {},
  87. excludes: {},
  88. metadata: metadata,
  89. maskLength: undefined
  90. }, !0 !== nocache && (Inputmask.prototype.masksCache[maskdefKey] = masksetDefinition,
  91. masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[maskdefKey]))) : masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[maskdefKey]),
  92. masksetDefinition;
  93. }
  94. if ($.isFunction(opts.mask) && (opts.mask = opts.mask(opts)), $.isArray(opts.mask)) {
  95. if (opts.mask.length > 1) {
  96. if (null === opts.keepStatic) {
  97. opts.keepStatic = "auto";
  98. for (var i = 0; i < opts.mask.length; i++) if (opts.mask[i].charAt(0) !== opts.mask[0].charAt(0)) {
  99. opts.keepStatic = !0;
  100. break;
  101. }
  102. }
  103. var altMask = opts.groupmarker[0];
  104. return $.each(opts.isRTL ? opts.mask.reverse() : opts.mask, function(ndx, msk) {
  105. altMask.length > 1 && (altMask += opts.groupmarker[1] + opts.alternatormarker + opts.groupmarker[0]),
  106. msk.mask === undefined || $.isFunction(msk.mask) ? altMask += msk : altMask += msk.mask;
  107. }), altMask += opts.groupmarker[1], generateMask(altMask, opts.mask, opts);
  108. }
  109. opts.mask = opts.mask.pop();
  110. }
  111. return opts.mask && opts.mask.mask !== undefined && !$.isFunction(opts.mask.mask) ? generateMask(opts.mask.mask, opts.mask, opts) : generateMask(opts.mask, opts.mask, opts);
  112. }
  113. function isInputEventSupported(eventName) {
  114. var el = document.createElement("input"), evName = "on" + eventName, isSupported = evName in el;
  115. return isSupported || (el.setAttribute(evName, "return;"), isSupported = "function" == typeof el[evName]),
  116. el = null, isSupported;
  117. }
  118. function maskScope(actionObj, maskset, opts) {
  119. function getMaskTemplate(baseOnInput, minimalPos, includeMode) {
  120. minimalPos = minimalPos || 0;
  121. var ndxIntlzr, test, testPos, maskTemplate = [], pos = 0, lvp = getLastValidPosition();
  122. do {
  123. !0 === baseOnInput && getMaskSet().validPositions[pos] ? (test = (testPos = getMaskSet().validPositions[pos]).match,
  124. 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,
  125. 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))),
  126. "auto" === opts.keepStatic && test.newBlockMarker && null !== test.fn && (opts.keepStatic = pos - 1),
  127. pos++;
  128. } while ((maxLength === undefined || pos < maxLength) && (null !== test.fn || "" !== test.def) || minimalPos > pos);
  129. return "" === maskTemplate[maskTemplate.length - 1] && maskTemplate.pop(), !1 === includeMode && getMaskSet().maskLength !== undefined || (getMaskSet().maskLength = pos - 1),
  130. maskTemplate;
  131. }
  132. function getMaskSet() {
  133. return maskset;
  134. }
  135. function resetMaskSet(soft) {
  136. var maskset = getMaskSet();
  137. maskset.buffer = undefined, !0 !== soft && (maskset.validPositions = {}, maskset.p = 0);
  138. }
  139. function getLastValidPosition(closestTo, strict, validPositions) {
  140. var before = -1, after = -1, valids = validPositions || getMaskSet().validPositions;
  141. closestTo === undefined && (closestTo = -1);
  142. for (var posNdx in valids) {
  143. var psNdx = parseInt(posNdx);
  144. valids[psNdx] && (strict || !0 !== valids[psNdx].generatedInput) && (psNdx <= closestTo && (before = psNdx),
  145. psNdx >= closestTo && (after = psNdx));
  146. }
  147. return -1 !== before && closestTo - before > 1 || after < closestTo ? before : after;
  148. }
  149. function stripValidPositions(start, end, nocheck, strict) {
  150. var i, startPos = start, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), needsValidation = !1;
  151. for (getMaskSet().p = start, i = end - 1; i >= startPos; i--) getMaskSet().validPositions[i] !== undefined && (!0 !== nocheck && (!getMaskSet().validPositions[i].match.optionality && function(pos) {
  152. var posMatch = getMaskSet().validPositions[pos];
  153. if (posMatch !== undefined && null === posMatch.match.fn) {
  154. var prevMatch = getMaskSet().validPositions[pos - 1], nextMatch = getMaskSet().validPositions[pos + 1];
  155. return prevMatch !== undefined && nextMatch !== undefined;
  156. }
  157. return !1;
  158. }(i) || !1 === opts.canClearPosition(getMaskSet(), i, getLastValidPosition(undefined, !0), strict, opts)) || delete getMaskSet().validPositions[i]);
  159. for (resetMaskSet(!0), i = startPos + 1; i <= getLastValidPosition(); ) {
  160. for (;getMaskSet().validPositions[startPos] !== undefined; ) startPos++;
  161. if (i < startPos && (i = startPos + 1), getMaskSet().validPositions[i] === undefined && isMask(i)) i++; else {
  162. var t = getTestTemplate(i);
  163. !1 === needsValidation && positionsClone[startPos] && positionsClone[startPos].match.def === t.match.def ? (getMaskSet().validPositions[startPos] = $.extend(!0, {}, positionsClone[startPos]),
  164. getMaskSet().validPositions[startPos].input = t.input, delete getMaskSet().validPositions[i],
  165. i++) : positionCanMatchDefinition(startPos, t.match.def) ? !1 !== isValid(startPos, t.input || getPlaceholder(i), !0) && (delete getMaskSet().validPositions[i],
  166. i++, needsValidation = !0) : isMask(i) || (i++, startPos--), startPos++;
  167. }
  168. }
  169. if (!0 !== strict) for (i = getLastValidPosition(-1, !0); getMaskSet().validPositions[i] && !0 === getMaskSet().validPositions[i].generatedInput; ) delete getMaskSet().validPositions[i--];
  170. resetMaskSet(!0);
  171. }
  172. function determineTestTemplate(pos, tests, guessNextBest) {
  173. 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++) ;
  174. return testPos;
  175. }
  176. function getDecisionTaker(tst) {
  177. var decisionTaker = tst.locator[tst.alternation];
  178. return "string" == typeof decisionTaker && decisionTaker.length > 0 && (decisionTaker = decisionTaker.split(",")[0]),
  179. decisionTaker !== undefined ? decisionTaker.toString() : "";
  180. }
  181. function getLocator(tst, align) {
  182. for (var locator = (tst.alternation != undefined ? tst.mloc[getDecisionTaker(tst)] : tst.locator).join(""); locator.length < align; ) locator += "0";
  183. return locator;
  184. }
  185. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  186. return getMaskSet().validPositions[pos] || determineTestTemplate(pos, getTests(pos, ndxIntlzr ? ndxIntlzr.slice() : ndxIntlzr, tstPs));
  187. }
  188. function getTest(pos) {
  189. return getMaskSet().validPositions[pos] ? getMaskSet().validPositions[pos] : getTests(pos)[0];
  190. }
  191. function positionCanMatchDefinition(pos, def) {
  192. for (var valid = !1, tests = getTests(pos), tndx = 0; tndx < tests.length; tndx++) if (tests[tndx].match && tests[tndx].match.def === def) {
  193. valid = !0;
  194. break;
  195. }
  196. return valid;
  197. }
  198. function getTests(pos, ndxIntlzr, tstPs) {
  199. function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) {
  200. function handleMatch(match, loopNdx, quantifierRecurse) {
  201. function isFirstMatch(latestMatch, tokenGroup) {
  202. var firstMatch = 0 === $.inArray(latestMatch, tokenGroup.matches);
  203. return firstMatch || $.each(tokenGroup.matches, function(ndx, match) {
  204. if (!0 === match.isQuantifier && (firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1]))) return !1;
  205. }), firstMatch;
  206. }
  207. function resolveNdxInitializer(pos, alternateNdx, targetAlternation) {
  208. var bestMatch, indexPos;
  209. if ((getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) && $.each(getMaskSet().tests[pos] || [ getMaskSet().validPositions[pos] ], function(ndx, lmnt) {
  210. if (lmnt.mloc[alternateNdx]) return bestMatch = lmnt, !1;
  211. var alternation = targetAlternation !== undefined ? targetAlternation : lmnt.alternation, ndxPos = lmnt.locator[alternation] !== undefined ? lmnt.locator[alternation].toString().indexOf(alternateNdx) : -1;
  212. (indexPos === undefined || ndxPos < indexPos) && -1 !== ndxPos && (bestMatch = lmnt,
  213. indexPos = ndxPos);
  214. }), bestMatch) {
  215. var bestMatchAltIndex = bestMatch.locator[bestMatch.alternation];
  216. return (bestMatch.mloc[alternateNdx] || bestMatch.mloc[bestMatchAltIndex] || bestMatch.locator).slice((targetAlternation !== undefined ? targetAlternation : bestMatch.alternation) + 1);
  217. }
  218. return targetAlternation !== undefined ? resolveNdxInitializer(pos, alternateNdx) : undefined;
  219. }
  220. function isSubsetOf(source, target) {
  221. function expand(pattern) {
  222. 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),
  223. expanded.push(pattern.charAt(i));
  224. return expanded.join("");
  225. }
  226. 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;
  227. }
  228. function setMergeLocators(targetMatch, altMatch) {
  229. if (altMatch === undefined || targetMatch.alternation === altMatch.alternation && -1 === targetMatch.locator[targetMatch.alternation].toString().indexOf(altMatch.locator[altMatch.alternation])) {
  230. targetMatch.mloc = targetMatch.mloc || {};
  231. var locNdx = targetMatch.locator[targetMatch.alternation];
  232. if (locNdx !== undefined) {
  233. if ("string" == typeof locNdx && (locNdx = locNdx.split(",")[0]), targetMatch.mloc[locNdx] === undefined && (targetMatch.mloc[locNdx] = targetMatch.locator.slice()),
  234. altMatch !== undefined) {
  235. for (var ndx in altMatch.mloc) "string" == typeof ndx && (ndx = ndx.split(",")[0]),
  236. targetMatch.mloc[ndx] === undefined && (targetMatch.mloc[ndx] = altMatch.mloc[ndx]);
  237. targetMatch.locator[targetMatch.alternation] = Object.keys(targetMatch.mloc).join(",");
  238. }
  239. return !0;
  240. }
  241. targetMatch.alternation = undefined;
  242. }
  243. return !1;
  244. }
  245. 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;
  246. if (testPos === pos && match.matches === undefined) return matches.push({
  247. match: match,
  248. locator: loopNdx.reverse(),
  249. cd: cacheDependency,
  250. mloc: {}
  251. }), !0;
  252. if (match.matches !== undefined) {
  253. if (match.isGroup && quantifierRecurse !== match) {
  254. if (match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx)) return !0;
  255. } else if (match.isOptional) {
  256. var optionalToken = match;
  257. if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) {
  258. if (latestMatch = matches[matches.length - 1].match, !isFirstMatch(latestMatch, optionalToken)) return !0;
  259. insertStop = !0, testPos = pos;
  260. }
  261. } else if (match.isAlternator) {
  262. var maltMatches, alternateToken = match, malternateMatches = [], currentMatches = matches.slice(), loopNdxCnt = loopNdx.length, altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  263. if (-1 === altIndex || "string" == typeof altIndex) {
  264. var amndx, currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr = [];
  265. if ("string" == typeof altIndex) altIndexArr = altIndex.split(","); else for (amndx = 0; amndx < alternateToken.matches.length; amndx++) altIndexArr.push(amndx.toString());
  266. if (getMaskSet().excludes[pos]) {
  267. 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);
  268. 0 === altIndexArr.length && (getMaskSet().excludes[pos] = undefined, altIndexArr = altIndexArrClone);
  269. }
  270. (!0 === opts.keepStatic || isFinite(parseInt(opts.keepStatic)) && currentPos >= opts.keepStatic) && (altIndexArr = altIndexArr.slice(0, 1));
  271. for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
  272. amndx = parseInt(altIndexArr[ndx]), matches = [], ndxInitializer = resolveNdxInitializer(testPos, amndx, loopNdxCnt) || ndxInitializerClone.slice(),
  273. alternateToken.matches[amndx] && handleMatch(alternateToken.matches[amndx], [ amndx ].concat(loopNdx), quantifierRecurse) && (match = !0),
  274. maltMatches = matches.slice(), testPos = currentPos, matches = [];
  275. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  276. var altMatch = maltMatches[ndx1], dropMatch = !1;
  277. altMatch.alternation = altMatch.alternation || loopNdxCnt, setMergeLocators(altMatch);
  278. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  279. var altMatch2 = malternateMatches[ndx2];
  280. if ("string" != typeof altIndex || altMatch.alternation !== undefined && -1 !== $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr)) {
  281. if (altMatch.match.nativeDef === altMatch2.match.nativeDef) {
  282. dropMatch = !0, setMergeLocators(altMatch2, altMatch);
  283. break;
  284. }
  285. if (isSubsetOf(altMatch, altMatch2)) {
  286. setMergeLocators(altMatch, altMatch2) && (dropMatch = !0, malternateMatches.splice(malternateMatches.indexOf(altMatch2), 0, altMatch));
  287. break;
  288. }
  289. if (isSubsetOf(altMatch2, altMatch)) {
  290. setMergeLocators(altMatch2, altMatch);
  291. break;
  292. }
  293. if (function(source, target) {
  294. return null === source.match.fn && null !== target.match.fn && target.match.fn.test(source.match.def, getMaskSet(), pos, !1, opts, !1);
  295. }(altMatch, altMatch2)) {
  296. setMergeLocators(altMatch, altMatch2) && (dropMatch = !0, malternateMatches.splice(malternateMatches.indexOf(altMatch2), 0, altMatch));
  297. break;
  298. }
  299. }
  300. }
  301. dropMatch || malternateMatches.push(altMatch);
  302. }
  303. }
  304. matches = currentMatches.concat(malternateMatches), testPos = pos, insertStop = matches.length > 0,
  305. match = malternateMatches.length > 0, ndxInitializer = ndxInitializerClone.slice();
  306. } else match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [ altIndex ].concat(loopNdx), quantifierRecurse);
  307. if (match) return !0;
  308. } 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++) {
  309. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  310. if (match = handleMatch(tokenGroup, [ qndx ].concat(loopNdx), tokenGroup)) {
  311. if (latestMatch = matches[matches.length - 1].match, latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1,
  312. isFirstMatch(latestMatch, tokenGroup)) {
  313. if (qndx > qt.quantifier.min - 1) {
  314. insertStop = !0, testPos = pos;
  315. break;
  316. }
  317. return !0;
  318. }
  319. return !0;
  320. }
  321. } else if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) return !0;
  322. } else testPos++;
  323. }
  324. for (var tndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; tndx < maskToken.matches.length; tndx++) if (!0 !== maskToken.matches[tndx].isQuantifier) {
  325. var match = handleMatch(maskToken.matches[tndx], [ tndx ].concat(loopNdx), quantifierRecurse);
  326. if (match && testPos === pos) return match;
  327. if (testPos > pos) break;
  328. }
  329. }
  330. var latestMatch, maskTokens = getMaskSet().maskToken, testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr ? ndxIntlzr.slice() : [ 0 ], matches = [], insertStop = !1, cacheDependency = ndxIntlzr ? ndxIntlzr.join("") : "";
  331. if (pos > -1) {
  332. if (ndxIntlzr === undefined) {
  333. for (var test, previousPos = pos - 1; (test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) === undefined && previousPos > -1; ) previousPos--;
  334. test !== undefined && previousPos > -1 && (ndxInitializer = function(pos, tests) {
  335. var locator = [];
  336. 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) {
  337. 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]);
  338. })), locator;
  339. }(previousPos, test), cacheDependency = ndxInitializer.join(""), testPos = previousPos);
  340. }
  341. if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) return getMaskSet().tests[pos];
  342. for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length && !(resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [ mtndx ]) && testPos === pos || testPos > pos); mtndx++) ;
  343. }
  344. return (0 === matches.length || insertStop) && matches.push({
  345. match: {
  346. fn: null,
  347. optionality: !0,
  348. casing: null,
  349. def: "",
  350. placeholder: ""
  351. },
  352. locator: [],
  353. mloc: {},
  354. cd: cacheDependency
  355. }), ndxIntlzr !== undefined && getMaskSet().tests[pos] ? $.extend(!0, [], matches) : (getMaskSet().tests[pos] = $.extend(!0, [], matches),
  356. getMaskSet().tests[pos]);
  357. }
  358. function getBufferTemplate() {
  359. return getMaskSet()._buffer === undefined && (getMaskSet()._buffer = getMaskTemplate(!1, 1),
  360. getMaskSet().buffer === undefined && (getMaskSet().buffer = getMaskSet()._buffer.slice())),
  361. getMaskSet()._buffer;
  362. }
  363. function getBuffer(noCache) {
  364. return getMaskSet().buffer !== undefined && !0 !== noCache || (getMaskSet().buffer = getMaskTemplate(!0, getLastValidPosition(), !0)),
  365. getMaskSet().buffer;
  366. }
  367. function refreshFromBuffer(start, end, buffer) {
  368. var i, p;
  369. if (!0 === start) resetMaskSet(), start = 0, end = buffer.length; else for (i = start; i < end; i++) delete getMaskSet().validPositions[i];
  370. for (p = start, i = start; i < end; i++) if (resetMaskSet(!0), buffer[i] !== opts.skipOptionalPartCharacter) {
  371. var valResult = isValid(p, buffer[i], !0, !0);
  372. !1 !== valResult && (resetMaskSet(!0), p = valResult.caret !== undefined ? valResult.caret : valResult.pos + 1);
  373. }
  374. }
  375. function casing(elem, test, pos) {
  376. switch (opts.casing || test.casing) {
  377. case "upper":
  378. elem = elem.toUpperCase();
  379. break;
  380. case "lower":
  381. elem = elem.toLowerCase();
  382. break;
  383. case "title":
  384. var posBefore = getMaskSet().validPositions[pos - 1];
  385. elem = 0 === pos || posBefore && posBefore.input === String.fromCharCode(Inputmask.keyCode.SPACE) ? elem.toUpperCase() : elem.toLowerCase();
  386. break;
  387. default:
  388. if ($.isFunction(opts.casing)) {
  389. var args = Array.prototype.slice.call(arguments);
  390. args.push(getMaskSet().validPositions), elem = opts.casing.apply(this, args);
  391. }
  392. }
  393. return elem;
  394. }
  395. function checkAlternationMatch(altArr1, altArr2, na) {
  396. 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);
  397. for (var alndx = 0; alndx < altArr1.length; alndx++) if (-1 !== $.inArray(altArr1[alndx], altArrC)) {
  398. isMatch = !0;
  399. break;
  400. }
  401. return isMatch;
  402. }
  403. function alternate(pos, c, strict, fromSetValid, rAltPos) {
  404. var lastAlt, alternation, altPos, prevAltPos, i, validPos, decisionPos, validPsClone = $.extend(!0, {}, getMaskSet().validPositions), isValidRslt = !1, lAltPos = rAltPos !== undefined ? rAltPos : getLastValidPosition();
  405. if (-1 === lAltPos && rAltPos === undefined) alternation = (prevAltPos = getTest(lastAlt = 0)).alternation; else for (;lAltPos >= 0; lAltPos--) if ((altPos = getMaskSet().validPositions[lAltPos]) && altPos.alternation !== undefined) {
  406. if (prevAltPos && prevAltPos.locator[altPos.alternation] !== altPos.locator[altPos.alternation]) break;
  407. lastAlt = lAltPos, alternation = getMaskSet().validPositions[lastAlt].alternation,
  408. prevAltPos = altPos;
  409. }
  410. if (alternation !== undefined) {
  411. decisionPos = parseInt(lastAlt), getMaskSet().excludes[decisionPos] = getMaskSet().excludes[decisionPos] || [],
  412. !0 !== pos && getMaskSet().excludes[decisionPos].push(getDecisionTaker(prevAltPos));
  413. var validInputsClone = [], staticInputsBeforePos = 0;
  414. 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++,
  415. delete getMaskSet().validPositions[i];
  416. for (;getMaskSet().excludes[decisionPos] && getMaskSet().excludes[decisionPos].length < 10; ) {
  417. var posOffset = -1 * staticInputsBeforePos, validInputs = validInputsClone.slice();
  418. for (getMaskSet().tests[decisionPos] = undefined, resetMaskSet(!0), isValidRslt = !0; validInputs.length > 0; ) {
  419. var input = validInputs.shift();
  420. if (input !== opts.skipOptionalPartCharacter && !(isValidRslt = isValid(getLastValidPosition(undefined, !0) + 1, input, !1, fromSetValid, !0))) break;
  421. }
  422. if (isValidRslt && c !== undefined) {
  423. var targetLvp = getLastValidPosition(pos) + 1;
  424. for (i = decisionPos; i < getLastValidPosition() + 1; i++) ((validPos = getMaskSet().validPositions[i]) === undefined || null == validPos.match.fn) && i < pos + posOffset && posOffset++;
  425. isValidRslt = isValid((pos += posOffset) > targetLvp ? targetLvp : pos, c, strict, fromSetValid, !0);
  426. }
  427. if (isValidRslt) break;
  428. if (resetMaskSet(), prevAltPos = getTest(decisionPos), getMaskSet().validPositions = $.extend(!0, {}, validPsClone),
  429. !getMaskSet().excludes[decisionPos]) {
  430. isValidRslt = alternate(pos, c, strict, fromSetValid, decisionPos - 1);
  431. break;
  432. }
  433. var decisionTaker = getDecisionTaker(prevAltPos);
  434. if (-1 !== getMaskSet().excludes[decisionPos].indexOf(decisionTaker)) {
  435. isValidRslt = alternate(pos, c, strict, fromSetValid, decisionPos - 1);
  436. break;
  437. }
  438. for (getMaskSet().excludes[decisionPos].push(decisionTaker), i = decisionPos; i < getLastValidPosition(undefined, !0) + 1; i++) delete getMaskSet().validPositions[i];
  439. }
  440. }
  441. return getMaskSet().excludes[decisionPos] = undefined, isValidRslt;
  442. }
  443. function isValid(pos, c, strict, fromSetValid, fromAlternate, validateOnly) {
  444. function isSelection(posObj) {
  445. return isRTL ? posObj.begin - posObj.end > 1 || posObj.begin - posObj.end == 1 : posObj.end - posObj.begin > 1 || posObj.end - posObj.begin == 1;
  446. }
  447. function _isValid(position, c, strict) {
  448. var rslt = !1;
  449. return $.each(getTests(position), function(ndx, tst) {
  450. var test = tst.match;
  451. 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 && {
  452. c: getPlaceholder(position, test, !0) || test.def,
  453. pos: position
  454. })) {
  455. var elem = rslt.c !== undefined ? rslt.c : c;
  456. elem = elem === opts.skipOptionalPartCharacter && null === test.fn ? getPlaceholder(position, test, !0) || test.def : elem;
  457. var validatedPos = position, possibleModifiedBuffer = getBuffer();
  458. if (rslt.remove !== undefined && ($.isArray(rslt.remove) || (rslt.remove = [ rslt.remove ]),
  459. $.each(rslt.remove.sort(function(a, b) {
  460. return b - a;
  461. }), function(ndx, lmnt) {
  462. stripValidPositions(lmnt, lmnt + 1, !0);
  463. })), rslt.insert !== undefined && ($.isArray(rslt.insert) || (rslt.insert = [ rslt.insert ]),
  464. $.each(rslt.insert.sort(function(a, b) {
  465. return a - b;
  466. }), function(ndx, lmnt) {
  467. isValid(lmnt.pos, lmnt.c, !0, fromSetValid);
  468. })), rslt.refreshFromBuffer) {
  469. var refresh = rslt.refreshFromBuffer;
  470. if (refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, possibleModifiedBuffer),
  471. rslt.pos === undefined && rslt.c === undefined) return rslt.pos = getLastValidPosition(),
  472. !1;
  473. if ((validatedPos = rslt.pos !== undefined ? rslt.pos : position) !== position) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0, fromSetValid)),
  474. !1;
  475. } else if (!0 !== rslt && rslt.pos !== undefined && rslt.pos !== position && (validatedPos = rslt.pos,
  476. refreshFromBuffer(position, validatedPos, getBuffer().slice()), validatedPos !== position)) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0)),
  477. !1;
  478. return (!0 === rslt || rslt.pos !== undefined || rslt.c !== undefined) && (ndx > 0 && resetMaskSet(!0),
  479. setValidPosition(validatedPos, $.extend({}, tst, {
  480. input: casing(elem, test, validatedPos)
  481. }), fromSetValid, isSelection(pos)) || (rslt = !1), !1);
  482. }
  483. }), rslt;
  484. }
  485. function trackbackPositions(originalPos, newPos, fillOnly) {
  486. var result;
  487. if (originalPos === undefined) for (originalPos = newPos - 1; originalPos > 0 && !getMaskSet().validPositions[originalPos]; originalPos--) ;
  488. for (var ps = originalPos; ps < newPos; ps++) if (getMaskSet().validPositions[ps] === undefined && !isMask(ps, !0)) {
  489. var vp = 0 == ps ? getTest(ps) : getMaskSet().validPositions[ps - 1];
  490. if (vp) {
  491. var tstLocator, targetLocator = getLocator(vp), tests = getTests(ps).slice(), closest = undefined, bestMatch = getTest(ps);
  492. if ("" === tests[tests.length - 1].match.def && tests.pop(), $.each(tests, function(ndx, tst) {
  493. tstLocator = getLocator(tst, targetLocator.length);
  494. var distance = Math.abs(tstLocator - targetLocator);
  495. (closest === undefined || distance < closest) && null === tst.match.fn && !0 !== tst.match.optionality && !0 !== tst.match.optionalQuantifier && (closest = distance,
  496. bestMatch = tst);
  497. }), bestMatch = $.extend({}, bestMatch, {
  498. input: getPlaceholder(ps, bestMatch.match, !0) || bestMatch.match.def
  499. }), bestMatch.generatedInput = !0, setValidPosition(ps, bestMatch, !0), !0 !== fillOnly) {
  500. var cvpInput = getMaskSet().validPositions[newPos].input;
  501. getMaskSet().validPositions[newPos] = undefined, result = isValid(newPos, cvpInput, !0, !0);
  502. }
  503. }
  504. }
  505. return result;
  506. }
  507. function setValidPosition(pos, validTest, fromSetValid, isSelection) {
  508. if (isSelection || opts.insertMode && getMaskSet().validPositions[pos] !== undefined && fromSetValid === undefined) {
  509. var i, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), lvp = getLastValidPosition(undefined, !0);
  510. for (i = pos; i <= lvp; i++) delete getMaskSet().validPositions[i];
  511. getMaskSet().validPositions[pos] = $.extend(!0, {}, validTest);
  512. var j, valid = !0, vps = getMaskSet().validPositions, needsValidation = !1;
  513. for (i = j = pos; i <= lvp; i++) {
  514. var t = positionsClone[i];
  515. if (t !== undefined) for (var posMatch = j; "" !== getTest(posMatch).match.def && (null === t.match.fn && vps[i] && (!0 === vps[i].match.optionalQuantifier || !0 === vps[i].match.optionality) || null != t.match.fn); ) {
  516. if (posMatch++, !1 === needsValidation && positionsClone[posMatch] && positionsClone[posMatch].match.def === t.match.def) getMaskSet().validPositions[posMatch] = $.extend(!0, {}, positionsClone[posMatch]),
  517. getMaskSet().validPositions[posMatch].input = t.input, trackbackPositions(undefined, posMatch, !0),
  518. j = posMatch, valid = !0; else if (positionCanMatchDefinition(posMatch, t.match.def)) {
  519. var result = isValid(posMatch, t.input, !0, !0);
  520. valid = !1 !== result, j = result.caret || result.insert ? getLastValidPosition() : posMatch,
  521. needsValidation = !0;
  522. } else if (!(valid = !0 === t.generatedInput) && "" === getTest(posMatch).match.def) break;
  523. if (valid) break;
  524. }
  525. if (!valid) break;
  526. }
  527. if (!valid) return getMaskSet().validPositions = $.extend(!0, {}, positionsClone),
  528. resetMaskSet(!0), !1;
  529. } else getMaskSet().validPositions[pos] = $.extend(!0, {}, validTest);
  530. return resetMaskSet(!0), !0;
  531. }
  532. strict = !0 === strict;
  533. var maskPos = pos;
  534. pos.begin !== undefined && (maskPos = isRTL && !isSelection(pos) ? pos.end : pos.begin);
  535. var result = !0, positionsClone = $.extend(!0, {}, getMaskSet().validPositions);
  536. if ($.isFunction(opts.preValidation) && !strict && !0 !== fromSetValid && !0 !== validateOnly && (result = opts.preValidation(getBuffer(), maskPos, c, isSelection(pos), opts, getMaskSet())),
  537. !0 === result) {
  538. if (trackbackPositions(undefined, maskPos, !0), isSelection(pos) && (handleRemove(undefined, Inputmask.keyCode.DELETE, pos, !0, !0),
  539. maskPos = getMaskSet().p), (maxLength === undefined || maskPos < maxLength) && (result = _isValid(maskPos, c, strict),
  540. (!strict || !0 === fromSetValid) && !1 === result && !0 !== validateOnly)) {
  541. var currentPosValid = getMaskSet().validPositions[maskPos];
  542. if (!currentPosValid || null !== currentPosValid.match.fn || currentPosValid.match.def !== c && c !== opts.skipOptionalPartCharacter) {
  543. 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))) {
  544. result = trackbackPositions(maskPos, result.pos !== undefined ? result.pos : nPos) || result,
  545. maskPos = nPos;
  546. break;
  547. }
  548. } else result = {
  549. caret: seekNext(maskPos)
  550. };
  551. }
  552. !1 !== result || null === opts.keepStatic || !1 === opts.keepStatic || strict || !0 === fromAlternate || (result = alternate(maskPos, c, strict, fromSetValid)),
  553. !0 === result && (result = {
  554. pos: maskPos
  555. });
  556. }
  557. if ($.isFunction(opts.postValidation) && !1 !== result && !strict && !0 !== fromSetValid && !0 !== validateOnly) {
  558. var postResult = opts.postValidation(getBuffer(!0), result, opts);
  559. if (postResult !== undefined) {
  560. if (postResult.refreshFromBuffer && postResult.buffer) {
  561. var refresh = postResult.refreshFromBuffer;
  562. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, postResult.buffer);
  563. }
  564. result = !0 === postResult ? result : postResult;
  565. }
  566. }
  567. return result && result.pos === undefined && (result.pos = maskPos), !1 !== result && !0 !== validateOnly || (resetMaskSet(!0),
  568. getMaskSet().validPositions = $.extend(!0, {}, positionsClone)), result;
  569. }
  570. function isMask(pos, strict) {
  571. var test = getTestTemplate(pos).match;
  572. if ("" === test.def && (test = getTest(pos).match), null != test.fn) return test.fn;
  573. if (!0 !== strict && pos > -1) {
  574. var tests = getTests(pos);
  575. return tests.length > 1 + ("" === tests[tests.length - 1].match.def ? 1 : 0);
  576. }
  577. return !1;
  578. }
  579. function seekNext(pos, newBlock) {
  580. for (var position = pos + 1; "" !== getTest(position).match.def && (!0 === newBlock && (!0 !== getTest(position).match.newBlockMarker || !isMask(position)) || !0 !== newBlock && !isMask(position)); ) position++;
  581. return position;
  582. }
  583. function seekPrevious(pos, newBlock) {
  584. var tests, position = pos;
  585. if (position <= 0) return 0;
  586. 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)); ) ;
  587. return position;
  588. }
  589. function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
  590. if (event && $.isFunction(opts.onBeforeWrite)) {
  591. var result = opts.onBeforeWrite.call(inputmask, event, buffer, caretPos, opts);
  592. if (result) {
  593. if (result.refreshFromBuffer) {
  594. var refresh = result.refreshFromBuffer;
  595. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, result.buffer || buffer),
  596. buffer = getBuffer(!0);
  597. }
  598. caretPos !== undefined && (caretPos = result.caret !== undefined ? result.caret : caretPos);
  599. }
  600. }
  601. input !== undefined && (input.inputmask._valueSet(buffer.join("")), caretPos === undefined || event !== undefined && "blur" === event.type ? renderColorMask(input, caretPos, 0 === buffer.length) : caret(input, caretPos),
  602. !0 === triggerInputEvent && (skipInputEvent = !0, $(input).trigger("input")));
  603. }
  604. function getPlaceholder(pos, test, returnPL) {
  605. if ((test = test || getTest(pos).match).placeholder !== undefined || !0 === returnPL) return $.isFunction(test.placeholder) ? test.placeholder(opts) : test.placeholder;
  606. if (null === test.fn) {
  607. if (pos > -1 && getMaskSet().validPositions[pos] === undefined) {
  608. var prevTest, tests = getTests(pos), staticAlternations = [];
  609. 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]),
  610. 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);
  611. }
  612. return test.def;
  613. }
  614. return opts.placeholder.charAt(pos % opts.placeholder.length);
  615. }
  616. function checkVal(input, writeOut, strict, nptvl, initiatingEvent) {
  617. function isTemplateMatch(ndx, charCodes) {
  618. 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));
  619. }
  620. var inputValue = nptvl.slice(), charCodes = "", initialNdx = -1, result = undefined;
  621. if (resetMaskSet(), strict || !0 === opts.autoUnmask) initialNdx = seekNext(initialNdx); else {
  622. var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""), matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
  623. matches && matches.length > 0 && (inputValue.splice(0, matches.length * staticInput.length),
  624. initialNdx = seekNext(initialNdx));
  625. }
  626. -1 === initialNdx ? (getMaskSet().p = seekNext(initialNdx), initialNdx = 0) : getMaskSet().p = initialNdx,
  627. $.each(inputValue, function(ndx, charCode) {
  628. 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 {
  629. var keypress = new $.Event("_checkval");
  630. keypress.which = charCode.charCodeAt(0), charCodes += charCode;
  631. var lvp = getLastValidPosition(undefined, !0), prevTest = getTest(lvp), nextTest = getTestTemplate(lvp + 1, prevTest ? prevTest.locator.slice() : undefined, lvp);
  632. if (!isTemplateMatch(initialNdx, charCodes) || strict || opts.autoUnmask) {
  633. var pos = strict ? ndx : null == nextTest.match.fn && nextTest.match.optionality && lvp + 1 < getMaskSet().p ? lvp + 1 : getMaskSet().p;
  634. (result = EventHandlers.keypressEvent.call(input, keypress, !0, !1, strict, pos)) && (initialNdx = pos + 1,
  635. charCodes = "");
  636. } else result = EventHandlers.keypressEvent.call(input, keypress, !0, !1, !0, lvp + 1);
  637. writeBuffer(undefined, getBuffer(), result.forwardPosition, keypress, !1);
  638. }
  639. }), writeOut && writeBuffer(input, getBuffer(), result ? result.forwardPosition : undefined, initiatingEvent || new $.Event("checkval"), initiatingEvent && "input" === initiatingEvent.type);
  640. }
  641. function unmaskedvalue(input) {
  642. if (input) {
  643. if (input.inputmask === undefined) return input.value;
  644. input.inputmask && input.inputmask.refreshValue && EventHandlers.setValueEvent.call(input);
  645. }
  646. var umValue = [], vps = getMaskSet().validPositions;
  647. for (var pndx in vps) vps[pndx].match && null != vps[pndx].match.fn && umValue.push(vps[pndx].input);
  648. var unmaskedValue = 0 === umValue.length ? "" : (isRTL ? umValue.reverse() : umValue).join("");
  649. if ($.isFunction(opts.onUnMask)) {
  650. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
  651. unmaskedValue = opts.onUnMask.call(inputmask, bufferValue, unmaskedValue, opts);
  652. }
  653. return unmaskedValue;
  654. }
  655. function caret(input, begin, end, notranslate) {
  656. function translatePosition(pos) {
  657. return !0 === notranslate || !isRTL || "number" != typeof pos || opts.greedy && "" === opts.placeholder || (pos = input.inputmask.__valueGet.call(input).length - pos),
  658. pos;
  659. }
  660. var range;
  661. if (begin === undefined) return input.setSelectionRange ? (begin = input.selectionStart,
  662. end = input.selectionEnd) : window.getSelection ? (range = window.getSelection().getRangeAt(0)).commonAncestorContainer.parentNode !== input && range.commonAncestorContainer !== input || (begin = range.startOffset,
  663. 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),
  664. {
  665. begin: translatePosition(begin),
  666. end: translatePosition(end)
  667. };
  668. if ($.isArray(begin) && (end = isRTL ? begin[0] : begin[1], begin = isRTL ? begin[1] : begin[0]),
  669. begin.begin !== undefined && (end = isRTL ? begin.begin : begin.end, begin = isRTL ? begin.end : begin.begin),
  670. "number" == typeof begin) {
  671. begin = translatePosition(begin), end = "number" == typeof (end = translatePosition(end)) ? end : begin;
  672. var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
  673. if (input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0, !1 === opts.insertMode && begin === end && end++,
  674. input.inputmask.caretPos = {
  675. begin: begin,
  676. end: end
  677. }, input.setSelectionRange) input.selectionStart = begin, input.selectionEnd = end; else if (window.getSelection) {
  678. if (range = document.createRange(), input.firstChild === undefined || null === input.firstChild) {
  679. var textNode = document.createTextNode("");
  680. input.appendChild(textNode);
  681. }
  682. range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length),
  683. range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length),
  684. range.collapse(!0);
  685. var sel = window.getSelection();
  686. sel.removeAllRanges(), sel.addRange(range);
  687. } else input.createTextRange && ((range = input.createTextRange()).collapse(!0),
  688. range.moveEnd("character", end), range.moveStart("character", begin), range.select());
  689. renderColorMask(input, {
  690. begin: begin,
  691. end: end
  692. });
  693. }
  694. }
  695. function determineLastRequiredPosition(returnDefinition) {
  696. var pos, testPos, buffer = getBuffer(), bl = buffer.length, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet().validPositions[lvp], ndxIntlzr = lvTest !== undefined ? lvTest.locator.slice() : undefined;
  697. for (pos = lvp + 1; pos < buffer.length; pos++) ndxIntlzr = (testPos = getTestTemplate(pos, ndxIntlzr, pos - 1)).locator.slice(),
  698. positions[pos] = $.extend(!0, {}, testPos);
  699. var lvTestAlt = lvTest && lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation] : undefined;
  700. 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--;
  701. return returnDefinition ? {
  702. l: bl,
  703. def: positions[bl] ? positions[bl].match : undefined
  704. } : bl;
  705. }
  706. function clearOptionalTail(buffer) {
  707. 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++;
  708. for (;(validPos = getMaskSet().validPositions[rl - 1]) && validPos && validPos.match.optionality && validPos.input === opts.skipOptionalPartCharacter; ) rl--;
  709. return buffer.splice(rl), buffer;
  710. }
  711. function isComplete(buffer) {
  712. if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
  713. if ("*" === opts.repeat) return undefined;
  714. var complete = !1, lrp = determineLastRequiredPosition(!0), aml = seekPrevious(lrp.l);
  715. if (lrp.def === undefined || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
  716. complete = !0;
  717. for (var i = 0; i <= aml; i++) {
  718. var test = getTestTemplate(i).match;
  719. if (null !== test.fn && getMaskSet().validPositions[i] === undefined && !0 !== test.optionality && !0 !== test.optionalQuantifier || null === test.fn && buffer[i] !== getPlaceholder(i, test)) {
  720. complete = !1;
  721. break;
  722. }
  723. }
  724. }
  725. return complete;
  726. }
  727. function handleRemove(input, k, pos, strict, fromIsValid) {
  728. if ((opts.numericInput || isRTL) && (k === Inputmask.keyCode.BACKSPACE ? k = Inputmask.keyCode.DELETE : k === Inputmask.keyCode.DELETE && (k = Inputmask.keyCode.BACKSPACE),
  729. isRTL)) {
  730. var pend = pos.end;
  731. pos.end = pos.begin, pos.begin = pend;
  732. }
  733. if (k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || !1 === opts.insertMode) ? (pos.begin = seekPrevious(pos.begin),
  734. 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,
  735. getMaskSet().validPositions[pos.begin] !== undefined && getMaskSet().validPositions[pos.begin].input === opts.groupSeparator && pos.end++),
  736. stripValidPositions(pos.begin, pos.end, !1, strict), !0 !== strict && null !== opts.keepStatic && !1 !== opts.keepStatic) {
  737. var result = alternate(!0);
  738. result && (pos.begin = result.caret !== undefined ? result.caret : result.pos ? seekNext(result.pos.begin ? result.pos.begin : result.pos) : getLastValidPosition(-1, !0));
  739. }
  740. var lvp = getLastValidPosition(pos.begin, !0);
  741. if (lvp < pos.begin || -1 === pos.begin) getMaskSet().p = seekNext(lvp); else if (!0 !== strict && (getMaskSet().p = pos.begin,
  742. !0 !== fromIsValid)) for (;getMaskSet().p < lvp && getMaskSet().validPositions[getMaskSet().p] === undefined; ) getMaskSet().p++;
  743. }
  744. function initializeColorMask(input) {
  745. function findCaretPos(clientx) {
  746. var caretPos, e = document.createElement("span");
  747. for (var style in computedStyle) isNaN(style) && -1 !== style.indexOf("font") && (e.style[style] = computedStyle[style]);
  748. e.style.textTransform = computedStyle.textTransform, e.style.letterSpacing = computedStyle.letterSpacing,
  749. e.style.position = "absolute", e.style.height = "auto", e.style.width = "auto",
  750. e.style.visibility = "hidden", e.style.whiteSpace = "nowrap", document.body.appendChild(e);
  751. var itl, inputText = input.inputmask._valueGet(), previousWidth = 0;
  752. for (caretPos = 0, itl = inputText.length; caretPos <= itl; caretPos++) {
  753. if (e.innerHTML += inputText.charAt(caretPos) || "_", e.offsetWidth >= clientx) {
  754. var offset1 = clientx - previousWidth, offset2 = e.offsetWidth - clientx;
  755. e.innerHTML = inputText.charAt(caretPos), caretPos = (offset1 -= e.offsetWidth / 3) < offset2 ? caretPos - 1 : caretPos;
  756. break;
  757. }
  758. previousWidth = e.offsetWidth;
  759. }
  760. return document.body.removeChild(e), caretPos;
  761. }
  762. var computedStyle = (input.ownerDocument.defaultView || window).getComputedStyle(input, null), template = document.createElement("div");
  763. template.style.width = computedStyle.width, template.style.textAlign = computedStyle.textAlign,
  764. colorMask = document.createElement("div"), input.inputmask.colorMask = colorMask,
  765. colorMask.className = "im-colormask", input.parentNode.insertBefore(colorMask, input),
  766. input.parentNode.removeChild(input), colorMask.appendChild(template), colorMask.appendChild(input),
  767. input.style.left = template.offsetLeft + "px", $(input).on("click", function(e) {
  768. return caret(input, findCaretPos(e.clientX)), EventHandlers.clickEvent.call(input, [ e ]);
  769. }), $(input).on("keydown", function(e) {
  770. e.shiftKey || !1 === opts.insertMode || setTimeout(function() {
  771. renderColorMask(input);
  772. }, 0);
  773. });
  774. }
  775. function renderColorMask(input, caretPos, clear) {
  776. function setEntry(entry) {
  777. if (entry === undefined && (entry = ""), isStatic || null !== test.fn && testPos.input !== undefined) if (isStatic && (null !== test.fn && testPos.input !== undefined || "" === test.def)) {
  778. isStatic = !1;
  779. var mtl = maskTemplate.length;
  780. maskTemplate[mtl - 1] = maskTemplate[mtl - 1] + "</span>", maskTemplate.push(entry);
  781. } else maskTemplate.push(entry); else isStatic = !0, maskTemplate.push("<span class='im-static'>" + entry);
  782. }
  783. var test, testPos, ndxIntlzr, maskTemplate = [], isStatic = !1, pos = 0;
  784. if (colorMask !== undefined) {
  785. var buffer = getBuffer();
  786. if (caretPos === undefined ? caretPos = caret(input) : caretPos.begin === undefined && (caretPos = {
  787. begin: caretPos,
  788. end: caretPos
  789. }), !0 !== clear) {
  790. var lvp = getLastValidPosition();
  791. do {
  792. getMaskSet().validPositions[pos] ? (testPos = getMaskSet().validPositions[pos],
  793. test = testPos.match, ndxIntlzr = testPos.locator.slice(), setEntry(buffer[pos])) : (testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  794. 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))),
  795. pos++;
  796. } while ((maxLength === undefined || pos < maxLength) && (null !== test.fn || "" !== test.def) || lvp > pos || isStatic);
  797. 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">'),
  798. maskTemplate.splice(caretPos.end + 1, 0, "</mark>"));
  799. }
  800. var template = colorMask.getElementsByTagName("div")[0];
  801. template.innerHTML = maskTemplate.join(""), input.inputmask.positionColorMask(input, template);
  802. }
  803. }
  804. maskset = maskset || this.maskset, opts = opts || this.opts;
  805. var undoValue, $el, maxLength, colorMask, inputmask = this, el = this.el, isRTL = this.isRTL, skipKeyPressEvent = !1, skipInputEvent = !1, ignorable = !1, mouseEnter = !1, trackCaret = !1, EventRuler = {
  806. on: function(input, eventName, eventHandler) {
  807. var ev = function(e) {
  808. var that = this;
  809. if (that.inputmask === undefined && "FORM" !== this.nodeName) {
  810. var imOpts = $.data(that, "_inputmask_opts");
  811. imOpts ? new Inputmask(imOpts).mask(that) : EventRuler.off(that);
  812. } else {
  813. 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))) {
  814. switch (e.type) {
  815. case "input":
  816. if (!0 === skipInputEvent) return skipInputEvent = !1, e.preventDefault();
  817. mobile && (trackCaret = !0);
  818. break;
  819. case "keydown":
  820. skipKeyPressEvent = !1, skipInputEvent = !1;
  821. break;
  822. case "keypress":
  823. if (!0 === skipKeyPressEvent) return e.preventDefault();
  824. skipKeyPressEvent = !0;
  825. break;
  826. case "click":
  827. if (iemobile || iphone) {
  828. var args = arguments;
  829. return setTimeout(function() {
  830. eventHandler.apply(that, args);
  831. }, 0), !1;
  832. }
  833. }
  834. var returnVal = eventHandler.apply(that, arguments);
  835. return trackCaret && (trackCaret = !1, setTimeout(function() {
  836. caret(that, that.inputmask.caretPos, undefined, !0);
  837. })), !1 === returnVal && (e.preventDefault(), e.stopPropagation()), returnVal;
  838. }
  839. e.preventDefault();
  840. }
  841. };
  842. input.inputmask.events[eventName] = input.inputmask.events[eventName] || [], input.inputmask.events[eventName].push(ev),
  843. -1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null !== input.form && $(input.form).on(eventName, ev) : $(input).on(eventName, ev);
  844. },
  845. off: function(input, event) {
  846. if (input.inputmask && input.inputmask.events) {
  847. var events;
  848. event ? (events = [])[event] = input.inputmask.events[event] : events = input.inputmask.events,
  849. $.each(events, function(eventName, evArr) {
  850. for (;evArr.length > 0; ) {
  851. var ev = evArr.pop();
  852. -1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null !== input.form && $(input.form).off(eventName, ev) : $(input).off(eventName, ev);
  853. }
  854. delete input.inputmask.events[eventName];
  855. });
  856. }
  857. }
  858. }, EventHandlers = {
  859. keydownEvent: function(e) {
  860. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  861. 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(),
  862. handleRemove(0, k, pos), writeBuffer(input, getBuffer(!0), getMaskSet().p, e, input.inputmask._valueGet() !== getBuffer().join("")),
  863. 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) {
  864. e.preventDefault();
  865. var caretPos = seekNext(getLastValidPosition());
  866. opts.insertMode || caretPos !== getMaskSet().maskLength || e.shiftKey || caretPos--,
  867. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, !0);
  868. } else k === Inputmask.keyCode.HOME && !e.shiftKey || k === Inputmask.keyCode.PAGE_UP ? (e.preventDefault(),
  869. 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("")),
  870. $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)),
  871. pos.end = seekPrevious(pos.begin, !0), pos.begin = seekPrevious(pos.end, !0)) : (pos.begin = seekNext(pos.begin, !0),
  872. pos.end = seekNext(pos.begin, !0), pos.end < getMaskSet().maskLength && pos.end--),
  873. pos.begin < getMaskSet().maskLength && (e.preventDefault(), caret(input, pos.begin, pos.end))) : e.shiftKey || !1 === opts.insertMode && (k === Inputmask.keyCode.RIGHT ? setTimeout(function() {
  874. var caretPos = caret(input);
  875. caret(input, caretPos.begin);
  876. }, 0) : k === Inputmask.keyCode.LEFT && setTimeout(function() {
  877. var caretPos = caret(input);
  878. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  879. }, 0)) : (opts.insertMode = !opts.insertMode, caret(input, opts.insertMode || pos.begin !== getMaskSet().maskLength ? pos.begin : pos.begin - 1));
  880. opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts), ignorable = -1 !== $.inArray(k, opts.ignorables);
  881. },
  882. keypressEvent: function(e, checkval, writeOut, strict, ndx) {
  883. var input = this, $input = $(input), k = e.which || e.charCode || e.keyCode;
  884. if (!(!0 === checkval || e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable)) return k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("") && (undoValue = getBuffer().join(""),
  885. setTimeout(function() {
  886. $input.trigger("change");
  887. }, 0)), !0;
  888. if (k) {
  889. 46 === k && !1 === e.shiftKey && "" !== opts.radixPoint && (k = opts.radixPoint.charCodeAt(0));
  890. var forwardPosition, pos = checkval ? {
  891. begin: ndx,
  892. end: ndx
  893. } : caret(input), c = String.fromCharCode(k);
  894. getMaskSet().writeOutBuffer = !0;
  895. var valResult = isValid(pos, c, strict);
  896. if (!1 !== valResult && (resetMaskSet(!0), forwardPosition = valResult.caret !== undefined ? valResult.caret : seekNext(valResult.pos.begin ? valResult.pos.begin : valResult.pos),
  897. getMaskSet().p = forwardPosition), forwardPosition = opts.numericInput && valResult.caret === undefined ? seekPrevious(forwardPosition) : forwardPosition,
  898. !1 !== writeOut && (setTimeout(function() {
  899. opts.onKeyValidation.call(input, k, valResult, opts);
  900. }, 0), getMaskSet().writeOutBuffer && !1 !== valResult)) {
  901. var buffer = getBuffer();
  902. writeBuffer(input, buffer, forwardPosition, e, !0 !== checkval), !0 !== checkval && setTimeout(function() {
  903. !0 === isComplete(buffer) && $input.trigger("complete");
  904. }, 0);
  905. }
  906. if (e.preventDefault(), checkval) return !1 !== valResult && (valResult.forwardPosition = forwardPosition),
  907. valResult;
  908. }
  909. },
  910. pasteEvent: function(e) {
  911. var tempValue, input = this, ev = e.originalEvent || e, $input = $(input), inputValue = input.inputmask._valueGet(!0), caretPos = caret(input);
  912. isRTL && (tempValue = caretPos.end, caretPos.end = caretPos.begin, caretPos.begin = tempValue);
  913. var valueBeforeCaret = inputValue.substr(0, caretPos.begin), valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
  914. if (valueBeforeCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(0, caretPos.begin).join("") && (valueBeforeCaret = ""),
  915. valueAfterCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(caretPos.end).join("") && (valueAfterCaret = ""),
  916. isRTL && (tempValue = valueBeforeCaret, valueBeforeCaret = valueAfterCaret, valueAfterCaret = tempValue),
  917. window.clipboardData && window.clipboardData.getData) inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret; else {
  918. if (!ev.clipboardData || !ev.clipboardData.getData) return !0;
  919. inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret;
  920. }
  921. var pasteValue = inputValue;
  922. if ($.isFunction(opts.onBeforePaste)) {
  923. if (!1 === (pasteValue = opts.onBeforePaste.call(inputmask, inputValue, opts))) return e.preventDefault();
  924. pasteValue || (pasteValue = inputValue);
  925. }
  926. return checkVal(input, !1, !1, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split("")),
  927. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, undoValue !== getBuffer().join("")),
  928. !0 === isComplete(getBuffer()) && $input.trigger("complete"), e.preventDefault();
  929. },
  930. inputFallBackEvent: function(e) {
  931. var input = this, inputValue = input.inputmask._valueGet();
  932. if (getBuffer().join("") !== inputValue) {
  933. var caretPos = caret(input);
  934. if (inputValue = function(input, inputValue, caretPos) {
  935. return "." === inputValue.charAt(caretPos.begin - 1) && "" !== opts.radixPoint && ((inputValue = inputValue.split(""))[caretPos.begin - 1] = opts.radixPoint.charAt(0),
  936. inputValue = inputValue.join("")), inputValue;
  937. }(0, inputValue, caretPos), inputValue = function(input, inputValue, caretPos) {
  938. if (iemobile) {
  939. var inputChar = inputValue.replace(getBuffer().join(""), "");
  940. if (1 === inputChar.length) {
  941. var iv = inputValue.split("");
  942. iv.splice(caretPos.begin, 0, inputChar), inputValue = iv.join("");
  943. }
  944. }
  945. return inputValue;
  946. }(0, inputValue, caretPos), getBuffer().join("") !== inputValue) {
  947. 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;
  948. if (frontPart !== frontBufferPart) {
  949. for (var fpl = (isEntry = frontPart.length >= frontBufferPart.length) ? frontPart.length : frontBufferPart.length, i = 0; frontPart.charAt(i) === frontBufferPart.charAt(i) && i < fpl; i++) ;
  950. isEntry && (0 === offset && (selection.begin = i), entries += frontPart.slice(i, selection.end));
  951. }
  952. if (backPart !== backBufferPart && (backPart.length > backBufferPart.length ? entries += backPart.slice(0, 1) : backPart.length < backBufferPart.length && (selection.end += backBufferPart.length - backPart.length,
  953. isEntry || "" === opts.radixPoint || "" !== backPart || frontPart.charAt(selection.begin + offset - 1) !== opts.radixPoint || (selection.begin--,
  954. entries = opts.radixPoint))), writeBuffer(input, getBuffer(), {
  955. begin: selection.begin + offset,
  956. end: selection.end + offset
  957. }), entries.length > 0) $.each(entries.split(""), function(ndx, entry) {
  958. var keypress = new $.Event("keypress");
  959. keypress.which = entry.charCodeAt(0), ignorable = !1, EventHandlers.keypressEvent.call(input, keypress);
  960. }); else {
  961. selection.begin === selection.end - 1 && (selection.begin = seekPrevious(selection.begin + 1),
  962. selection.begin === selection.end - 1 ? caret(input, selection.begin) : caret(input, selection.begin, selection.end));
  963. var keydown = new $.Event("keydown");
  964. keydown.keyCode = Inputmask.keyCode.DELETE, EventHandlers.keydownEvent.call(input, keydown),
  965. !1 === opts.insertMode && caret(input, caret(input).begin - 1);
  966. }
  967. e.preventDefault();
  968. }
  969. }
  970. },
  971. setValueEvent: function(e) {
  972. this.inputmask.refreshValue = !1;
  973. var input = this, value = input.inputmask._valueGet(!0);
  974. $.isFunction(opts.onBeforeMask) && (value = opts.onBeforeMask.call(inputmask, value, opts) || value),
  975. value = value.split(""), checkVal(input, !0, !1, isRTL ? value.reverse() : value),
  976. undoValue = getBuffer().join(""), (opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("") && input.inputmask._valueSet("");
  977. },
  978. focusEvent: function(e) {
  979. var input = this, nptValue = input.inputmask._valueGet();
  980. opts.showMaskOnFocus && (!opts.showMaskOnHover || opts.showMaskOnHover && "" === nptValue) && (input.inputmask._valueGet() !== getBuffer().join("") ? writeBuffer(input, getBuffer(), seekNext(getLastValidPosition())) : !1 === mouseEnter && caret(input, seekNext(getLastValidPosition()))),
  981. !0 === opts.positionCaretOnTab && !1 === mouseEnter && EventHandlers.clickEvent.apply(input, [ e, !0 ]),
  982. undoValue = getBuffer().join("");
  983. },
  984. mouseleaveEvent: function(e) {
  985. var input = this;
  986. if (mouseEnter = !1, opts.clearMaskOnLostFocus && document.activeElement !== input) {
  987. var buffer = getBuffer().slice(), nptValue = input.inputmask._valueGet();
  988. nptValue !== input.getAttribute("placeholder") && "" !== nptValue && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer),
  989. writeBuffer(input, buffer));
  990. }
  991. },
  992. clickEvent: function(e, tabbed) {
  993. function doRadixFocus(clickPos) {
  994. if ("" !== opts.radixPoint) {
  995. var vps = getMaskSet().validPositions;
  996. if (vps[clickPos] === undefined || vps[clickPos].input === getPlaceholder(clickPos)) {
  997. if (clickPos < seekNext(-1)) return !0;
  998. var radixPos = $.inArray(opts.radixPoint, getBuffer());
  999. if (-1 !== radixPos) {
  1000. for (var vp in vps) if (radixPos < vp && vps[vp].input !== getPlaceholder(vp)) return !1;
  1001. return !0;
  1002. }
  1003. }
  1004. }
  1005. return !1;
  1006. }
  1007. var input = this;
  1008. setTimeout(function() {
  1009. if (document.activeElement === input) {
  1010. var selectedCaret = caret(input);
  1011. if (tabbed && (isRTL ? selectedCaret.end = selectedCaret.begin : selectedCaret.begin = selectedCaret.end),
  1012. selectedCaret.begin === selectedCaret.end) switch (opts.positionCaretOnClick) {
  1013. case "none":
  1014. break;
  1015. case "select":
  1016. caret(input, 0, getBuffer().length);
  1017. break;
  1018. case "radixFocus":
  1019. if (doRadixFocus(selectedCaret.begin)) {
  1020. var radixPos = getBuffer().join("").indexOf(opts.radixPoint);
  1021. caret(input, opts.numericInput ? seekNext(radixPos) : radixPos);
  1022. break;
  1023. }
  1024. default:
  1025. var clickPosition = selectedCaret.begin, lvclickPosition = getLastValidPosition(clickPosition, !0), lastPosition = seekNext(lvclickPosition);
  1026. if (clickPosition < lastPosition) caret(input, isMask(clickPosition, !0) || isMask(clickPosition - 1, !0) ? clickPosition : seekNext(clickPosition)); else {
  1027. var lvp = getMaskSet().validPositions[lvclickPosition], tt = getTestTemplate(lastPosition, lvp ? lvp.match.locator : undefined, lvp), placeholder = getPlaceholder(lastPosition, tt.match);
  1028. if ("" !== placeholder && getBuffer()[lastPosition] !== placeholder && !0 !== tt.match.optionalQuantifier && !0 !== tt.match.newBlockMarker || !isMask(lastPosition, !0) && tt.match.def === placeholder) {
  1029. var newPos = seekNext(lastPosition);
  1030. (clickPosition >= newPos || clickPosition === lastPosition) && (lastPosition = newPos);
  1031. }
  1032. caret(input, lastPosition);
  1033. }
  1034. }
  1035. }
  1036. }, 0);
  1037. },
  1038. dblclickEvent: function(e) {
  1039. var input = this;
  1040. setTimeout(function() {
  1041. caret(input, 0, seekNext(getLastValidPosition()));
  1042. }, 0);
  1043. },
  1044. cutEvent: function(e) {
  1045. 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);
  1046. clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join("")),
  1047. document.execCommand && document.execCommand("copy"), handleRemove(0, Inputmask.keyCode.DELETE, pos),
  1048. writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join("")),
  1049. input.inputmask._valueGet() === getBufferTemplate().join("") && $input.trigger("cleared");
  1050. },
  1051. blurEvent: function(e) {
  1052. var $input = $(this), input = this;
  1053. if (input.inputmask) {
  1054. var nptValue = input.inputmask._valueGet(), buffer = getBuffer().slice();
  1055. "" === nptValue && colorMask === undefined || (opts.clearMaskOnLostFocus && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer)),
  1056. !1 === isComplete(buffer) && (setTimeout(function() {
  1057. $input.trigger("incomplete");
  1058. }, 0), opts.clearIncomplete && (resetMaskSet(), buffer = opts.clearMaskOnLostFocus ? [] : getBufferTemplate().slice())),
  1059. writeBuffer(input, buffer, undefined, e)), undoValue !== getBuffer().join("") && (undoValue = buffer.join(""),
  1060. $input.trigger("change"));
  1061. }
  1062. },
  1063. mouseenterEvent: function(e) {
  1064. var input = this;
  1065. mouseEnter = !0, document.activeElement !== input && opts.showMaskOnHover && input.inputmask._valueGet() !== getBuffer().join("") && writeBuffer(input, getBuffer());
  1066. },
  1067. submitEvent: function(e) {
  1068. undoValue !== getBuffer().join("") && $el.trigger("change"), opts.clearMaskOnLostFocus && -1 === getLastValidPosition() && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("") && el.inputmask._valueSet(""),
  1069. opts.removeMaskOnSubmit && (el.inputmask._valueSet(el.inputmask.unmaskedvalue(), !0),
  1070. setTimeout(function() {
  1071. writeBuffer(el, getBuffer());
  1072. }, 0));
  1073. },
  1074. resetEvent: function(e) {
  1075. el.inputmask.refreshValue = !0, setTimeout(function() {
  1076. $el.trigger("setvalue");
  1077. }, 0);
  1078. }
  1079. };
  1080. Inputmask.prototype.positionColorMask = function(input, template) {
  1081. input.style.left = template.offsetLeft + "px";
  1082. };
  1083. var valueBuffer;
  1084. if (actionObj !== undefined) switch (actionObj.action) {
  1085. case "isComplete":
  1086. return el = actionObj.el, isComplete(getBuffer());
  1087. case "unmaskedvalue":
  1088. return el !== undefined && actionObj.value === undefined || (valueBuffer = actionObj.value,
  1089. valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(inputmask, valueBuffer, opts) || valueBuffer : valueBuffer).split(""),
  1090. checkVal(undefined, !1, !1, isRTL ? valueBuffer.reverse() : valueBuffer), $.isFunction(opts.onBeforeWrite) && opts.onBeforeWrite.call(inputmask, undefined, getBuffer(), 0, opts)),
  1091. unmaskedvalue(el);
  1092. case "mask":
  1093. !function(elem) {
  1094. EventRuler.off(elem);
  1095. var isSupported = function(input, opts) {
  1096. var elementType = input.getAttribute("type"), isSupported = "INPUT" === input.tagName && -1 !== $.inArray(elementType, opts.supportsInputType) || input.isContentEditable || "TEXTAREA" === input.tagName;
  1097. if (!isSupported) if ("INPUT" === input.tagName) {
  1098. var el = document.createElement("input");
  1099. el.setAttribute("type", elementType), isSupported = "text" === el.type, el = null;
  1100. } else isSupported = "partial";
  1101. return !1 !== isSupported ? function(npt) {
  1102. function getter() {
  1103. 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);
  1104. }
  1105. function setter(value) {
  1106. valueSet.call(this, value), this.inputmask && $(this).trigger("setvalue");
  1107. }
  1108. var valueGet, valueSet;
  1109. if (!npt.inputmask.__valueGet) {
  1110. if (!0 !== opts.noValuePatching) {
  1111. if (Object.getOwnPropertyDescriptor) {
  1112. "function" != typeof Object.getPrototypeOf && (Object.getPrototypeOf = "object" === _typeof("test".__proto__) ? function(object) {
  1113. return object.__proto__;
  1114. } : function(object) {
  1115. return object.constructor.prototype;
  1116. });
  1117. var valueProperty = Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value") : undefined;
  1118. valueProperty && valueProperty.get && valueProperty.set ? (valueGet = valueProperty.get,
  1119. valueSet = valueProperty.set, Object.defineProperty(npt, "value", {
  1120. get: getter,
  1121. set: setter,
  1122. configurable: !0
  1123. })) : "INPUT" !== npt.tagName && (valueGet = function() {
  1124. return this.textContent;
  1125. }, valueSet = function(value) {
  1126. this.textContent = value;
  1127. }, Object.defineProperty(npt, "value", {
  1128. get: getter,
  1129. set: setter,
  1130. configurable: !0
  1131. }));
  1132. } else document.__lookupGetter__ && npt.__lookupGetter__("value") && (valueGet = npt.__lookupGetter__("value"),
  1133. valueSet = npt.__lookupSetter__("value"), npt.__defineGetter__("value", getter),
  1134. npt.__defineSetter__("value", setter));
  1135. npt.inputmask.__valueGet = valueGet, npt.inputmask.__valueSet = valueSet;
  1136. }
  1137. npt.inputmask._valueGet = function(overruleRTL) {
  1138. return isRTL && !0 !== overruleRTL ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
  1139. }, npt.inputmask._valueSet = function(value, overruleRTL) {
  1140. valueSet.call(this.el, null === value || value === undefined ? "" : !0 !== overruleRTL && isRTL ? value.split("").reverse().join("") : value);
  1141. }, valueGet === undefined && (valueGet = function() {
  1142. return this.value;
  1143. }, valueSet = function(value) {
  1144. this.value = value;
  1145. }, function(type) {
  1146. if ($.valHooks && ($.valHooks[type] === undefined || !0 !== $.valHooks[type].inputmaskpatch)) {
  1147. var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function(elem) {
  1148. return elem.value;
  1149. }, valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function(elem, value) {
  1150. return elem.value = value, elem;
  1151. };
  1152. $.valHooks[type] = {
  1153. get: function(elem) {
  1154. if (elem.inputmask) {
  1155. if (elem.inputmask.opts.autoUnmask) return elem.inputmask.unmaskedvalue();
  1156. var result = valhookGet(elem);
  1157. return -1 !== getLastValidPosition(undefined, undefined, elem.inputmask.maskset.validPositions) || !0 !== opts.nullable ? result : "";
  1158. }
  1159. return valhookGet(elem);
  1160. },
  1161. set: function(elem, value) {
  1162. var result, $elem = $(elem);
  1163. return result = valhookSet(elem, value), elem.inputmask && $elem.trigger("setvalue"),
  1164. result;
  1165. },
  1166. inputmaskpatch: !0
  1167. };
  1168. }
  1169. }(npt.type), function(npt) {
  1170. EventRuler.on(npt, "mouseenter", function(event) {
  1171. var $input = $(this);
  1172. this.inputmask._valueGet() !== getBuffer().join("") && $input.trigger("setvalue");
  1173. });
  1174. }(npt));
  1175. }
  1176. }(input) : input.inputmask = undefined, isSupported;
  1177. }(elem, opts);
  1178. if (!1 !== isSupported && (el = elem, $el = $(el), -1 === (maxLength = el !== undefined ? el.maxLength : undefined) && (maxLength = undefined),
  1179. !0 === opts.colorMask && initializeColorMask(el), mobile && ("inputmode" in el && (el.inputmode = opts.inputmode,
  1180. el.setAttribute("inputmode", opts.inputmode)), !0 === opts.disablePredictiveText && ("autocorrect" in el ? el.autocorrect = !1 : (!0 !== opts.colorMask && initializeColorMask(el),
  1181. el.type = "password"))), !0 === isSupported && (EventRuler.on(el, "submit", EventHandlers.submitEvent),
  1182. EventRuler.on(el, "reset", EventHandlers.resetEvent), EventRuler.on(el, "mouseenter", EventHandlers.mouseenterEvent),
  1183. EventRuler.on(el, "blur", EventHandlers.blurEvent), EventRuler.on(el, "focus", EventHandlers.focusEvent),
  1184. EventRuler.on(el, "mouseleave", EventHandlers.mouseleaveEvent), !0 !== opts.colorMask && EventRuler.on(el, "click", EventHandlers.clickEvent),
  1185. EventRuler.on(el, "dblclick", EventHandlers.dblclickEvent), EventRuler.on(el, "paste", EventHandlers.pasteEvent),
  1186. EventRuler.on(el, "dragdrop", EventHandlers.pasteEvent), EventRuler.on(el, "drop", EventHandlers.pasteEvent),
  1187. EventRuler.on(el, "cut", EventHandlers.cutEvent), EventRuler.on(el, "complete", opts.oncomplete),
  1188. EventRuler.on(el, "incomplete", opts.onincomplete), EventRuler.on(el, "cleared", opts.oncleared),
  1189. mobile || !0 === opts.inputEventOnly ? el.removeAttribute("maxLength") : (EventRuler.on(el, "keydown", EventHandlers.keydownEvent),
  1190. EventRuler.on(el, "keypress", EventHandlers.keypressEvent)), EventRuler.on(el, "compositionstart", $.noop),
  1191. EventRuler.on(el, "compositionupdate", $.noop), EventRuler.on(el, "compositionend", $.noop),
  1192. EventRuler.on(el, "keyup", $.noop), EventRuler.on(el, "input", EventHandlers.inputFallBackEvent),
  1193. EventRuler.on(el, "beforeinput", $.noop)), EventRuler.on(el, "setvalue", EventHandlers.setValueEvent),
  1194. undoValue = getBufferTemplate().join(""), "" !== el.inputmask._valueGet(!0) || !1 === opts.clearMaskOnLostFocus || document.activeElement === el)) {
  1195. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(inputmask, el.inputmask._valueGet(!0), opts) || el.inputmask._valueGet(!0) : el.inputmask._valueGet(!0);
  1196. "" !== initialValue && checkVal(el, !0, !1, isRTL ? initialValue.split("").reverse() : initialValue.split(""));
  1197. var buffer = getBuffer().slice();
  1198. undoValue = buffer.join(""), !1 === isComplete(buffer) && opts.clearIncomplete && resetMaskSet(),
  1199. opts.clearMaskOnLostFocus && document.activeElement !== el && (-1 === getLastValidPosition() ? buffer = [] : clearOptionalTail(buffer)),
  1200. writeBuffer(el, buffer), document.activeElement === el && caret(el, seekNext(getLastValidPosition()));
  1201. }
  1202. }(el);
  1203. break;
  1204. case "format":
  1205. return valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(inputmask, actionObj.value, opts) || actionObj.value : actionObj.value).split(""),
  1206. checkVal(undefined, !0, !1, isRTL ? valueBuffer.reverse() : valueBuffer), actionObj.metadata ? {
  1207. value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
  1208. metadata: maskScope.call(this, {
  1209. action: "getmetadata"
  1210. }, maskset, opts)
  1211. } : isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
  1212. case "isValid":
  1213. actionObj.value ? (valueBuffer = actionObj.value.split(""), checkVal(undefined, !0, !0, isRTL ? valueBuffer.reverse() : valueBuffer)) : actionObj.value = getBuffer().join("");
  1214. for (var buffer = getBuffer(), rl = determineLastRequiredPosition(), lmib = buffer.length - 1; lmib > rl && !isMask(lmib); lmib--) ;
  1215. return buffer.splice(rl, lmib + 1 - rl), isComplete(buffer) && actionObj.value === getBuffer().join("");
  1216. case "getemptymask":
  1217. return getBufferTemplate().join("");
  1218. case "remove":
  1219. if (el && el.inputmask) {
  1220. $el = $(el), el.inputmask._valueSet(opts.autoUnmask ? unmaskedvalue(el) : el.inputmask._valueGet(!0)),
  1221. EventRuler.off(el), el.inputmask.colorMask && ((colorMask = el.inputmask.colorMask).removeChild(el),
  1222. colorMask.parentNode.insertBefore(el, colorMask), colorMask.parentNode.removeChild(colorMask));
  1223. Object.getOwnPropertyDescriptor && Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value") && el.inputmask.__valueGet && Object.defineProperty(el, "value", {
  1224. get: el.inputmask.__valueGet,
  1225. set: el.inputmask.__valueSet,
  1226. configurable: !0
  1227. }) : document.__lookupGetter__ && el.__lookupGetter__("value") && el.inputmask.__valueGet && (el.__defineGetter__("value", el.inputmask.__valueGet),
  1228. el.__defineSetter__("value", el.inputmask.__valueSet)), el.inputmask = undefined;
  1229. }
  1230. return el;
  1231. case "getmetadata":
  1232. if ($.isArray(maskset.metadata)) {
  1233. var maskTarget = getMaskTemplate(!0, 0, !1).join("");
  1234. return $.each(maskset.metadata, function(ndx, mtdt) {
  1235. if (mtdt.mask === maskTarget) return maskTarget = mtdt, !1;
  1236. }), maskTarget;
  1237. }
  1238. return maskset.metadata;
  1239. }
  1240. }
  1241. var ua = navigator.userAgent, mobile = isInputEventSupported("touchstart"), iemobile = /iemobile/i.test(ua), iphone = /iphone/i.test(ua) && !iemobile;
  1242. return Inputmask.prototype = {
  1243. dataAttribute: "data-inputmask",
  1244. defaults: {
  1245. placeholder: "_",
  1246. optionalmarker: [ "[", "]" ],
  1247. quantifiermarker: [ "{", "}" ],
  1248. groupmarker: [ "(", ")" ],
  1249. alternatormarker: "|",
  1250. escapeChar: "\\",
  1251. mask: null,
  1252. regex: null,
  1253. oncomplete: $.noop,
  1254. onincomplete: $.noop,
  1255. oncleared: $.noop,
  1256. repeat: 0,
  1257. greedy: !0,
  1258. autoUnmask: !1,
  1259. removeMaskOnSubmit: !1,
  1260. clearMaskOnLostFocus: !0,
  1261. insertMode: !0,
  1262. clearIncomplete: !1,
  1263. alias: null,
  1264. onKeyDown: $.noop,
  1265. onBeforeMask: null,
  1266. onBeforePaste: function(pastedValue, opts) {
  1267. return $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(this, pastedValue, opts) : pastedValue;
  1268. },
  1269. onBeforeWrite: null,
  1270. onUnMask: null,
  1271. showMaskOnFocus: !0,
  1272. showMaskOnHover: !0,
  1273. onKeyValidation: $.noop,
  1274. skipOptionalPartCharacter: " ",
  1275. numericInput: !1,
  1276. rightAlign: !1,
  1277. undoOnEscape: !0,
  1278. radixPoint: "",
  1279. radixPointDefinitionSymbol: undefined,
  1280. groupSeparator: "",
  1281. keepStatic: null,
  1282. positionCaretOnTab: !0,
  1283. tabThrough: !1,
  1284. supportsInputType: [ "text", "tel", "password", "search" ],
  1285. 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 ],
  1286. isComplete: null,
  1287. canClearPosition: $.noop,
  1288. preValidation: null,
  1289. postValidation: null,
  1290. staticDefinitionSymbol: undefined,
  1291. jitMasking: !1,
  1292. nullable: !0,
  1293. inputEventOnly: !1,
  1294. noValuePatching: !1,
  1295. positionCaretOnClick: "lvp",
  1296. casing: null,
  1297. inputmode: "verbatim",
  1298. colorMask: !1,
  1299. disablePredictiveText: !1,
  1300. importDataAttributes: !0
  1301. },
  1302. definitions: {
  1303. "9": {
  1304. validator: "[0-91-9]",
  1305. definitionSymbol: "*"
  1306. },
  1307. a: {
  1308. validator: "[A-Za-zА-яЁёÀ-ÿµ]",
  1309. definitionSymbol: "*"
  1310. },
  1311. "*": {
  1312. validator: "[0-91-9A-Za-zА-яЁёÀ-ÿµ]"
  1313. }
  1314. },
  1315. aliases: {},
  1316. masksCache: {},
  1317. mask: function(elems) {
  1318. function importAttributeOptions(npt, opts, userOptions, dataAttribute) {
  1319. if (!0 === opts.importDataAttributes) {
  1320. var option, dataoptions, optionData, p, importOption = function(option, optionData) {
  1321. 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)),
  1322. userOptions[option] = optionData);
  1323. }, attrOptions = npt.getAttribute(dataAttribute);
  1324. if (attrOptions && "" !== attrOptions && (attrOptions = attrOptions.replace(/'/g, '"'),
  1325. dataoptions = JSON.parse("{" + attrOptions + "}")), dataoptions) {
  1326. optionData = undefined;
  1327. for (p in dataoptions) if ("alias" === p.toLowerCase()) {
  1328. optionData = dataoptions[p];
  1329. break;
  1330. }
  1331. }
  1332. importOption("alias", optionData), userOptions.alias && resolveAlias(userOptions.alias, userOptions, opts);
  1333. for (option in opts) {
  1334. if (dataoptions) {
  1335. optionData = undefined;
  1336. for (p in dataoptions) if (p.toLowerCase() === option.toLowerCase()) {
  1337. optionData = dataoptions[p];
  1338. break;
  1339. }
  1340. }
  1341. importOption(option, optionData);
  1342. }
  1343. }
  1344. return $.extend(!0, opts, userOptions), ("rtl" === npt.dir || opts.rightAlign) && (npt.style.textAlign = "right"),
  1345. ("rtl" === npt.dir || opts.numericInput) && (npt.dir = "ltr", npt.removeAttribute("dir"),
  1346. opts.isRTL = !0), Object.keys(userOptions).length;
  1347. }
  1348. var that = this;
  1349. return "string" == typeof elems && (elems = document.getElementById(elems) || document.querySelectorAll(elems)),
  1350. elems = elems.nodeName ? [ elems ] : elems, $.each(elems, function(ndx, el) {
  1351. var scopedOpts = $.extend(!0, {}, that.opts);
  1352. if (importAttributeOptions(el, scopedOpts, $.extend(!0, {}, that.userOptions), that.dataAttribute)) {
  1353. var maskset = generateMaskSet(scopedOpts, that.noMasksCache);
  1354. maskset !== undefined && (el.inputmask !== undefined && (el.inputmask.opts.autoUnmask = !0,
  1355. el.inputmask.remove()), el.inputmask = new Inputmask(undefined, undefined, !0),
  1356. el.inputmask.opts = scopedOpts, el.inputmask.noMasksCache = that.noMasksCache, el.inputmask.userOptions = $.extend(!0, {}, that.userOptions),
  1357. el.inputmask.isRTL = scopedOpts.isRTL || scopedOpts.numericInput, el.inputmask.el = el,
  1358. el.inputmask.maskset = maskset, $.data(el, "_inputmask_opts", scopedOpts), maskScope.call(el.inputmask, {
  1359. action: "mask"
  1360. }));
  1361. }
  1362. }), elems && elems[0] ? elems[0].inputmask || this : this;
  1363. },
  1364. option: function(options, noremask) {
  1365. return "string" == typeof options ? this.opts[options] : "object" === (void 0 === options ? "undefined" : _typeof(options)) ? ($.extend(this.userOptions, options),
  1366. this.el && !0 !== noremask && this.mask(this.el), this) : void 0;
  1367. },
  1368. unmaskedvalue: function(value) {
  1369. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1370. maskScope.call(this, {
  1371. action: "unmaskedvalue",
  1372. value: value
  1373. });
  1374. },
  1375. remove: function() {
  1376. return maskScope.call(this, {
  1377. action: "remove"
  1378. });
  1379. },
  1380. getemptymask: function() {
  1381. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1382. maskScope.call(this, {
  1383. action: "getemptymask"
  1384. });
  1385. },
  1386. hasMaskedValue: function() {
  1387. return !this.opts.autoUnmask;
  1388. },
  1389. isComplete: function() {
  1390. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1391. maskScope.call(this, {
  1392. action: "isComplete"
  1393. });
  1394. },
  1395. getmetadata: function() {
  1396. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1397. maskScope.call(this, {
  1398. action: "getmetadata"
  1399. });
  1400. },
  1401. isValid: function(value) {
  1402. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1403. maskScope.call(this, {
  1404. action: "isValid",
  1405. value: value
  1406. });
  1407. },
  1408. format: function(value, metadata) {
  1409. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1410. maskScope.call(this, {
  1411. action: "format",
  1412. value: value,
  1413. metadata: metadata
  1414. });
  1415. },
  1416. analyseMask: function(mask, regexMask, opts) {
  1417. function MaskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  1418. this.matches = [], this.openGroup = isGroup || !1, this.alternatorGroup = !1, this.isGroup = isGroup || !1,
  1419. this.isOptional = isOptional || !1, this.isQuantifier = isQuantifier || !1, this.isAlternator = isAlternator || !1,
  1420. this.quantifier = {
  1421. min: 1,
  1422. max: 1
  1423. };
  1424. }
  1425. function insertTestDefinition(mtoken, element, position) {
  1426. position = position !== undefined ? position : mtoken.matches.length;
  1427. var prevMatch = mtoken.matches[position - 1];
  1428. if (regexMask) 0 === element.indexOf("[") || escaped && /\\d|\\s|\\w]/i.test(element) || "." === element ? mtoken.matches.splice(position++, 0, {
  1429. fn: new RegExp(element, opts.casing ? "i" : ""),
  1430. optionality: mtoken.isOptional,
  1431. newBlockMarker: prevMatch === undefined || prevMatch.def !== element,
  1432. casing: null,
  1433. def: element,
  1434. placeholder: undefined,
  1435. nativeDef: element
  1436. }) : (escaped && (element = element[element.length - 1]), $.each(element.split(""), function(ndx, lmnt) {
  1437. prevMatch = mtoken.matches[position - 1], mtoken.matches.splice(position++, 0, {
  1438. fn: null,
  1439. optionality: mtoken.isOptional,
  1440. newBlockMarker: prevMatch === undefined || prevMatch.def !== lmnt && null !== prevMatch.fn,
  1441. casing: null,
  1442. def: opts.staticDefinitionSymbol || lmnt,
  1443. placeholder: opts.staticDefinitionSymbol !== undefined ? lmnt : undefined,
  1444. nativeDef: lmnt
  1445. });
  1446. })), escaped = !1; else {
  1447. var maskdef = (opts.definitions ? opts.definitions[element] : undefined) || Inputmask.prototype.definitions[element];
  1448. maskdef && !escaped ? mtoken.matches.splice(position++, 0, {
  1449. fn: maskdef.validator ? "string" == typeof maskdef.validator ? new RegExp(maskdef.validator, opts.casing ? "i" : "") : new function() {
  1450. this.test = maskdef.validator;
  1451. }() : new RegExp("."),
  1452. optionality: mtoken.isOptional,
  1453. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  1454. casing: maskdef.casing,
  1455. def: maskdef.definitionSymbol || element,
  1456. placeholder: maskdef.placeholder,
  1457. nativeDef: element
  1458. }) : (mtoken.matches.splice(position++, 0, {
  1459. fn: null,
  1460. optionality: mtoken.isOptional,
  1461. newBlockMarker: prevMatch === undefined || prevMatch.def !== element && null !== prevMatch.fn,
  1462. casing: null,
  1463. def: opts.staticDefinitionSymbol || element,
  1464. placeholder: opts.staticDefinitionSymbol !== undefined ? element : undefined,
  1465. nativeDef: element
  1466. }), escaped = !1);
  1467. }
  1468. }
  1469. function verifyGroupMarker(maskToken) {
  1470. maskToken && maskToken.matches && $.each(maskToken.matches, function(ndx, token) {
  1471. var nextToken = maskToken.matches[ndx + 1];
  1472. (nextToken === undefined || nextToken.matches === undefined || !1 === nextToken.isQuantifier) && token && token.isGroup && (token.isGroup = !1,
  1473. regexMask || (insertTestDefinition(token, opts.groupmarker[0], 0), !0 !== token.openGroup && insertTestDefinition(token, opts.groupmarker[1]))),
  1474. verifyGroupMarker(token);
  1475. });
  1476. }
  1477. function defaultCase() {
  1478. if (openenings.length > 0) {
  1479. if (currentOpeningToken = openenings[openenings.length - 1], insertTestDefinition(currentOpeningToken, m),
  1480. currentOpeningToken.isAlternator) {
  1481. alternator = openenings.pop();
  1482. for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
  1483. openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1]).matches.push(alternator) : currentToken.matches.push(alternator);
  1484. }
  1485. } else insertTestDefinition(currentToken, m);
  1486. }
  1487. function reverseTokens(maskToken) {
  1488. maskToken.matches = maskToken.matches.reverse();
  1489. for (var match in maskToken.matches) if (maskToken.matches.hasOwnProperty(match)) {
  1490. var intMatch = parseInt(match);
  1491. if (maskToken.matches[match].isQuantifier && maskToken.matches[intMatch + 1] && maskToken.matches[intMatch + 1].isGroup) {
  1492. var qt = maskToken.matches[match];
  1493. maskToken.matches.splice(match, 1), maskToken.matches.splice(intMatch + 1, 0, qt);
  1494. }
  1495. maskToken.matches[match].matches !== undefined ? maskToken.matches[match] = reverseTokens(maskToken.matches[match]) : maskToken.matches[match] = function(st) {
  1496. 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]),
  1497. st;
  1498. }(maskToken.matches[match]);
  1499. }
  1500. return maskToken;
  1501. }
  1502. 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 = [];
  1503. for (regexMask && (opts.optionalmarker[0] = undefined, opts.optionalmarker[1] = undefined); match = regexMask ? regexTokenizer.exec(mask) : tokenizer.exec(mask); ) {
  1504. if (m = match[0], regexMask) switch (m.charAt(0)) {
  1505. case "?":
  1506. m = "{0,1}";
  1507. break;
  1508. case "+":
  1509. case "*":
  1510. m = "{" + m + "}";
  1511. }
  1512. if (escaped) defaultCase(); else switch (m.charAt(0)) {
  1513. case opts.escapeChar:
  1514. escaped = !0, regexMask && defaultCase();
  1515. break;
  1516. case opts.optionalmarker[1]:
  1517. case opts.groupmarker[1]:
  1518. if (openingToken = openenings.pop(), openingToken.openGroup = !1, openingToken !== undefined) if (openenings.length > 0) {
  1519. if ((currentOpeningToken = openenings[openenings.length - 1]).matches.push(openingToken),
  1520. currentOpeningToken.isAlternator) {
  1521. alternator = openenings.pop();
  1522. for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1,
  1523. alternator.matches[mndx].alternatorGroup = !1;
  1524. openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1]).matches.push(alternator) : currentToken.matches.push(alternator);
  1525. }
  1526. } else currentToken.matches.push(openingToken); else defaultCase();
  1527. break;
  1528. case opts.optionalmarker[0]:
  1529. openenings.push(new MaskToken(!1, !0));
  1530. break;
  1531. case opts.groupmarker[0]:
  1532. openenings.push(new MaskToken(!0));
  1533. break;
  1534. case opts.quantifiermarker[0]:
  1535. 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]);
  1536. if ("*" !== mq1 && "+" !== mq1 || (mq0 = "*" === mq1 ? 0 : 1), quantifier.quantifier = {
  1537. min: mq0,
  1538. max: mq1
  1539. }, openenings.length > 0) {
  1540. var matches = openenings[openenings.length - 1].matches;
  1541. (match = matches.pop()).isGroup || ((groupToken = new MaskToken(!0)).matches.push(match),
  1542. match = groupToken), matches.push(match), matches.push(quantifier);
  1543. } else (match = currentToken.matches.pop()).isGroup || (regexMask && null === match.fn && "." === match.def && (match.fn = new RegExp(match.def, opts.casing ? "i" : "")),
  1544. (groupToken = new MaskToken(!0)).matches.push(match), match = groupToken), currentToken.matches.push(match),
  1545. currentToken.matches.push(quantifier);
  1546. break;
  1547. case opts.alternatormarker:
  1548. if (openenings.length > 0) {
  1549. var subToken = (currentOpeningToken = openenings[openenings.length - 1]).matches[currentOpeningToken.matches.length - 1];
  1550. lastMatch = currentOpeningToken.openGroup && (subToken.matches === undefined || !1 === subToken.isGroup && !1 === subToken.isAlternator) ? openenings.pop() : currentOpeningToken.matches.pop();
  1551. } else lastMatch = currentToken.matches.pop();
  1552. if (lastMatch.isAlternator) openenings.push(lastMatch); else if (lastMatch.alternatorGroup ? (alternator = openenings.pop(),
  1553. lastMatch.alternatorGroup = !1) : alternator = new MaskToken(!1, !1, !1, !0), alternator.matches.push(lastMatch),
  1554. openenings.push(alternator), lastMatch.openGroup) {
  1555. lastMatch.openGroup = !1;
  1556. var alternatorGroup = new MaskToken(!0);
  1557. alternatorGroup.alternatorGroup = !0, openenings.push(alternatorGroup);
  1558. }
  1559. break;
  1560. default:
  1561. defaultCase();
  1562. }
  1563. }
  1564. for (;openenings.length > 0; ) openingToken = openenings.pop(), currentToken.matches.push(openingToken);
  1565. return currentToken.matches.length > 0 && (verifyGroupMarker(currentToken), maskTokens.push(currentToken)),
  1566. (opts.numericInput || opts.isRTL) && reverseTokens(maskTokens[0]), maskTokens;
  1567. }
  1568. }, Inputmask.extendDefaults = function(options) {
  1569. $.extend(!0, Inputmask.prototype.defaults, options);
  1570. }, Inputmask.extendDefinitions = function(definition) {
  1571. $.extend(!0, Inputmask.prototype.definitions, definition);
  1572. }, Inputmask.extendAliases = function(alias) {
  1573. $.extend(!0, Inputmask.prototype.aliases, alias);
  1574. }, Inputmask.format = function(value, options, metadata) {
  1575. return Inputmask(options).format(value, metadata);
  1576. }, Inputmask.unmask = function(value, options) {
  1577. return Inputmask(options).unmaskedvalue(value);
  1578. }, Inputmask.isValid = function(value, options) {
  1579. return Inputmask(options).isValid(value);
  1580. }, Inputmask.remove = function(elems) {
  1581. $.each(elems, function(ndx, el) {
  1582. el.inputmask && el.inputmask.remove();
  1583. });
  1584. }, Inputmask.escapeRegex = function(str) {
  1585. var specials = [ "/", ".", "*", "+", "?", "|", "(", ")", "[", "]", "{", "}", "\\", "$", "^" ];
  1586. return str.replace(new RegExp("(\\" + specials.join("|\\") + ")", "gim"), "\\$1");
  1587. }, Inputmask.keyCode = {
  1588. BACKSPACE: 8,
  1589. BACKSPACE_SAFARI: 127,
  1590. DELETE: 46,
  1591. DOWN: 40,
  1592. END: 35,
  1593. ENTER: 13,
  1594. ESCAPE: 27,
  1595. HOME: 36,
  1596. INSERT: 45,
  1597. LEFT: 37,
  1598. PAGE_DOWN: 34,
  1599. PAGE_UP: 33,
  1600. RIGHT: 39,
  1601. SPACE: 32,
  1602. TAB: 9,
  1603. UP: 38,
  1604. X: 88,
  1605. CONTROL: 17
  1606. }, Inputmask;
  1607. });
  1608. }, function(module, exports) {
  1609. module.exports = jQuery;
  1610. }, function(module, exports, __webpack_require__) {
  1611. "use strict";
  1612. function _interopRequireDefault(obj) {
  1613. return obj && obj.__esModule ? obj : {
  1614. default: obj
  1615. };
  1616. }
  1617. __webpack_require__(4), __webpack_require__(7), __webpack_require__(8), __webpack_require__(9);
  1618. var _inputmask2 = _interopRequireDefault(__webpack_require__(1)), _inputmask4 = _interopRequireDefault(__webpack_require__(0)), _jquery2 = _interopRequireDefault(__webpack_require__(2));
  1619. _inputmask4.default === _jquery2.default && __webpack_require__(10), window.Inputmask = _inputmask2.default;
  1620. }, function(module, exports, __webpack_require__) {
  1621. "use strict";
  1622. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  1623. "function" == typeof Symbol && Symbol.iterator;
  1624. !function(factory) {
  1625. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  1626. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  1627. }(function($, Inputmask) {
  1628. function getTokenizer(opts) {
  1629. if (!opts.tokenizer) {
  1630. var tokens = [];
  1631. for (var ndx in formatCode) -1 === tokens.indexOf(ndx[0]) && tokens.push(ndx[0]);
  1632. opts.tokenizer = "(" + tokens.join("+|") + ")+?|.", opts.tokenizer = new RegExp(opts.tokenizer, "g");
  1633. }
  1634. return opts.tokenizer;
  1635. }
  1636. function isValidDate(dateParts, currentResult) {
  1637. return (!isFinite(dateParts.day) || "29" == dateParts.day && !isFinite(dateParts.rawyear) || new Date(dateParts.date.getFullYear(), isFinite(dateParts.month) ? dateParts.month : dateParts.date.getMonth() + 1, 0).getDate() >= dateParts.day) && currentResult;
  1638. }
  1639. function isDateInRange(maskDate, opts) {
  1640. var result = !0;
  1641. return opts.min && opts.min.date.getTime() === opts.min.date.getTime() && (result = result && opts.min.date.getTime() <= maskDate.getTime()),
  1642. opts.max && opts.max.date.getTime() === opts.max.date.getTime() && (result = result && opts.max.date.getTime() >= maskDate.getTime()),
  1643. result;
  1644. }
  1645. function parse(format, dateObjValue, opts) {
  1646. for (var match, mask = ""; match = getTokenizer(opts).exec(format); ) void 0 === dateObjValue ? mask += formatCode[match[0]] ? "(" + formatCode[match[0]][0] + ")" : Inputmask.escapeRegex(match[0]) : formatCode[match[0]] ? mask += formatCode[match[0]][3].call(dateObjValue.date) : mask += match[0];
  1647. return mask;
  1648. }
  1649. function pad(val, len) {
  1650. for (val = String(val), len = len || 2; val.length < len; ) val = "0" + val;
  1651. return val;
  1652. }
  1653. function analyseMask(maskString, format, opts) {
  1654. function extendYear(year) {
  1655. var correctedyear = 4 === year.length ? year : new Date().getFullYear().toString().substr(0, 4 - year.length) + year;
  1656. return opts.min && opts.min.year && opts.max && opts.max.year ? (correctedyear = correctedyear.replace(/[^0-9]/g, ""),
  1657. correctedyear = year.charAt(0) === opts.max.year.charAt(0) ? year.replace(/[^0-9]/g, "0") : correctedyear + opts.min.year.substr(correctedyear.length)) : correctedyear = correctedyear.replace(/[^0-9]/g, "0"),
  1658. correctedyear;
  1659. }
  1660. var targetProp, match, dateOperation, dateObj = {
  1661. date: new Date(1, 0, 1)
  1662. }, mask = maskString;
  1663. if ("string" == typeof mask) {
  1664. for (;match = getTokenizer(opts).exec(format); ) {
  1665. var value = mask.slice(0, match[0].length);
  1666. formatCode.hasOwnProperty(match[0]) && (targetProp = formatCode[match[0]][2], dateOperation = formatCode[match[0]][1],
  1667. function(dateObj, value, opts) {
  1668. "year" === targetProp ? (dateObj[targetProp] = extendYear(value), dateObj["raw" + targetProp] = value) : dateObj[targetProp] = opts.min && value.match(/[^0-9]/) ? opts.min[targetProp] : value,
  1669. void 0 !== dateOperation && dateOperation.call(dateObj.date, "month" == targetProp ? parseInt(dateObj[targetProp]) - 1 : dateObj[targetProp]);
  1670. }(dateObj, value, opts)), mask = mask.slice(value.length);
  1671. }
  1672. return dateObj;
  1673. }
  1674. }
  1675. var formatCode = {
  1676. d: [ "[1-9]|[12][0-9]|3[01]", Date.prototype.setDate, "day", Date.prototype.getDate ],
  1677. dd: [ "0[1-9]|[12][0-9]|3[01]", Date.prototype.setDate, "day", function() {
  1678. return pad(Date.prototype.getDate.call(this), 2);
  1679. } ],
  1680. ddd: [ "" ],
  1681. dddd: [ "" ],
  1682. m: [ "[1-9]|1[012]", Date.prototype.setMonth, "month", function() {
  1683. return Date.prototype.getMonth.call(this) + 1;
  1684. } ],
  1685. mm: [ "0[1-9]|1[012]", Date.prototype.setMonth, "month", function() {
  1686. return pad(Date.prototype.getMonth.call(this) + 1, 2);
  1687. } ],
  1688. mmm: [ "" ],
  1689. mmmm: [ "" ],
  1690. yy: [ "[0-9]{2}", Date.prototype.setFullYear, "year", function() {
  1691. return pad(Date.prototype.getFullYear.call(this), 2);
  1692. } ],
  1693. yyyy: [ "[0-9]{4}", Date.prototype.setFullYear, "year", function() {
  1694. return pad(Date.prototype.getFullYear.call(this), 4);
  1695. } ],
  1696. h: [ "[1-9]|1[0-2]", Date.prototype.setHours, "hours", Date.prototype.getHours ],
  1697. hh: [ "0[1-9]|1[0-2]", Date.prototype.setHours, "hours", function() {
  1698. return pad(Date.prototype.getHours.call(this), 2);
  1699. } ],
  1700. hhh: [ "[0-9]+", Date.prototype.setHours, "hours", Date.prototype.getHours ],
  1701. H: [ "1?[0-9]|2[0-3]", Date.prototype.setHours, "hours", Date.prototype.getHours ],
  1702. HH: [ "[01][0-9]|2[0-3]", Date.prototype.setHours, "hours", function() {
  1703. return pad(Date.prototype.getHours.call(this), 2);
  1704. } ],
  1705. HHH: [ "[0-9]+", Date.prototype.setHours, "hours", Date.prototype.getHours ],
  1706. M: [ "[1-5]?[0-9]", Date.prototype.setMinutes, "minutes", Date.prototype.getMinutes ],
  1707. MM: [ "[0-5][0-9]", Date.prototype.setMinutes, "minutes", function() {
  1708. return pad(Date.prototype.getMinutes.call(this), 2);
  1709. } ],
  1710. s: [ "[1-5]?[0-9]", Date.prototype.setSeconds, "seconds", Date.prototype.getSeconds ],
  1711. ss: [ "[0-5][0-9]", Date.prototype.setSeconds, "seconds", function() {
  1712. return pad(Date.prototype.getSeconds.call(this), 2);
  1713. } ],
  1714. l: [ "[0-9]{3}", Date.prototype.setMilliseconds, "milliseconds", function() {
  1715. return pad(Date.prototype.getMilliseconds.call(this), 3);
  1716. } ],
  1717. L: [ "[0-9]{2}", Date.prototype.setMilliseconds, "milliseconds", function() {
  1718. return pad(Date.prototype.getMilliseconds.call(this), 2);
  1719. } ],
  1720. t: [ "" ],
  1721. tt: [ "" ],
  1722. T: [ "" ],
  1723. TT: [ "" ],
  1724. Z: [ "" ],
  1725. o: [ "" ],
  1726. S: [ "" ]
  1727. }, formatAlias = {
  1728. isoDate: "yyyy-mm-dd",
  1729. isoTime: "HH:MM:ss",
  1730. isoDateTime: "yyyy-mm-dd'T'HH:MM:ss",
  1731. isoUtcDateTime: "UTC:yyyy-mm-dd'T'HH:MM:ss'Z'"
  1732. };
  1733. return Inputmask.extendAliases({
  1734. datetime: {
  1735. mask: function(opts) {
  1736. return opts.inputFormat = formatAlias[opts.inputFormat] || opts.inputFormat, opts.displayFormat = formatAlias[opts.displayFormat] || opts.displayFormat || opts.inputFormat,
  1737. opts.outputFormat = formatAlias[opts.outputFormat] || opts.outputFormat || opts.inputFormat,
  1738. opts.placeholder = opts.placeholder !== Inputmask.prototype.defaults.placeholder ? opts.placeholder : opts.inputFormat,
  1739. opts.min = analyseMask(opts.min, opts.inputFormat, opts), opts.max = analyseMask(opts.max, opts.inputFormat, opts),
  1740. opts.regex = parse(opts.inputFormat, void 0, opts), null;
  1741. },
  1742. inputFormat: "isoDateTime",
  1743. displayFormat: void 0,
  1744. outputFormat: void 0,
  1745. min: null,
  1746. max: null,
  1747. i18n: {
  1748. dayNames: [ "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" ],
  1749. monthNames: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]
  1750. },
  1751. postValidation: function(buffer, currentResult, opts) {
  1752. var result = currentResult, dateParts = analyseMask(buffer.join(""), opts.inputFormat, opts);
  1753. return result && dateParts.date.getTime() === dateParts.date.getTime() && (result = (result = isValidDate(dateParts, result)) && isDateInRange(dateParts.date, opts)),
  1754. result;
  1755. },
  1756. onKeyDown: function(e, buffer, caretPos, opts) {
  1757. var input = this;
  1758. if (e.ctrlKey && e.keyCode === Inputmask.keyCode.RIGHT) {
  1759. for (var match, today = new Date(), date = ""; match = getTokenizer(opts).exec(opts.inputFormat); ) "d" === match[0].charAt(0) ? date += pad(today.getDate(), match[0].length) : "m" === match[0].charAt(0) ? date += pad(today.getMonth() + 1, match[0].length) : "yyyy" === match[0] ? date += today.getFullYear().toString() : "y" === match[0].charAt(0) && (date += pad(today.getYear(), match[0].length));
  1760. input.inputmask._valueSet(date), $(input).trigger("setvalue");
  1761. }
  1762. },
  1763. onUnMask: function(maskedValue, unmaskedValue, opts) {
  1764. return parse(opts.outputFormat, analyseMask(maskedValue, opts.inputFormat, opts), opts);
  1765. },
  1766. insertMode: !1
  1767. }
  1768. }), Inputmask;
  1769. });
  1770. }, function(module, exports, __webpack_require__) {
  1771. "use strict";
  1772. var __WEBPACK_AMD_DEFINE_RESULT__;
  1773. "function" == typeof Symbol && Symbol.iterator;
  1774. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = function() {
  1775. return window;
  1776. }.call(exports, __webpack_require__, exports, module)) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  1777. }, function(module, exports, __webpack_require__) {
  1778. "use strict";
  1779. var __WEBPACK_AMD_DEFINE_RESULT__;
  1780. "function" == typeof Symbol && Symbol.iterator;
  1781. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = function() {
  1782. return document;
  1783. }.call(exports, __webpack_require__, exports, module)) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  1784. }, function(module, exports, __webpack_require__) {
  1785. "use strict";
  1786. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  1787. "function" == typeof Symbol && Symbol.iterator;
  1788. !function(factory) {
  1789. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  1790. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  1791. }(function($, Inputmask) {
  1792. return Inputmask.extendDefinitions({
  1793. A: {
  1794. validator: "[A-Za-zА-яЁёÀ-ÿµ]",
  1795. casing: "upper"
  1796. },
  1797. "&": {
  1798. validator: "[0-9A-Za-zА-яЁёÀ-ÿµ]",
  1799. casing: "upper"
  1800. },
  1801. "#": {
  1802. validator: "[0-9A-Fa-f]",
  1803. casing: "upper"
  1804. }
  1805. }), Inputmask.extendAliases({
  1806. url: {
  1807. definitions: {
  1808. i: {
  1809. validator: "."
  1810. }
  1811. },
  1812. mask: "(\\http://)|(\\http\\s://)|(ftp://)|(ftp\\s://)i{+}",
  1813. insertMode: !1,
  1814. autoUnmask: !1,
  1815. inputmode: "url"
  1816. },
  1817. ip: {
  1818. mask: "i[i[i]].i[i[i]].i[i[i]].i[i[i]]",
  1819. definitions: {
  1820. i: {
  1821. validator: function(chrs, maskset, pos, strict, opts) {
  1822. return pos - 1 > -1 && "." !== maskset.buffer[pos - 1] ? (chrs = maskset.buffer[pos - 1] + chrs,
  1823. chrs = pos - 2 > -1 && "." !== maskset.buffer[pos - 2] ? maskset.buffer[pos - 2] + chrs : "0" + chrs) : chrs = "00" + chrs,
  1824. new RegExp("25[0-5]|2[0-4][0-9]|[01][0-9][0-9]").test(chrs);
  1825. }
  1826. }
  1827. },
  1828. onUnMask: function(maskedValue, unmaskedValue, opts) {
  1829. return maskedValue;
  1830. },
  1831. inputmode: "numeric"
  1832. },
  1833. email: {
  1834. mask: "*{1,64}[.*{1,64}][.*{1,64}][.*{1,63}]@-{1,63}.-{1,63}[.-{1,63}][.-{1,63}]",
  1835. greedy: !1,
  1836. onBeforePaste: function(pastedValue, opts) {
  1837. return (pastedValue = pastedValue.toLowerCase()).replace("mailto:", "");
  1838. },
  1839. definitions: {
  1840. "*": {
  1841. validator: "[0-9A-Za-z!#$%&'*+/=?^_`{|}~-]",
  1842. casing: "lower"
  1843. },
  1844. "-": {
  1845. validator: "[0-9A-Za-z-]",
  1846. casing: "lower"
  1847. }
  1848. },
  1849. onUnMask: function(maskedValue, unmaskedValue, opts) {
  1850. return maskedValue;
  1851. },
  1852. inputmode: "email"
  1853. },
  1854. mac: {
  1855. mask: "##:##:##:##:##:##"
  1856. },
  1857. vin: {
  1858. mask: "V{13}9{4}",
  1859. definitions: {
  1860. V: {
  1861. validator: "[A-HJ-NPR-Za-hj-npr-z\\d]",
  1862. casing: "upper"
  1863. }
  1864. },
  1865. clearIncomplete: !0,
  1866. autoUnmask: !0
  1867. }
  1868. }), Inputmask;
  1869. });
  1870. }, function(module, exports, __webpack_require__) {
  1871. "use strict";
  1872. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  1873. "function" == typeof Symbol && Symbol.iterator;
  1874. !function(factory) {
  1875. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  1876. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  1877. }(function($, Inputmask, undefined) {
  1878. function autoEscape(txt, opts) {
  1879. for (var escapedTxt = "", i = 0; i < txt.length; i++) Inputmask.prototype.definitions[txt.charAt(i)] || opts.definitions[txt.charAt(i)] || opts.optionalmarker.start === txt.charAt(i) || opts.optionalmarker.end === txt.charAt(i) || opts.quantifiermarker.start === txt.charAt(i) || opts.quantifiermarker.end === txt.charAt(i) || opts.groupmarker.start === txt.charAt(i) || opts.groupmarker.end === txt.charAt(i) || opts.alternatormarker === txt.charAt(i) ? escapedTxt += "\\" + txt.charAt(i) : escapedTxt += txt.charAt(i);
  1880. return escapedTxt;
  1881. }
  1882. return Inputmask.extendAliases({
  1883. numeric: {
  1884. mask: function(opts) {
  1885. if (0 !== opts.repeat && isNaN(opts.integerDigits) && (opts.integerDigits = opts.repeat),
  1886. opts.repeat = 0, opts.groupSeparator === opts.radixPoint && opts.digits && "0" !== opts.digits && ("." === opts.radixPoint ? opts.groupSeparator = "," : "," === opts.radixPoint ? opts.groupSeparator = "." : opts.groupSeparator = ""),
  1887. " " === opts.groupSeparator && (opts.skipOptionalPartCharacter = undefined), opts.autoGroup = opts.autoGroup && "" !== opts.groupSeparator,
  1888. opts.autoGroup && ("string" == typeof opts.groupSize && isFinite(opts.groupSize) && (opts.groupSize = parseInt(opts.groupSize)),
  1889. isFinite(opts.integerDigits))) {
  1890. var seps = Math.floor(opts.integerDigits / opts.groupSize), mod = opts.integerDigits % opts.groupSize;
  1891. opts.integerDigits = parseInt(opts.integerDigits) + (0 === mod ? seps - 1 : seps),
  1892. opts.integerDigits < 1 && (opts.integerDigits = "*");
  1893. }
  1894. opts.placeholder.length > 1 && (opts.placeholder = opts.placeholder.charAt(0)),
  1895. "radixFocus" === opts.positionCaretOnClick && "" === opts.placeholder && !1 === opts.integerOptional && (opts.positionCaretOnClick = "lvp"),
  1896. opts.definitions[";"] = opts.definitions["~"], opts.definitions[";"].definitionSymbol = "~",
  1897. !0 === opts.numericInput && (opts.positionCaretOnClick = "radixFocus" === opts.positionCaretOnClick ? "lvp" : opts.positionCaretOnClick,
  1898. opts.digitsOptional = !1, isNaN(opts.digits) && (opts.digits = 2), opts.decimalProtect = !1);
  1899. var mask = "[+]";
  1900. if (mask += autoEscape(opts.prefix, opts), !0 === opts.integerOptional ? mask += "~{1," + opts.integerDigits + "}" : mask += "~{" + opts.integerDigits + "}",
  1901. opts.digits !== undefined) {
  1902. opts.radixPointDefinitionSymbol = opts.decimalProtect ? ":" : opts.radixPoint;
  1903. var dq = opts.digits.toString().split(",");
  1904. isFinite(dq[0] && dq[1] && isFinite(dq[1])) ? mask += opts.radixPointDefinitionSymbol + ";{" + opts.digits + "}" : (isNaN(opts.digits) || parseInt(opts.digits) > 0) && (opts.digitsOptional ? mask += "[" + opts.radixPointDefinitionSymbol + ";{1," + opts.digits + "}]" : mask += opts.radixPointDefinitionSymbol + ";{" + opts.digits + "}");
  1905. }
  1906. return mask += autoEscape(opts.suffix, opts), mask += "[-]", opts.greedy = !1, mask;
  1907. },
  1908. placeholder: "",
  1909. greedy: !1,
  1910. digits: "*",
  1911. digitsOptional: !0,
  1912. enforceDigitsOnBlur: !1,
  1913. radixPoint: ".",
  1914. positionCaretOnClick: "radixFocus",
  1915. groupSize: 3,
  1916. groupSeparator: "",
  1917. autoGroup: !1,
  1918. allowMinus: !0,
  1919. negationSymbol: {
  1920. front: "-",
  1921. back: ""
  1922. },
  1923. integerDigits: "+",
  1924. integerOptional: !0,
  1925. prefix: "",
  1926. suffix: "",
  1927. rightAlign: !0,
  1928. decimalProtect: !0,
  1929. min: null,
  1930. max: null,
  1931. step: 1,
  1932. insertMode: !0,
  1933. autoUnmask: !1,
  1934. unmaskAsNumber: !1,
  1935. inputmode: "numeric",
  1936. preValidation: function(buffer, pos, c, isSelection, opts, maskset) {
  1937. if ("-" === c || c === opts.negationSymbol.front) return !0 === opts.allowMinus && (opts.isNegative = opts.isNegative === undefined || !opts.isNegative,
  1938. "" === buffer.join("") || {
  1939. caret: pos,
  1940. dopost: !0
  1941. });
  1942. if (!1 === isSelection && c === opts.radixPoint && opts.digits !== undefined && (isNaN(opts.digits) || parseInt(opts.digits) > 0)) {
  1943. var radixPos = $.inArray(opts.radixPoint, buffer);
  1944. if (-1 !== radixPos && maskset.validPositions[radixPos] !== undefined) return !0 === opts.numericInput ? pos === radixPos : {
  1945. caret: radixPos + 1
  1946. };
  1947. }
  1948. return !0;
  1949. },
  1950. postValidation: function(buffer, currentResult, opts) {
  1951. var suffix = opts.suffix.split(""), prefix = opts.prefix.split("");
  1952. if (currentResult.pos === undefined && currentResult.caret !== undefined && !0 !== currentResult.dopost) return currentResult;
  1953. var caretPos = currentResult.caret !== undefined ? currentResult.caret : currentResult.pos, maskedValue = buffer.slice();
  1954. opts.numericInput && (caretPos = maskedValue.length - caretPos - 1, maskedValue = maskedValue.reverse());
  1955. var charAtPos = maskedValue[caretPos];
  1956. if (charAtPos === opts.groupSeparator && (charAtPos = maskedValue[caretPos += 1]),
  1957. caretPos === maskedValue.length - opts.suffix.length - 1 && charAtPos === opts.radixPoint) return currentResult;
  1958. charAtPos !== undefined && charAtPos !== opts.radixPoint && charAtPos !== opts.negationSymbol.front && charAtPos !== opts.negationSymbol.back && (maskedValue[caretPos] = "?",
  1959. opts.prefix.length > 0 && caretPos >= (!1 === opts.isNegative ? 1 : 0) && caretPos < opts.prefix.length - 1 + (!1 === opts.isNegative ? 1 : 0) ? prefix[caretPos - (!1 === opts.isNegative ? 1 : 0)] = "?" : opts.suffix.length > 0 && caretPos >= maskedValue.length - opts.suffix.length - (!1 === opts.isNegative ? 1 : 0) && (suffix[caretPos - (maskedValue.length - opts.suffix.length - (!1 === opts.isNegative ? 1 : 0))] = "?")),
  1960. prefix = prefix.join(""), suffix = suffix.join("");
  1961. var processValue = maskedValue.join("").replace(prefix, "");
  1962. if (processValue = processValue.replace(suffix, ""), processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  1963. processValue = processValue.replace(new RegExp("[-" + Inputmask.escapeRegex(opts.negationSymbol.front) + "]", "g"), ""),
  1964. processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), ""),
  1965. isNaN(opts.placeholder) && (processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.placeholder), "g"), "")),
  1966. processValue.length > 1 && 1 !== processValue.indexOf(opts.radixPoint) && ("0" === charAtPos && (processValue = processValue.replace(/^\?/g, "")),
  1967. processValue = processValue.replace(/^0/g, "")), processValue.charAt(0) === opts.radixPoint && "" !== opts.radixPoint && !0 !== opts.numericInput && (processValue = "0" + processValue),
  1968. "" !== processValue) {
  1969. if (processValue = processValue.split(""), (!opts.digitsOptional || opts.enforceDigitsOnBlur && "blur" === currentResult.event) && isFinite(opts.digits)) {
  1970. var radixPosition = $.inArray(opts.radixPoint, processValue), rpb = $.inArray(opts.radixPoint, maskedValue);
  1971. -1 === radixPosition && (processValue.push(opts.radixPoint), radixPosition = processValue.length - 1);
  1972. for (var i = 1; i <= opts.digits; i++) opts.digitsOptional && (!opts.enforceDigitsOnBlur || "blur" !== currentResult.event) || processValue[radixPosition + i] !== undefined && processValue[radixPosition + i] !== opts.placeholder.charAt(0) ? -1 !== rpb && maskedValue[rpb + i] !== undefined && (processValue[radixPosition + i] = processValue[radixPosition + i] || maskedValue[rpb + i]) : processValue[radixPosition + i] = currentResult.placeholder || opts.placeholder.charAt(0);
  1973. }
  1974. if (!0 !== opts.autoGroup || "" === opts.groupSeparator || charAtPos === opts.radixPoint && currentResult.pos === undefined && !currentResult.dopost) processValue = processValue.join(""); else {
  1975. var addRadix = processValue[processValue.length - 1] === opts.radixPoint && currentResult.c === opts.radixPoint;
  1976. processValue = Inputmask(function(buffer, opts) {
  1977. var postMask = "";
  1978. if (postMask += "(" + opts.groupSeparator + "*{" + opts.groupSize + "}){*}", "" !== opts.radixPoint) {
  1979. var radixSplit = buffer.join("").split(opts.radixPoint);
  1980. radixSplit[1] && (postMask += opts.radixPoint + "*{" + radixSplit[1].match(/^\d*\??\d*/)[0].length + "}");
  1981. }
  1982. return postMask;
  1983. }(processValue, opts), {
  1984. numericInput: !0,
  1985. jitMasking: !0,
  1986. definitions: {
  1987. "*": {
  1988. validator: "[0-9?]",
  1989. cardinality: 1
  1990. }
  1991. }
  1992. }).format(processValue.join("")), addRadix && (processValue += opts.radixPoint),
  1993. processValue.charAt(0) === opts.groupSeparator && processValue.substr(1);
  1994. }
  1995. }
  1996. if (opts.isNegative && "blur" === currentResult.event && (opts.isNegative = "0" !== processValue),
  1997. processValue = prefix + processValue, processValue += suffix, opts.isNegative && (processValue = opts.negationSymbol.front + processValue,
  1998. processValue += opts.negationSymbol.back), processValue = processValue.split(""),
  1999. charAtPos !== undefined) if (charAtPos !== opts.radixPoint && charAtPos !== opts.negationSymbol.front && charAtPos !== opts.negationSymbol.back) (caretPos = $.inArray("?", processValue)) > -1 ? processValue[caretPos] = charAtPos : caretPos = currentResult.caret || 0; else if (charAtPos === opts.radixPoint || charAtPos === opts.negationSymbol.front || charAtPos === opts.negationSymbol.back) {
  2000. var newCaretPos = $.inArray(charAtPos, processValue);
  2001. -1 !== newCaretPos && (caretPos = newCaretPos);
  2002. }
  2003. opts.numericInput && (caretPos = processValue.length - caretPos - 1, processValue = processValue.reverse());
  2004. var rslt = {
  2005. caret: charAtPos === undefined || currentResult.pos !== undefined ? caretPos + (opts.numericInput ? -1 : 1) : caretPos,
  2006. buffer: processValue,
  2007. refreshFromBuffer: currentResult.dopost || buffer.join("") !== processValue.join("")
  2008. };
  2009. return rslt.refreshFromBuffer ? rslt : currentResult;
  2010. },
  2011. onBeforeWrite: function(e, buffer, caretPos, opts) {
  2012. if (e) switch (e.type) {
  2013. case "keydown":
  2014. return opts.postValidation(buffer, {
  2015. caret: caretPos,
  2016. dopost: !0
  2017. }, opts);
  2018. case "blur":
  2019. case "checkval":
  2020. var unmasked;
  2021. if (function(opts) {
  2022. opts.parseMinMaxOptions === undefined && (null !== opts.min && (opts.min = opts.min.toString().replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2023. "," === opts.radixPoint && (opts.min = opts.min.replace(opts.radixPoint, ".")),
  2024. opts.min = isFinite(opts.min) ? parseFloat(opts.min) : NaN, isNaN(opts.min) && (opts.min = Number.MIN_VALUE)),
  2025. null !== opts.max && (opts.max = opts.max.toString().replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2026. "," === opts.radixPoint && (opts.max = opts.max.replace(opts.radixPoint, ".")),
  2027. opts.max = isFinite(opts.max) ? parseFloat(opts.max) : NaN, isNaN(opts.max) && (opts.max = Number.MAX_VALUE)),
  2028. opts.parseMinMaxOptions = "done");
  2029. }(opts), null !== opts.min || null !== opts.max) {
  2030. if (unmasked = opts.onUnMask(buffer.join(""), undefined, $.extend({}, opts, {
  2031. unmaskAsNumber: !0
  2032. })), null !== opts.min && unmasked < opts.min) return opts.isNegative = opts.min < 0,
  2033. opts.postValidation(opts.min.toString().replace(".", opts.radixPoint).split(""), {
  2034. caret: caretPos,
  2035. dopost: !0,
  2036. placeholder: "0"
  2037. }, opts);
  2038. if (null !== opts.max && unmasked > opts.max) return opts.isNegative = opts.max < 0,
  2039. opts.postValidation(opts.max.toString().replace(".", opts.radixPoint).split(""), {
  2040. caret: caretPos,
  2041. dopost: !0,
  2042. placeholder: "0"
  2043. }, opts);
  2044. }
  2045. return opts.postValidation(buffer, {
  2046. caret: caretPos,
  2047. placeholder: "0",
  2048. event: "blur"
  2049. }, opts);
  2050. case "_checkval":
  2051. return {
  2052. caret: caretPos
  2053. };
  2054. }
  2055. },
  2056. regex: {
  2057. integerPart: function(opts, emptyCheck) {
  2058. return emptyCheck ? new RegExp("[" + Inputmask.escapeRegex(opts.negationSymbol.front) + "+]?") : new RegExp("[" + Inputmask.escapeRegex(opts.negationSymbol.front) + "+]?\\d+");
  2059. },
  2060. integerNPart: function(opts) {
  2061. return new RegExp("[\\d" + Inputmask.escapeRegex(opts.groupSeparator) + Inputmask.escapeRegex(opts.placeholder.charAt(0)) + "]+");
  2062. }
  2063. },
  2064. definitions: {
  2065. "~": {
  2066. validator: function(chrs, maskset, pos, strict, opts, isSelection) {
  2067. var isValid = strict ? new RegExp("[0-9" + Inputmask.escapeRegex(opts.groupSeparator) + "]").test(chrs) : new RegExp("[0-9]").test(chrs);
  2068. if (!0 === isValid) {
  2069. if (!0 !== opts.numericInput && maskset.validPositions[pos] !== undefined && "~" === maskset.validPositions[pos].match.def && !isSelection) {
  2070. var processValue = maskset.buffer.join(""), pvRadixSplit = (processValue = (processValue = processValue.replace(new RegExp("[-" + Inputmask.escapeRegex(opts.negationSymbol.front) + "]", "g"), "")).replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), "")).split(opts.radixPoint);
  2071. pvRadixSplit.length > 1 && (pvRadixSplit[1] = pvRadixSplit[1].replace(/0/g, opts.placeholder.charAt(0))),
  2072. "0" === pvRadixSplit[0] && (pvRadixSplit[0] = pvRadixSplit[0].replace(/0/g, opts.placeholder.charAt(0))),
  2073. processValue = pvRadixSplit[0] + opts.radixPoint + pvRadixSplit[1] || "";
  2074. var bufferTemplate = maskset._buffer.join("");
  2075. for (processValue === opts.radixPoint && (processValue = bufferTemplate); null === processValue.match(Inputmask.escapeRegex(bufferTemplate) + "$"); ) bufferTemplate = bufferTemplate.slice(1);
  2076. isValid = (processValue = (processValue = processValue.replace(bufferTemplate, "")).split(""))[pos] === undefined ? {
  2077. pos: pos,
  2078. remove: pos
  2079. } : {
  2080. pos: pos
  2081. };
  2082. }
  2083. } else strict || chrs !== opts.radixPoint || maskset.validPositions[pos - 1] !== undefined || (maskset.buffer[pos] = "0",
  2084. isValid = {
  2085. pos: pos + 1
  2086. });
  2087. return isValid;
  2088. },
  2089. cardinality: 1
  2090. },
  2091. "+": {
  2092. validator: function(chrs, maskset, pos, strict, opts) {
  2093. return opts.allowMinus && ("-" === chrs || chrs === opts.negationSymbol.front);
  2094. },
  2095. cardinality: 1,
  2096. placeholder: ""
  2097. },
  2098. "-": {
  2099. validator: function(chrs, maskset, pos, strict, opts) {
  2100. return opts.allowMinus && chrs === opts.negationSymbol.back;
  2101. },
  2102. cardinality: 1,
  2103. placeholder: ""
  2104. },
  2105. ":": {
  2106. validator: function(chrs, maskset, pos, strict, opts) {
  2107. var radix = "[" + Inputmask.escapeRegex(opts.radixPoint) + "]", isValid = new RegExp(radix).test(chrs);
  2108. return isValid && maskset.validPositions[pos] && maskset.validPositions[pos].match.placeholder === opts.radixPoint && (isValid = {
  2109. caret: pos + 1
  2110. }), isValid;
  2111. },
  2112. cardinality: 1,
  2113. placeholder: function(opts) {
  2114. return opts.radixPoint;
  2115. }
  2116. }
  2117. },
  2118. onUnMask: function(maskedValue, unmaskedValue, opts) {
  2119. if ("" === unmaskedValue && !0 === opts.nullable) return unmaskedValue;
  2120. var processValue = maskedValue.replace(opts.prefix, "");
  2121. return processValue = processValue.replace(opts.suffix, ""), processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2122. "" !== opts.placeholder.charAt(0) && (processValue = processValue.replace(new RegExp(opts.placeholder.charAt(0), "g"), "0")),
  2123. opts.unmaskAsNumber ? ("" !== opts.radixPoint && -1 !== processValue.indexOf(opts.radixPoint) && (processValue = processValue.replace(Inputmask.escapeRegex.call(this, opts.radixPoint), ".")),
  2124. processValue = processValue.replace(new RegExp("^" + Inputmask.escapeRegex(opts.negationSymbol.front)), "-"),
  2125. processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), ""),
  2126. Number(processValue)) : processValue;
  2127. },
  2128. isComplete: function(buffer, opts) {
  2129. var maskedValue = buffer.join("");
  2130. if (buffer.slice().join("") !== maskedValue) return !1;
  2131. var processValue = maskedValue.replace(opts.prefix, "");
  2132. return processValue = processValue.replace(opts.suffix, ""), processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator) + "([0-9]{3})", "g"), "$1"),
  2133. "," === opts.radixPoint && (processValue = processValue.replace(Inputmask.escapeRegex(opts.radixPoint), ".")),
  2134. isFinite(processValue);
  2135. },
  2136. onBeforeMask: function(initialValue, opts) {
  2137. if (opts.isNegative = undefined, initialValue = initialValue.toString().charAt(initialValue.length - 1) === opts.radixPoint ? initialValue.toString().substr(0, initialValue.length - 1) : initialValue.toString(),
  2138. "" !== opts.radixPoint && isFinite(initialValue)) {
  2139. var vs = initialValue.split("."), groupSize = "" !== opts.groupSeparator ? parseInt(opts.groupSize) : 0;
  2140. 2 === vs.length && (vs[0].length > groupSize || vs[1].length > groupSize || vs[0].length <= groupSize && vs[1].length < groupSize) && (initialValue = initialValue.replace(".", opts.radixPoint));
  2141. }
  2142. var kommaMatches = initialValue.match(/,/g), dotMatches = initialValue.match(/\./g);
  2143. if (initialValue = dotMatches && kommaMatches ? dotMatches.length > kommaMatches.length ? (initialValue = initialValue.replace(/\./g, "")).replace(",", opts.radixPoint) : kommaMatches.length > dotMatches.length ? (initialValue = initialValue.replace(/,/g, "")).replace(".", opts.radixPoint) : initialValue.indexOf(".") < initialValue.indexOf(",") ? initialValue.replace(/\./g, "") : initialValue.replace(/,/g, "") : initialValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2144. 0 === opts.digits && (-1 !== initialValue.indexOf(".") ? initialValue = initialValue.substring(0, initialValue.indexOf(".")) : -1 !== initialValue.indexOf(",") && (initialValue = initialValue.substring(0, initialValue.indexOf(",")))),
  2145. "" !== opts.radixPoint && isFinite(opts.digits) && -1 !== initialValue.indexOf(opts.radixPoint)) {
  2146. var decPart = initialValue.split(opts.radixPoint)[1].match(new RegExp("\\d*"))[0];
  2147. if (parseInt(opts.digits) < decPart.toString().length) {
  2148. var digitsFactor = Math.pow(10, parseInt(opts.digits));
  2149. initialValue = initialValue.replace(Inputmask.escapeRegex(opts.radixPoint), "."),
  2150. initialValue = (initialValue = Math.round(parseFloat(initialValue) * digitsFactor) / digitsFactor).toString().replace(".", opts.radixPoint);
  2151. }
  2152. }
  2153. return initialValue;
  2154. },
  2155. canClearPosition: function(maskset, position, lvp, strict, opts) {
  2156. var vp = maskset.validPositions[position], canClear = vp.input !== opts.radixPoint || null !== maskset.validPositions[position].match.fn && !1 === opts.decimalProtect || vp.input === opts.radixPoint && maskset.validPositions[position + 1] && null === maskset.validPositions[position + 1].match.fn || isFinite(vp.input) || position === lvp || vp.input === opts.groupSeparator || vp.input === opts.negationSymbol.front || vp.input === opts.negationSymbol.back;
  2157. return !canClear || "+" !== vp.match.nativeDef && "-" !== vp.match.nativeDef || (opts.isNegative = !1),
  2158. canClear;
  2159. },
  2160. onKeyDown: function(e, buffer, caretPos, opts) {
  2161. var $input = $(this);
  2162. if (e.ctrlKey) switch (e.keyCode) {
  2163. case Inputmask.keyCode.UP:
  2164. $input.val(parseFloat(this.inputmask.unmaskedvalue()) + parseInt(opts.step)), $input.trigger("setvalue");
  2165. break;
  2166. case Inputmask.keyCode.DOWN:
  2167. $input.val(parseFloat(this.inputmask.unmaskedvalue()) - parseInt(opts.step)), $input.trigger("setvalue");
  2168. }
  2169. }
  2170. },
  2171. currency: {
  2172. prefix: "$ ",
  2173. groupSeparator: ",",
  2174. alias: "numeric",
  2175. placeholder: "0",
  2176. autoGroup: !0,
  2177. digits: 2,
  2178. digitsOptional: !1,
  2179. clearMaskOnLostFocus: !1
  2180. },
  2181. decimal: {
  2182. alias: "numeric"
  2183. },
  2184. integer: {
  2185. alias: "numeric",
  2186. digits: 0,
  2187. radixPoint: ""
  2188. },
  2189. percentage: {
  2190. alias: "numeric",
  2191. digits: 2,
  2192. digitsOptional: !0,
  2193. radixPoint: ".",
  2194. placeholder: "0",
  2195. autoGroup: !1,
  2196. min: 0,
  2197. max: 100,
  2198. suffix: " %",
  2199. allowMinus: !1
  2200. }
  2201. }), Inputmask;
  2202. });
  2203. }, function(module, exports, __webpack_require__) {
  2204. "use strict";
  2205. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  2206. "function" == typeof Symbol && Symbol.iterator;
  2207. !function(factory) {
  2208. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  2209. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2210. }(function($, Inputmask) {
  2211. function maskSort(a, b) {
  2212. var maska = (a.mask || a).replace(/#/g, "0").replace(/\)/, "0").replace(/[+()#-]/g, ""), maskb = (b.mask || b).replace(/#/g, "0").replace(/\)/, "0").replace(/[+()#-]/g, "");
  2213. return maska.localeCompare(maskb);
  2214. }
  2215. var analyseMaskBase = Inputmask.prototype.analyseMask;
  2216. return Inputmask.prototype.analyseMask = function(mask, regexMask, opts) {
  2217. function reduceVariations(masks, previousVariation, previousmaskGroup) {
  2218. previousVariation = previousVariation || "", previousmaskGroup = previousmaskGroup || maskGroups,
  2219. "" !== previousVariation && (previousmaskGroup[previousVariation] = {});
  2220. for (var variation = "", maskGroup = previousmaskGroup[previousVariation] || previousmaskGroup, i = masks.length - 1; i >= 0; i--) maskGroup[variation = (mask = masks[i].mask || masks[i]).substr(0, 1)] = maskGroup[variation] || [],
  2221. maskGroup[variation].unshift(mask.substr(1)), masks.splice(i, 1);
  2222. for (var ndx in maskGroup) maskGroup[ndx].length > 500 && reduceVariations(maskGroup[ndx].slice(), ndx, maskGroup);
  2223. }
  2224. function rebuild(maskGroup) {
  2225. var mask = "", submasks = [];
  2226. for (var ndx in maskGroup) $.isArray(maskGroup[ndx]) ? 1 === maskGroup[ndx].length ? submasks.push(ndx + maskGroup[ndx]) : submasks.push(ndx + opts.groupmarker[0] + maskGroup[ndx].join(opts.groupmarker[1] + opts.alternatormarker + opts.groupmarker[0]) + opts.groupmarker[1]) : submasks.push(ndx + rebuild(maskGroup[ndx]));
  2227. return 1 === submasks.length ? mask += submasks[0] : mask += opts.groupmarker[0] + submasks.join(opts.groupmarker[1] + opts.alternatormarker + opts.groupmarker[0]) + opts.groupmarker[1],
  2228. mask;
  2229. }
  2230. var maskGroups = {};
  2231. return opts.phoneCodes && (opts.phoneCodes && opts.phoneCodes.length > 1e3 && (reduceVariations((mask = mask.substr(1, mask.length - 2)).split(opts.groupmarker[1] + opts.alternatormarker + opts.groupmarker[0])),
  2232. mask = rebuild(maskGroups)), mask = mask.replace(/9/g, "\\9")), analyseMaskBase.call(this, mask, regexMask, opts);
  2233. }, Inputmask.extendAliases({
  2234. abstractphone: {
  2235. groupmarker: [ "<", ">" ],
  2236. countrycode: "",
  2237. phoneCodes: [],
  2238. keepStatic: "auto",
  2239. mask: function(opts) {
  2240. return opts.definitions = {
  2241. "#": Inputmask.prototype.definitions[9]
  2242. }, opts.phoneCodes.sort(maskSort);
  2243. },
  2244. onBeforeMask: function(value, opts) {
  2245. var processedValue = value.replace(/^0{1,2}/, "").replace(/[\s]/g, "");
  2246. return (processedValue.indexOf(opts.countrycode) > 1 || -1 === processedValue.indexOf(opts.countrycode)) && (processedValue = "+" + opts.countrycode + processedValue),
  2247. processedValue;
  2248. },
  2249. onUnMask: function(maskedValue, unmaskedValue, opts) {
  2250. return maskedValue.replace(/[()#-]/g, "");
  2251. },
  2252. inputmode: "tel"
  2253. }
  2254. }), Inputmask;
  2255. });
  2256. }, function(module, exports, __webpack_require__) {
  2257. "use strict";
  2258. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__, _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) {
  2259. return typeof obj;
  2260. } : function(obj) {
  2261. return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
  2262. };
  2263. !function(factory) {
  2264. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(2), __webpack_require__(1) ],
  2265. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = factory) ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2266. }(function($, Inputmask) {
  2267. return void 0 === $.fn.inputmask && ($.fn.inputmask = function(fn, options) {
  2268. var nptmask, input = this[0];
  2269. if (void 0 === options && (options = {}), "string" == typeof fn) switch (fn) {
  2270. case "unmaskedvalue":
  2271. return input && input.inputmask ? input.inputmask.unmaskedvalue() : $(input).val();
  2272. case "remove":
  2273. return this.each(function() {
  2274. this.inputmask && this.inputmask.remove();
  2275. });
  2276. case "getemptymask":
  2277. return input && input.inputmask ? input.inputmask.getemptymask() : "";
  2278. case "hasMaskedValue":
  2279. return !(!input || !input.inputmask) && input.inputmask.hasMaskedValue();
  2280. case "isComplete":
  2281. return !input || !input.inputmask || input.inputmask.isComplete();
  2282. case "getmetadata":
  2283. return input && input.inputmask ? input.inputmask.getmetadata() : void 0;
  2284. case "setvalue":
  2285. $(input).val(options), input && void 0 === input.inputmask && $(input).triggerHandler("setvalue");
  2286. break;
  2287. case "option":
  2288. if ("string" != typeof options) return this.each(function() {
  2289. if (void 0 !== this.inputmask) return this.inputmask.option(options);
  2290. });
  2291. if (input && void 0 !== input.inputmask) return input.inputmask.option(options);
  2292. break;
  2293. default:
  2294. return options.alias = fn, nptmask = new Inputmask(options), this.each(function() {
  2295. nptmask.mask(this);
  2296. });
  2297. } else {
  2298. if ("object" == (void 0 === fn ? "undefined" : _typeof(fn))) return nptmask = new Inputmask(fn),
  2299. void 0 === fn.mask && void 0 === fn.alias ? this.each(function() {
  2300. if (void 0 !== this.inputmask) return this.inputmask.option(fn);
  2301. nptmask.mask(this);
  2302. }) : this.each(function() {
  2303. nptmask.mask(this);
  2304. });
  2305. if (void 0 === fn) return this.each(function() {
  2306. (nptmask = new Inputmask(options)).mask(this);
  2307. });
  2308. }
  2309. }), $.fn.inputmask;
  2310. });
  2311. } ]);