jquery.inputmask.bundle.js 170 KB

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