jquery.inputmask.bundle.js 208 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982
  1. /*!
  2. * jquery.inputmask.bundle.js
  3. * https://github.com/RobinHerbots/Inputmask
  4. * Copyright (c) 2010 - 2017 Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 4.0.1-20
  7. */
  8. !function(modules) {
  9. function __webpack_require__(moduleId) {
  10. if (installedModules[moduleId]) return installedModules[moduleId].exports;
  11. var module = installedModules[moduleId] = {
  12. i: moduleId,
  13. l: !1,
  14. exports: {}
  15. };
  16. return modules[moduleId].call(module.exports, module, module.exports, __webpack_require__),
  17. module.l = !0, module.exports;
  18. }
  19. var installedModules = {};
  20. __webpack_require__.m = modules, __webpack_require__.c = installedModules, __webpack_require__.i = function(value) {
  21. return value;
  22. }, __webpack_require__.d = function(exports, name, getter) {
  23. __webpack_require__.o(exports, name) || Object.defineProperty(exports, name, {
  24. configurable: !1,
  25. enumerable: !0,
  26. get: getter
  27. });
  28. }, __webpack_require__.n = function(module) {
  29. var getter = module && module.__esModule ? function() {
  30. return module.default;
  31. } : function() {
  32. return module;
  33. };
  34. return __webpack_require__.d(getter, "a", getter), getter;
  35. }, __webpack_require__.o = function(object, property) {
  36. return Object.prototype.hasOwnProperty.call(object, property);
  37. }, __webpack_require__.p = "", __webpack_require__(__webpack_require__.s = 9);
  38. }([ function(module, exports, __webpack_require__) {
  39. "use strict";
  40. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  41. "function" == typeof Symbol && Symbol.iterator;
  42. !function(factory) {
  43. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(2) ], __WEBPACK_AMD_DEFINE_FACTORY__ = factory,
  44. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  45. }(function($) {
  46. return $;
  47. });
  48. }, function(module, exports, __webpack_require__) {
  49. "use strict";
  50. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__, _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) {
  51. return typeof obj;
  52. } : function(obj) {
  53. return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
  54. };
  55. !function(factory) {
  56. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(11), __webpack_require__(10) ],
  57. __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  58. }(function($, window, document, undefined) {
  59. function Inputmask(alias, options, internal) {
  60. if (!(this instanceof Inputmask)) return new Inputmask(alias, options, internal);
  61. this.el = undefined, this.events = {}, this.maskset = undefined, this.refreshValue = !1,
  62. !0 !== internal && ($.isPlainObject(alias) ? options = alias : (options = options || {},
  63. options.alias = alias), this.opts = $.extend(!0, {}, this.defaults, options), this.noMasksCache = options && options.definitions !== undefined,
  64. this.userOptions = options || {}, this.isRTL = this.opts.numericInput, resolveAlias(this.opts.alias, options, this.opts));
  65. }
  66. function resolveAlias(aliasStr, options, opts) {
  67. var aliasDefinition = Inputmask.prototype.aliases[aliasStr];
  68. return aliasDefinition ? (aliasDefinition.alias && resolveAlias(aliasDefinition.alias, undefined, opts),
  69. $.extend(!0, opts, aliasDefinition), $.extend(!0, opts, options), !0) : (null === opts.mask && (opts.mask = aliasStr),
  70. !1);
  71. }
  72. function generateMaskSet(opts, nocache) {
  73. function generateMask(mask, metadata, opts) {
  74. var regexMask = !1;
  75. if (null !== mask && "" !== mask || (regexMask = null !== opts.regex, regexMask ? (mask = opts.regex,
  76. mask = mask.replace(/^(\^)(.*)(\$)$/, "$2")) : (regexMask = !0, mask = ".*")), 1 === mask.length && !1 === opts.greedy && 0 !== opts.repeat && (opts.placeholder = ""),
  77. opts.repeat > 0 || "*" === opts.repeat || "+" === opts.repeat) {
  78. var repeatStart = "*" === opts.repeat ? 0 : "+" === opts.repeat ? 1 : opts.repeat;
  79. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  80. }
  81. var masksetDefinition, maskdefKey = regexMask ? "regex_" + opts.regex : opts.numericInput ? mask.split("").reverse().join("") : mask;
  82. return Inputmask.prototype.masksCache[maskdefKey] === undefined || !0 === nocache ? (masksetDefinition = {
  83. mask: mask,
  84. maskToken: Inputmask.prototype.analyseMask(mask, regexMask, opts),
  85. validPositions: {},
  86. _buffer: undefined,
  87. buffer: undefined,
  88. tests: {},
  89. metadata: metadata,
  90. maskLength: undefined
  91. }, !0 !== nocache && (Inputmask.prototype.masksCache[maskdefKey] = masksetDefinition,
  92. masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[maskdefKey]))) : masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[maskdefKey]),
  93. masksetDefinition;
  94. }
  95. if ($.isFunction(opts.mask) && (opts.mask = opts.mask(opts)), $.isArray(opts.mask)) {
  96. if (opts.mask.length > 1) {
  97. opts.keepStatic = null === opts.keepStatic || opts.keepStatic;
  98. var altMask = opts.groupmarker.start;
  99. return $.each(opts.numericInput ? opts.mask.reverse() : opts.mask, function(ndx, msk) {
  100. altMask.length > 1 && (altMask += opts.groupmarker.end + opts.alternatormarker + opts.groupmarker.start),
  101. msk.mask === undefined || $.isFunction(msk.mask) ? altMask += msk : altMask += msk.mask;
  102. }), altMask += opts.groupmarker.end, generateMask(altMask, opts.mask, opts);
  103. }
  104. opts.mask = opts.mask.pop();
  105. }
  106. return opts.mask && opts.mask.mask !== undefined && !$.isFunction(opts.mask.mask) ? generateMask(opts.mask.mask, opts.mask, opts) : generateMask(opts.mask, opts.mask, opts);
  107. }
  108. function maskScope(actionObj, maskset, opts) {
  109. function getMaskTemplate(baseOnInput, minimalPos, includeMode) {
  110. minimalPos = minimalPos || 0;
  111. var ndxIntlzr, test, testPos, maskTemplate = [], pos = 0, lvp = getLastValidPosition();
  112. do {
  113. !0 === baseOnInput && getMaskSet().validPositions[pos] ? (testPos = getMaskSet().validPositions[pos],
  114. test = testPos.match, ndxIntlzr = testPos.locator.slice(), maskTemplate.push(!0 === includeMode ? testPos.input : !1 === includeMode ? test.nativeDef : getPlaceholder(pos, test))) : (testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  115. test = testPos.match, ndxIntlzr = testPos.locator.slice(), (!1 === opts.jitMasking || pos < lvp || "number" == typeof opts.jitMasking && isFinite(opts.jitMasking) && opts.jitMasking > pos) && maskTemplate.push(!1 === includeMode ? test.nativeDef : getPlaceholder(pos, test))),
  116. pos++;
  117. } while ((maxLength === undefined || pos < maxLength) && (null !== test.fn || "" !== test.def) || minimalPos > pos);
  118. return "" === maskTemplate[maskTemplate.length - 1] && maskTemplate.pop(), getMaskSet().maskLength = pos + 1,
  119. maskTemplate;
  120. }
  121. function getMaskSet() {
  122. return maskset;
  123. }
  124. function resetMaskSet(soft) {
  125. var maskset = getMaskSet();
  126. maskset.buffer = undefined, !0 !== soft && (maskset.validPositions = {}, maskset.p = 0);
  127. }
  128. function getLastValidPosition(closestTo, strict, validPositions) {
  129. var before = -1, after = -1, valids = validPositions || getMaskSet().validPositions;
  130. closestTo === undefined && (closestTo = -1);
  131. for (var posNdx in valids) {
  132. var psNdx = parseInt(posNdx);
  133. valids[psNdx] && (strict || !0 !== valids[psNdx].generatedInput) && (psNdx <= closestTo && (before = psNdx),
  134. psNdx >= closestTo && (after = psNdx));
  135. }
  136. return -1 !== before && closestTo - before > 1 || after < closestTo ? before : after;
  137. }
  138. function stripValidPositions(start, end, nocheck, strict) {
  139. var i, startPos = start, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), needsValidation = !1;
  140. for (getMaskSet().p = start, i = end - 1; i >= startPos; i--) getMaskSet().validPositions[i] !== undefined && (!0 !== nocheck && (!getMaskSet().validPositions[i].match.optionality && function(pos) {
  141. var posMatch = getMaskSet().validPositions[pos];
  142. if (posMatch !== undefined && null === posMatch.match.fn) {
  143. var prevMatch = getMaskSet().validPositions[pos - 1], nextMatch = getMaskSet().validPositions[pos + 1];
  144. return prevMatch !== undefined && nextMatch !== undefined;
  145. }
  146. return !1;
  147. }(i) || !1 === opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts)) || delete getMaskSet().validPositions[i]);
  148. for (resetMaskSet(!0), i = startPos + 1; i <= getLastValidPosition(); ) {
  149. for (;getMaskSet().validPositions[startPos] !== undefined; ) startPos++;
  150. if (i < startPos && (i = startPos + 1), getMaskSet().validPositions[i] === undefined && isMask(i)) i++; else {
  151. var t = getTestTemplate(i);
  152. !1 === needsValidation && positionsClone[startPos] && positionsClone[startPos].match.def === t.match.def ? (getMaskSet().validPositions[startPos] = $.extend(!0, {}, positionsClone[startPos]),
  153. getMaskSet().validPositions[startPos].input = t.input, delete getMaskSet().validPositions[i],
  154. i++) : positionCanMatchDefinition(startPos, t.match.def) ? !1 !== isValid(startPos, t.input || getPlaceholder(i), !0) && (delete getMaskSet().validPositions[i],
  155. i++, needsValidation = !0) : isMask(i) || (i++, startPos--), startPos++;
  156. }
  157. }
  158. resetMaskSet(!0);
  159. }
  160. function determineTestTemplate(tests, guessNextBest) {
  161. for (var testPos, testPositions = tests, lvp = getLastValidPosition(), lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0], lvTestAltArr = lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation].toString().split(",") : [], ndx = 0; ndx < testPositions.length && (testPos = testPositions[ndx],
  162. !(testPos.match && (opts.greedy && !0 !== testPos.match.optionalQuantifier || (!1 === testPos.match.optionality || !1 === testPos.match.newBlockMarker) && !0 !== testPos.match.optionalQuantifier) && (lvTest.alternation === undefined || lvTest.alternation !== testPos.alternation || testPos.locator[lvTest.alternation] !== undefined && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr))) || !0 === guessNextBest && (null !== testPos.match.fn || /[0-9a-bA-Z]/.test(testPos.match.def))); ndx++) ;
  163. return testPos;
  164. }
  165. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  166. return getMaskSet().validPositions[pos] || determineTestTemplate(getTests(pos, ndxIntlzr ? ndxIntlzr.slice() : ndxIntlzr, tstPs));
  167. }
  168. function getTest(pos) {
  169. return getMaskSet().validPositions[pos] ? getMaskSet().validPositions[pos] : getTests(pos)[0];
  170. }
  171. function positionCanMatchDefinition(pos, def) {
  172. for (var valid = !1, tests = getTests(pos), tndx = 0; tndx < tests.length; tndx++) if (tests[tndx].match && tests[tndx].match.def === def) {
  173. valid = !0;
  174. break;
  175. }
  176. return valid;
  177. }
  178. function getTests(pos, ndxIntlzr, tstPs) {
  179. function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) {
  180. function handleMatch(match, loopNdx, quantifierRecurse) {
  181. function isFirstMatch(latestMatch, tokenGroup) {
  182. var firstMatch = 0 === $.inArray(latestMatch, tokenGroup.matches);
  183. return firstMatch || $.each(tokenGroup.matches, function(ndx, match) {
  184. if (!0 === match.isQuantifier && (firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1]))) return !1;
  185. }), firstMatch;
  186. }
  187. function resolveNdxInitializer(pos, alternateNdx, targetAlternation) {
  188. var bestMatch, indexPos;
  189. if (getMaskSet().validPositions[pos - 1] && targetAlternation && getMaskSet().tests[pos]) for (var vpAlternation = getMaskSet().validPositions[pos - 1].locator, tpAlternation = getMaskSet().tests[pos][0].locator, i = 0; i < targetAlternation; i++) if (vpAlternation[i] !== tpAlternation[i]) return vpAlternation.slice(targetAlternation + 1);
  190. return (getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) && $.each(getMaskSet().tests[pos] || [ getMaskSet().validPositions[pos] ], function(ndx, lmnt) {
  191. var alternation = targetAlternation !== undefined ? targetAlternation : lmnt.alternation, ndxPos = lmnt.locator[alternation] !== undefined ? lmnt.locator[alternation].toString().indexOf(alternateNdx) : -1;
  192. (indexPos === undefined || ndxPos < indexPos) && -1 !== ndxPos && (bestMatch = lmnt,
  193. indexPos = ndxPos);
  194. }), bestMatch ? bestMatch.locator.slice((targetAlternation !== undefined ? targetAlternation : bestMatch.alternation) + 1) : targetAlternation !== undefined ? resolveNdxInitializer(pos, alternateNdx) : undefined;
  195. }
  196. if (testPos > 1e4) throw "Inputmask: There is probably an error in your mask definition or in the code. Create an issue on github with an example of the mask you are using. " + getMaskSet().mask;
  197. if (testPos === pos && match.matches === undefined) return matches.push({
  198. match: match,
  199. locator: loopNdx.reverse(),
  200. cd: cacheDependency
  201. }), !0;
  202. if (match.matches !== undefined) {
  203. if (match.isGroup && quantifierRecurse !== match) {
  204. if (match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx)) return !0;
  205. } else if (match.isOptional) {
  206. var optionalToken = match;
  207. if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) {
  208. if (latestMatch = matches[matches.length - 1].match, !isFirstMatch(latestMatch, optionalToken)) return !0;
  209. insertStop = !0, testPos = pos;
  210. }
  211. } else if (match.isAlternator) {
  212. var maltMatches, alternateToken = match, malternateMatches = [], currentMatches = matches.slice(), loopNdxCnt = loopNdx.length, altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  213. if (-1 === altIndex || "string" == typeof altIndex) {
  214. var amndx, currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr = [];
  215. if ("string" == typeof altIndex) altIndexArr = altIndex.split(","); else for (amndx = 0; amndx < alternateToken.matches.length; amndx++) altIndexArr.push(amndx);
  216. for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
  217. if (amndx = parseInt(altIndexArr[ndx]), matches = [], ndxInitializer = resolveNdxInitializer(testPos, amndx, loopNdxCnt) || ndxInitializerClone.slice(),
  218. !0 !== (match = handleMatch(alternateToken.matches[amndx] || maskToken.matches[amndx], [ amndx ].concat(loopNdx), quantifierRecurse) || match) && match !== undefined && altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length) {
  219. var ntndx = $.inArray(match, maskToken.matches) + 1;
  220. maskToken.matches.length > ntndx && (match = handleMatch(maskToken.matches[ntndx], [ ntndx ].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse)) && (altIndexArr.push(ntndx.toString()),
  221. $.each(matches, function(ndx, lmnt) {
  222. lmnt.alternation = loopNdx.length - 1;
  223. }));
  224. }
  225. maltMatches = matches.slice(), testPos = currentPos, matches = [];
  226. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  227. var altMatch = maltMatches[ndx1], dropMatch = !1;
  228. altMatch.alternation = altMatch.alternation || loopNdxCnt;
  229. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  230. var altMatch2 = malternateMatches[ndx2];
  231. if ("string" != typeof altIndex || -1 !== $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr)) {
  232. if (function(source, target) {
  233. return source.match.nativeDef === target.match.nativeDef || source.match.def === target.match.nativeDef || source.match.nativeDef === target.match.def;
  234. }(altMatch, altMatch2)) {
  235. dropMatch = !0, altMatch.alternation === altMatch2.alternation && -1 === altMatch2.locator[altMatch2.alternation].toString().indexOf(altMatch.locator[altMatch.alternation]) && (altMatch2.locator[altMatch2.alternation] = altMatch2.locator[altMatch2.alternation] + "," + altMatch.locator[altMatch.alternation],
  236. altMatch2.alternation = altMatch.alternation), altMatch.match.nativeDef === altMatch2.match.def && (altMatch.locator[altMatch.alternation] = altMatch2.locator[altMatch2.alternation],
  237. malternateMatches.splice(malternateMatches.indexOf(altMatch2), 1, altMatch));
  238. break;
  239. }
  240. if (altMatch.match.def === altMatch2.match.def) {
  241. dropMatch = !1;
  242. break;
  243. }
  244. if (function(source, target) {
  245. return null === source.match.fn && null !== target.match.fn && target.match.fn.test(source.match.def, getMaskSet(), pos, !1, opts, !1);
  246. }(altMatch, altMatch2) || function(source, target) {
  247. return null !== source.match.fn && null !== target.match.fn && target.match.fn.test(source.match.def.replace(/[\[\]]/g, ""), getMaskSet(), pos, !1, opts, !1);
  248. }(altMatch, altMatch2)) {
  249. altMatch.alternation == altMatch2.alternation && -1 === altMatch.locator[altMatch.alternation].toString().indexOf(altMatch2.locator[altMatch2.alternation].toString().split("")[0]) && (altMatch.na = altMatch.na || altMatch.locator[altMatch.alternation].toString(),
  250. -1 === altMatch.na.indexOf(altMatch.locator[altMatch.alternation].toString().split("")[0]) && (altMatch.na = altMatch.na + "," + altMatch.locator[altMatch2.alternation].toString().split("")[0]),
  251. dropMatch = !0, altMatch.locator[altMatch.alternation] = altMatch2.locator[altMatch2.alternation].toString().split("")[0] + "," + altMatch.locator[altMatch.alternation],
  252. malternateMatches.splice(malternateMatches.indexOf(altMatch2), 0, altMatch));
  253. break;
  254. }
  255. }
  256. }
  257. dropMatch || malternateMatches.push(altMatch);
  258. }
  259. }
  260. "string" == typeof altIndex && (malternateMatches = $.map(malternateMatches, function(lmnt, ndx) {
  261. if (isFinite(ndx)) {
  262. var alternation = lmnt.alternation, altLocArr = lmnt.locator[alternation].toString().split(",");
  263. lmnt.locator[alternation] = undefined, lmnt.alternation = undefined;
  264. for (var alndx = 0; alndx < altLocArr.length; alndx++) -1 !== $.inArray(altLocArr[alndx], altIndexArr) && (lmnt.locator[alternation] !== undefined ? (lmnt.locator[alternation] += ",",
  265. lmnt.locator[alternation] += altLocArr[alndx]) : lmnt.locator[alternation] = parseInt(altLocArr[alndx]),
  266. lmnt.alternation = alternation);
  267. if (lmnt.locator[alternation] !== undefined) return lmnt;
  268. }
  269. })), matches = currentMatches.concat(malternateMatches), testPos = pos, insertStop = matches.length > 0,
  270. match = malternateMatches.length > 0, ndxInitializer = ndxInitializerClone.slice();
  271. } else match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [ altIndex ].concat(loopNdx), quantifierRecurse);
  272. if (match) return !0;
  273. } 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++) {
  274. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  275. if (match = handleMatch(tokenGroup, [ qndx ].concat(loopNdx), tokenGroup)) {
  276. if (latestMatch = matches[matches.length - 1].match, latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1,
  277. isFirstMatch(latestMatch, tokenGroup)) {
  278. if (qndx > qt.quantifier.min - 1) {
  279. insertStop = !0, testPos = pos;
  280. break;
  281. }
  282. return !0;
  283. }
  284. return !0;
  285. }
  286. } else if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) return !0;
  287. } else testPos++;
  288. }
  289. for (var tndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; tndx < maskToken.matches.length; tndx++) if (!0 !== maskToken.matches[tndx].isQuantifier) {
  290. var match = handleMatch(maskToken.matches[tndx], [ tndx ].concat(loopNdx), quantifierRecurse);
  291. if (match && testPos === pos) return match;
  292. if (testPos > pos) break;
  293. }
  294. }
  295. function filterTests(tests) {
  296. if (opts.keepStatic && pos > 0 && tests.length > 1 + ("" === tests[tests.length - 1].match.def ? 1 : 0) && !0 !== tests[0].match.optionality && !0 !== tests[0].match.optionalQuantifier && null === tests[0].match.fn && !/[0-9a-bA-Z]/.test(tests[0].match.def)) {
  297. if (getMaskSet().validPositions[pos - 1] === undefined) return [ determineTestTemplate(tests) ];
  298. if (getMaskSet().validPositions[pos - 1].alternation === tests[0].alternation) return [ determineTestTemplate(tests) ];
  299. if (getMaskSet().validPositions[pos - 1]) return [ determineTestTemplate(tests) ];
  300. }
  301. return tests;
  302. }
  303. var latestMatch, maskTokens = getMaskSet().maskToken, testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr ? ndxIntlzr.slice() : [ 0 ], matches = [], insertStop = !1, cacheDependency = ndxIntlzr ? ndxIntlzr.join("") : "";
  304. if (pos > -1) {
  305. if (ndxIntlzr === undefined) {
  306. for (var test, previousPos = pos - 1; (test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) === undefined && previousPos > -1; ) previousPos--;
  307. test !== undefined && previousPos > -1 && (ndxInitializer = function(tests) {
  308. var locator = [];
  309. return $.isArray(tests) || (tests = [ tests ]), tests.length > 0 && (tests[0].alternation === undefined ? (locator = determineTestTemplate(tests.slice()).locator.slice(),
  310. 0 === locator.length && (locator = tests[0].locator.slice())) : $.each(tests, function(ndx, tst) {
  311. 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]);
  312. })), locator;
  313. }(test), cacheDependency = ndxInitializer.join(""), testPos = previousPos);
  314. }
  315. if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) return filterTests(getMaskSet().tests[pos]);
  316. for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
  317. if (resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [ mtndx ]) && testPos === pos || testPos > pos) break;
  318. }
  319. }
  320. return (0 === matches.length || insertStop) && matches.push({
  321. match: {
  322. fn: null,
  323. cardinality: 0,
  324. optionality: !0,
  325. casing: null,
  326. def: "",
  327. placeholder: ""
  328. },
  329. locator: [],
  330. cd: cacheDependency
  331. }), ndxIntlzr !== undefined && getMaskSet().tests[pos] ? filterTests($.extend(!0, [], matches)) : (getMaskSet().tests[pos] = $.extend(!0, [], matches),
  332. filterTests(getMaskSet().tests[pos]));
  333. }
  334. function getBufferTemplate() {
  335. return getMaskSet()._buffer === undefined && (getMaskSet()._buffer = getMaskTemplate(!1, 1),
  336. getMaskSet().buffer === undefined && (getMaskSet().buffer = getMaskSet()._buffer.slice())),
  337. getMaskSet()._buffer;
  338. }
  339. function getBuffer(noCache) {
  340. return getMaskSet().buffer !== undefined && !0 !== noCache || (getMaskSet().buffer = getMaskTemplate(!0, getLastValidPosition(), !0)),
  341. getMaskSet().buffer;
  342. }
  343. function refreshFromBuffer(start, end, buffer) {
  344. var i, p;
  345. if (!0 === start) resetMaskSet(), start = 0, end = buffer.length; else for (i = start; i < end; i++) delete getMaskSet().validPositions[i];
  346. for (p = start, i = start; i < end; i++) if (resetMaskSet(!0), buffer[i] !== opts.skipOptionalPartCharacter) {
  347. var valResult = isValid(p, buffer[i], !0, !0);
  348. !1 !== valResult && (resetMaskSet(!0), p = valResult.caret !== undefined ? valResult.caret : valResult.pos + 1);
  349. }
  350. }
  351. function casing(elem, test, pos) {
  352. switch (opts.casing || test.casing) {
  353. case "upper":
  354. elem = elem.toUpperCase();
  355. break;
  356. case "lower":
  357. elem = elem.toLowerCase();
  358. break;
  359. case "title":
  360. var posBefore = getMaskSet().validPositions[pos - 1];
  361. elem = 0 === pos || posBefore && posBefore.input === String.fromCharCode(Inputmask.keyCode.SPACE) ? elem.toUpperCase() : elem.toLowerCase();
  362. break;
  363. default:
  364. if ($.isFunction(opts.casing)) {
  365. var args = Array.prototype.slice.call(arguments);
  366. args.push(getMaskSet().validPositions), elem = opts.casing.apply(this, args);
  367. }
  368. }
  369. return elem;
  370. }
  371. function checkAlternationMatch(altArr1, altArr2, na) {
  372. 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);
  373. for (var alndx = 0; alndx < altArr1.length; alndx++) if (-1 !== $.inArray(altArr1[alndx], altArrC)) {
  374. isMatch = !0;
  375. break;
  376. }
  377. return isMatch;
  378. }
  379. function isValid(pos, c, strict, fromSetValid, fromAlternate, validateOnly) {
  380. function isSelection(posObj) {
  381. var selection = isRTL ? posObj.begin - posObj.end > 1 || posObj.begin - posObj.end == 1 : posObj.end - posObj.begin > 1 || posObj.end - posObj.begin == 1;
  382. return selection && 0 === posObj.begin && posObj.end === getMaskSet().maskLength ? "full" : selection;
  383. }
  384. function _isValid(position, c, strict) {
  385. var rslt = !1;
  386. return $.each(getTests(position), function(ndx, tst) {
  387. for (var test = tst.match, loopend = c ? 1 : 0, chrs = "", i = test.cardinality; i > loopend; i--) chrs += getBufferElement(position - (i - 1));
  388. if (c && (chrs += c), getBuffer(!0), !1 !== (rslt = null != test.fn ? test.fn.test(chrs, getMaskSet(), position, strict, opts, isSelection(pos)) : (c === test.def || c === opts.skipOptionalPartCharacter) && "" !== test.def && {
  389. c: getPlaceholder(position, test, !0) || test.def,
  390. pos: position
  391. })) {
  392. var elem = rslt.c !== undefined ? rslt.c : c;
  393. elem = elem === opts.skipOptionalPartCharacter && null === test.fn ? getPlaceholder(position, test, !0) || test.def : elem;
  394. var validatedPos = position, possibleModifiedBuffer = getBuffer();
  395. if (rslt.remove !== undefined && ($.isArray(rslt.remove) || (rslt.remove = [ rslt.remove ]),
  396. $.each(rslt.remove.sort(function(a, b) {
  397. return b - a;
  398. }), function(ndx, lmnt) {
  399. stripValidPositions(lmnt, lmnt + 1, !0);
  400. })), rslt.insert !== undefined && ($.isArray(rslt.insert) || (rslt.insert = [ rslt.insert ]),
  401. $.each(rslt.insert.sort(function(a, b) {
  402. return a - b;
  403. }), function(ndx, lmnt) {
  404. isValid(lmnt.pos, lmnt.c, !0, fromSetValid);
  405. })), rslt.refreshFromBuffer) {
  406. var refresh = rslt.refreshFromBuffer;
  407. if (refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, possibleModifiedBuffer),
  408. rslt.pos === undefined && rslt.c === undefined) return rslt.pos = getLastValidPosition(),
  409. !1;
  410. if ((validatedPos = rslt.pos !== undefined ? rslt.pos : position) !== position) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0, fromSetValid)),
  411. !1;
  412. } else if (!0 !== rslt && rslt.pos !== undefined && rslt.pos !== position && (validatedPos = rslt.pos,
  413. refreshFromBuffer(position, validatedPos, getBuffer().slice()), validatedPos !== position)) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0)),
  414. !1;
  415. return (!0 === rslt || rslt.pos !== undefined || rslt.c !== undefined) && (ndx > 0 && resetMaskSet(!0),
  416. setValidPosition(validatedPos, $.extend({}, tst, {
  417. input: casing(elem, test, validatedPos)
  418. }), fromSetValid, isSelection(pos)) || (rslt = !1), !1);
  419. }
  420. }), rslt;
  421. }
  422. function setValidPosition(pos, validTest, fromSetValid, isSelection) {
  423. if (isSelection || opts.insertMode && getMaskSet().validPositions[pos] !== undefined && fromSetValid === undefined) {
  424. var i, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), lvp = getLastValidPosition(undefined, !0);
  425. for (i = pos; i <= lvp; i++) delete getMaskSet().validPositions[i];
  426. getMaskSet().validPositions[pos] = $.extend(!0, {}, validTest);
  427. var j, valid = !0, vps = getMaskSet().validPositions, needsValidation = !1, initialLength = getMaskSet().maskLength;
  428. for (i = j = pos; i <= lvp; i++) {
  429. var t = positionsClone[i];
  430. if (t !== undefined) for (var posMatch = j; posMatch < getMaskSet().maskLength && (null === t.match.fn && vps[i] && (!0 === vps[i].match.optionalQuantifier || !0 === vps[i].match.optionality) || null != t.match.fn); ) {
  431. if (posMatch++, !1 === needsValidation && positionsClone[posMatch] && positionsClone[posMatch].match.def === t.match.def) getMaskSet().validPositions[posMatch] = $.extend(!0, {}, positionsClone[posMatch]),
  432. getMaskSet().validPositions[posMatch].input = t.input, fillMissingNonMask(posMatch),
  433. j = posMatch, valid = !0; else if (positionCanMatchDefinition(posMatch, t.match.def)) {
  434. var result = isValid(posMatch, t.input, !0, !0);
  435. valid = !1 !== result, j = result.caret || result.insert ? getLastValidPosition() : posMatch,
  436. needsValidation = !0;
  437. } else if (!(valid = !0 === t.generatedInput) && posMatch >= getMaskSet().maskLength - 1) break;
  438. if (getMaskSet().maskLength < initialLength && (getMaskSet().maskLength = initialLength),
  439. valid) break;
  440. }
  441. if (!valid) break;
  442. }
  443. if (!valid) return getMaskSet().validPositions = $.extend(!0, {}, positionsClone),
  444. resetMaskSet(!0), !1;
  445. } else getMaskSet().validPositions[pos] = $.extend(!0, {}, validTest);
  446. return resetMaskSet(!0), !0;
  447. }
  448. function fillMissingNonMask(maskPos) {
  449. for (var pndx = maskPos - 1; pndx > -1 && !getMaskSet().validPositions[pndx]; pndx--) ;
  450. var testTemplate, testsFromPos;
  451. for (pndx++; pndx < maskPos; pndx++) getMaskSet().validPositions[pndx] === undefined && (!1 === opts.jitMasking || opts.jitMasking > pndx) && (testsFromPos = getTests(pndx, getTestTemplate(pndx - 1).locator, pndx - 1).slice(),
  452. "" === testsFromPos[testsFromPos.length - 1].match.def && testsFromPos.pop(), (testTemplate = determineTestTemplate(testsFromPos)) && (testTemplate.match.def === opts.radixPointDefinitionSymbol || !isMask(pndx, !0) || $.inArray(opts.radixPoint, getBuffer()) < pndx && testTemplate.match.fn && testTemplate.match.fn.test(getPlaceholder(pndx), getMaskSet(), pndx, !1, opts)) && !1 !== (result = _isValid(pndx, getPlaceholder(pndx, testTemplate.match, !0) || (null == testTemplate.match.fn ? testTemplate.match.def : "" !== getPlaceholder(pndx) ? getPlaceholder(pndx) : getBuffer()[pndx]), !0)) && (getMaskSet().validPositions[result.pos || pndx].generatedInput = !0));
  453. }
  454. strict = !0 === strict;
  455. var maskPos = pos;
  456. pos.begin !== undefined && (maskPos = isRTL && !isSelection(pos) ? pos.end : pos.begin);
  457. var result = !0, positionsClone = $.extend(!0, {}, getMaskSet().validPositions);
  458. if ($.isFunction(opts.preValidation) && !strict && !0 !== fromSetValid && !0 !== validateOnly && (result = opts.preValidation(getBuffer(), maskPos, c, isSelection(pos), opts)),
  459. !0 === result) {
  460. if (fillMissingNonMask(maskPos), isSelection(pos) && (handleRemove(undefined, Inputmask.keyCode.DELETE, pos, !0, !0),
  461. maskPos = getMaskSet().p), maskPos < getMaskSet().maskLength && (maxLength === undefined || maskPos < maxLength) && (result = _isValid(maskPos, c, strict),
  462. (!strict || !0 === fromSetValid) && !1 === result && !0 !== validateOnly)) {
  463. var currentPosValid = getMaskSet().validPositions[maskPos];
  464. if (!currentPosValid || null !== currentPosValid.match.fn || currentPosValid.match.def !== c && c !== opts.skipOptionalPartCharacter) {
  465. 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))) {
  466. !function(originalPos, newPos) {
  467. var vp = getMaskSet().validPositions[newPos];
  468. if (vp) for (var targetLocator = vp.locator, tll = targetLocator.length, ps = originalPos; ps < newPos; ps++) if (getMaskSet().validPositions[ps] === undefined && !isMask(ps, !0)) {
  469. var tests = getTests(ps).slice(), bestMatch = determineTestTemplate(tests, !0), equality = -1;
  470. "" === tests[tests.length - 1].match.def && tests.pop(), $.each(tests, function(ndx, tst) {
  471. for (var i = 0; i < tll; i++) {
  472. if (tst.locator[i] === undefined || !checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(","), tst.na)) {
  473. var targetAI = targetLocator[i], bestMatchAI = bestMatch.locator[i], tstAI = tst.locator[i];
  474. targetAI - bestMatchAI > Math.abs(targetAI - tstAI) && (bestMatch = tst);
  475. break;
  476. }
  477. equality < i && (equality = i, bestMatch = tst);
  478. }
  479. }), bestMatch = $.extend({}, bestMatch, {
  480. input: getPlaceholder(ps, bestMatch.match, !0) || bestMatch.match.def
  481. }), bestMatch.generatedInput = !0, setValidPosition(ps, bestMatch, !0), getMaskSet().validPositions[newPos] = undefined,
  482. _isValid(newPos, vp.input, !0);
  483. }
  484. }(maskPos, result.pos !== undefined ? result.pos : nPos), maskPos = nPos;
  485. break;
  486. }
  487. } else result = {
  488. caret: seekNext(maskPos)
  489. };
  490. }
  491. !1 === result && opts.keepStatic && !strict && !0 !== fromAlternate && (result = function(pos, c, strict) {
  492. var lastAlt, alternation, altPos, prevAltPos, i, validPos, altNdxs, decisionPos, validPsClone = $.extend(!0, {}, getMaskSet().validPositions), isValidRslt = !1, lAltPos = getLastValidPosition();
  493. for (prevAltPos = getMaskSet().validPositions[lAltPos]; lAltPos >= 0; lAltPos--) if ((altPos = getMaskSet().validPositions[lAltPos]) && altPos.alternation !== undefined) {
  494. if (lastAlt = lAltPos, alternation = getMaskSet().validPositions[lastAlt].alternation,
  495. prevAltPos.locator[altPos.alternation] !== altPos.locator[altPos.alternation]) break;
  496. prevAltPos = altPos;
  497. }
  498. if (alternation !== undefined) {
  499. decisionPos = parseInt(lastAlt);
  500. var decisionTaker = prevAltPos.locator[prevAltPos.alternation || alternation] !== undefined ? prevAltPos.locator[prevAltPos.alternation || alternation] : altNdxs[0];
  501. decisionTaker.length > 0 && (decisionTaker = decisionTaker.split(",")[0]);
  502. var possibilityPos = getMaskSet().validPositions[decisionPos], prevPos = getMaskSet().validPositions[decisionPos - 1];
  503. $.each(getTests(decisionPos, prevPos ? prevPos.locator : undefined, decisionPos - 1), function(ndx, test) {
  504. altNdxs = test.locator[alternation] ? test.locator[alternation].toString().split(",") : [];
  505. for (var mndx = 0; mndx < altNdxs.length; mndx++) {
  506. var validInputs = [], staticInputsBeforePos = 0, staticInputsBeforePosAlternate = 0, verifyValidInput = !1;
  507. if (decisionTaker < altNdxs[mndx] && (test.na === undefined || -1 === $.inArray(altNdxs[mndx], test.na.split(",")) || -1 === $.inArray(decisionTaker.toString(), altNdxs))) {
  508. getMaskSet().validPositions[decisionPos] = $.extend(!0, {}, test);
  509. var possibilities = getMaskSet().validPositions[decisionPos].locator;
  510. for (getMaskSet().validPositions[decisionPos].locator[alternation] = parseInt(altNdxs[mndx]),
  511. null == test.match.fn ? (possibilityPos.input !== test.match.def && (verifyValidInput = !0,
  512. !0 !== possibilityPos.generatedInput && validInputs.push(possibilityPos.input)),
  513. staticInputsBeforePosAlternate++, getMaskSet().validPositions[decisionPos].generatedInput = !/[0-9a-bA-Z]/.test(test.match.def),
  514. getMaskSet().validPositions[decisionPos].input = test.match.def) : getMaskSet().validPositions[decisionPos].input = possibilityPos.input,
  515. i = decisionPos + 1; i < getLastValidPosition(undefined, !0) + 1; i++) validPos = getMaskSet().validPositions[i],
  516. validPos && !0 !== validPos.generatedInput && /[0-9a-bA-Z]/.test(validPos.input) ? validInputs.push(validPos.input) : i < pos && staticInputsBeforePos++,
  517. delete getMaskSet().validPositions[i];
  518. for (verifyValidInput && validInputs[0] === test.match.def && validInputs.shift(),
  519. resetMaskSet(!0), isValidRslt = !0; validInputs.length > 0; ) {
  520. var input = validInputs.shift();
  521. if (input !== opts.skipOptionalPartCharacter && !(isValidRslt = isValid(getLastValidPosition(undefined, !0) + 1, input, !1, fromSetValid, !0))) break;
  522. }
  523. if (isValidRslt) {
  524. getMaskSet().validPositions[decisionPos].locator = possibilities;
  525. var targetLvp = getLastValidPosition(pos) + 1;
  526. for (i = decisionPos + 1; i < getLastValidPosition() + 1; i++) ((validPos = getMaskSet().validPositions[i]) === undefined || null == validPos.match.fn) && i < pos + (staticInputsBeforePosAlternate - staticInputsBeforePos) && staticInputsBeforePosAlternate++;
  527. pos += staticInputsBeforePosAlternate - staticInputsBeforePos, isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid, !0);
  528. }
  529. if (isValidRslt) return !1;
  530. resetMaskSet(), getMaskSet().validPositions = $.extend(!0, {}, validPsClone);
  531. }
  532. }
  533. });
  534. }
  535. return isValidRslt;
  536. }(maskPos, c, strict)), !0 === result && (result = {
  537. pos: maskPos
  538. });
  539. }
  540. if ($.isFunction(opts.postValidation) && !1 !== result && !strict && !0 !== fromSetValid && !0 !== validateOnly) {
  541. var postResult = opts.postValidation(getBuffer(!0), result, opts);
  542. if (postResult.refreshFromBuffer && postResult.buffer) {
  543. var refresh = postResult.refreshFromBuffer;
  544. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, postResult.buffer);
  545. }
  546. result = !0 === postResult ? result : postResult;
  547. }
  548. return result && result.pos === undefined && (result.pos = maskPos), !1 !== result && !0 !== validateOnly || (resetMaskSet(!0),
  549. getMaskSet().validPositions = $.extend(!0, {}, positionsClone)), result;
  550. }
  551. function isMask(pos, strict) {
  552. var test = getTestTemplate(pos).match;
  553. if ("" === test.def && (test = getTest(pos).match), null != test.fn) return test.fn;
  554. if (!0 !== strict && pos > -1) {
  555. var tests = getTests(pos);
  556. return tests.length > 1 + ("" === tests[tests.length - 1].match.def ? 1 : 0);
  557. }
  558. return !1;
  559. }
  560. function seekNext(pos, newBlock) {
  561. var maskL = getMaskSet().maskLength;
  562. if (pos >= maskL) return maskL;
  563. var position = pos;
  564. for (getTests(maskL + 1).length > 1 && (getMaskTemplate(!0, maskL + 1, !0), maskL = getMaskSet().maskLength); ++position < maskL && (!0 === newBlock && (!0 !== getTest(position).match.newBlockMarker || !isMask(position)) || !0 !== newBlock && !isMask(position)); ) ;
  565. return position;
  566. }
  567. function seekPrevious(pos, newBlock) {
  568. var tests, position = pos;
  569. if (position <= 0) return 0;
  570. for (;--position > 0 && (!0 === newBlock && !0 !== getTest(position).match.newBlockMarker || !0 !== newBlock && !isMask(position) && (tests = getTests(position),
  571. tests.length < 2 || 2 === tests.length && "" === tests[1].match.def)); ) ;
  572. return position;
  573. }
  574. function getBufferElement(position) {
  575. return getMaskSet().validPositions[position] === undefined ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
  576. }
  577. function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
  578. if (event && $.isFunction(opts.onBeforeWrite)) {
  579. var result = opts.onBeforeWrite.call(inputmask, event, buffer, caretPos, opts);
  580. if (result) {
  581. if (result.refreshFromBuffer) {
  582. var refresh = result.refreshFromBuffer;
  583. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, result.buffer || buffer),
  584. buffer = getBuffer(!0);
  585. }
  586. caretPos !== undefined && (caretPos = result.caret !== undefined ? result.caret : caretPos);
  587. }
  588. }
  589. input !== undefined && (input.inputmask._valueSet(buffer.join("")), caretPos === undefined || event !== undefined && "blur" === event.type ? renderColorMask(input, caretPos, 0 === buffer.length) : android && event && "input" === event.type ? setTimeout(function() {
  590. caret(input, caretPos);
  591. }, 0) : caret(input, caretPos), !0 === triggerInputEvent && (skipInputEvent = !0,
  592. $(input).trigger("input")));
  593. }
  594. function getPlaceholder(pos, test, returnPL) {
  595. if (test = test || getTest(pos).match, test.placeholder !== undefined || !0 === returnPL) return $.isFunction(test.placeholder) ? test.placeholder(opts) : test.placeholder;
  596. if (null === test.fn) {
  597. if (pos > -1 && getMaskSet().validPositions[pos] === undefined) {
  598. var prevTest, tests = getTests(pos), staticAlternations = [];
  599. 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]),
  600. 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);
  601. }
  602. return test.def;
  603. }
  604. return opts.placeholder.charAt(pos % opts.placeholder.length);
  605. }
  606. function checkVal(input, writeOut, strict, nptvl, initiatingEvent) {
  607. function isTemplateMatch(ndx, charCodes) {
  608. return -1 !== getBufferTemplate().slice(ndx, seekNext(ndx)).join("").indexOf(charCodes) && !isMask(ndx) && getTest(ndx).match.nativeDef === charCodes.charAt(charCodes.length - 1);
  609. }
  610. var inputValue = nptvl.slice(), charCodes = "", initialNdx = -1, result = undefined;
  611. if (resetMaskSet(), strict || !0 === opts.autoUnmask) initialNdx = seekNext(initialNdx); else {
  612. var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""), matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
  613. matches && matches.length > 0 && (inputValue.splice(0, matches.length * staticInput.length),
  614. initialNdx = seekNext(initialNdx));
  615. }
  616. if (-1 === initialNdx ? (getMaskSet().p = seekNext(initialNdx), initialNdx = 0) : getMaskSet().p = initialNdx,
  617. $.each(inputValue, function(ndx, charCode) {
  618. 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 {
  619. var keypress = new $.Event("_checkval");
  620. keypress.which = charCode.charCodeAt(0), charCodes += charCode;
  621. var lvp = getLastValidPosition(undefined, !0), lvTest = getMaskSet().validPositions[lvp], nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : undefined, lvp);
  622. if (!isTemplateMatch(initialNdx, charCodes) || strict || opts.autoUnmask) {
  623. var pos = strict ? ndx : null == nextTest.match.fn && nextTest.match.optionality && lvp + 1 < getMaskSet().p ? lvp + 1 : getMaskSet().p;
  624. result = EventHandlers.keypressEvent.call(input, keypress, !0, !1, strict, pos),
  625. initialNdx = pos + 1, charCodes = "";
  626. } else result = EventHandlers.keypressEvent.call(input, keypress, !0, !1, !0, lvp + 1);
  627. if (!1 !== result && !strict && $.isFunction(opts.onBeforeWrite)) {
  628. var origResult = result;
  629. if (result = opts.onBeforeWrite.call(inputmask, keypress, getBuffer(), result.forwardPosition, opts),
  630. (result = $.extend(origResult, result)) && result.refreshFromBuffer) {
  631. var refresh = result.refreshFromBuffer;
  632. refreshFromBuffer(!0 === refresh ? refresh : refresh.start, refresh.end, result.buffer),
  633. resetMaskSet(!0), result.caret && (getMaskSet().p = result.caret, result.forwardPosition = result.caret);
  634. }
  635. }
  636. }
  637. }), writeOut) {
  638. var caretPos = undefined;
  639. document.activeElement === input && result && (caretPos = opts.numericInput ? seekPrevious(result.forwardPosition) : result.forwardPosition),
  640. writeBuffer(input, getBuffer(), caretPos, initiatingEvent || new $.Event("checkval"), initiatingEvent && "input" === initiatingEvent.type);
  641. }
  642. }
  643. function unmaskedvalue(input) {
  644. if (input) {
  645. if (input.inputmask === undefined) return input.value;
  646. input.inputmask && input.inputmask.refreshValue && EventHandlers.setValueEvent.call(input);
  647. }
  648. var umValue = [], vps = getMaskSet().validPositions;
  649. for (var pndx in vps) vps[pndx].match && null != vps[pndx].match.fn && umValue.push(vps[pndx].input);
  650. var unmaskedValue = 0 === umValue.length ? "" : (isRTL ? umValue.reverse() : umValue).join("");
  651. if ($.isFunction(opts.onUnMask)) {
  652. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
  653. unmaskedValue = opts.onUnMask.call(inputmask, bufferValue, unmaskedValue, opts);
  654. }
  655. return unmaskedValue;
  656. }
  657. function caret(input, begin, end, notranslate) {
  658. function translatePosition(pos) {
  659. if (!0 !== notranslate && isRTL && "number" == typeof pos && (!opts.greedy || "" !== opts.placeholder)) {
  660. pos = getBuffer().join("").length - pos;
  661. }
  662. return pos;
  663. }
  664. var range;
  665. if (begin === undefined) return input.setSelectionRange ? (begin = input.selectionStart,
  666. end = input.selectionEnd) : window.getSelection ? (range = window.getSelection().getRangeAt(0),
  667. range.commonAncestorContainer.parentNode !== input && range.commonAncestorContainer !== input || (begin = range.startOffset,
  668. end = range.endOffset)) : document.selection && document.selection.createRange && (range = document.selection.createRange(),
  669. begin = 0 - range.duplicate().moveStart("character", -input.inputmask._valueGet().length),
  670. end = begin + range.text.length), {
  671. begin: translatePosition(begin),
  672. end: translatePosition(end)
  673. };
  674. if (begin.begin !== undefined && (end = begin.end, begin = begin.begin), "number" == typeof begin) {
  675. begin = translatePosition(begin), end = translatePosition(end), end = "number" == typeof end ? end : begin;
  676. var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
  677. if (input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0, mobile || !1 !== opts.insertMode || begin !== end || end++,
  678. input.setSelectionRange) input.selectionStart = begin, input.selectionEnd = end; else if (window.getSelection) {
  679. if (range = document.createRange(), input.firstChild === undefined || null === input.firstChild) {
  680. var textNode = document.createTextNode("");
  681. input.appendChild(textNode);
  682. }
  683. range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length),
  684. range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length),
  685. range.collapse(!0);
  686. var sel = window.getSelection();
  687. sel.removeAllRanges(), sel.addRange(range);
  688. } else input.createTextRange && (range = input.createTextRange(), range.collapse(!0),
  689. range.moveEnd("character", end), range.moveStart("character", begin), range.select());
  690. renderColorMask(input, {
  691. begin: begin,
  692. end: end
  693. });
  694. }
  695. }
  696. function determineLastRequiredPosition(returnDefinition) {
  697. var pos, testPos, buffer = getBuffer(), bl = buffer.length, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet().validPositions[lvp], ndxIntlzr = lvTest !== undefined ? lvTest.locator.slice() : undefined;
  698. for (pos = lvp + 1; pos < buffer.length; pos++) testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  699. ndxIntlzr = testPos.locator.slice(), positions[pos] = $.extend(!0, {}, testPos);
  700. var lvTestAlt = lvTest && lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation] : undefined;
  701. for (pos = bl - 1; pos > lvp && (testPos = positions[pos], (testPos.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--;
  702. return returnDefinition ? {
  703. l: bl,
  704. def: positions[bl] ? positions[bl].match : undefined
  705. } : bl;
  706. }
  707. function clearOptionalTail(buffer) {
  708. 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++;
  709. for (;(validPos = getMaskSet().validPositions[rl - 1]) && validPos && validPos.match.optionality && validPos.input === opts.skipOptionalPartCharacter; ) rl--;
  710. return buffer.splice(rl), buffer;
  711. }
  712. function isComplete(buffer) {
  713. if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
  714. if ("*" === opts.repeat) return undefined;
  715. var complete = !1, lrp = determineLastRequiredPosition(!0), aml = seekPrevious(lrp.l);
  716. if (lrp.def === undefined || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
  717. complete = !0;
  718. for (var i = 0; i <= aml; i++) {
  719. var test = getTestTemplate(i).match;
  720. if (null !== test.fn && getMaskSet().validPositions[i] === undefined && !0 !== test.optionality && !0 !== test.optionalQuantifier || null === test.fn && buffer[i] !== getPlaceholder(i, test)) {
  721. complete = !1;
  722. break;
  723. }
  724. }
  725. }
  726. return complete;
  727. }
  728. function handleRemove(input, k, pos, strict, fromIsValid) {
  729. if ((opts.numericInput || isRTL) && (k === Inputmask.keyCode.BACKSPACE ? k = Inputmask.keyCode.DELETE : k === Inputmask.keyCode.DELETE && (k = Inputmask.keyCode.BACKSPACE),
  730. isRTL)) {
  731. var pend = pos.end;
  732. pos.end = pos.begin, pos.begin = pend;
  733. }
  734. k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || !1 === opts.insertMode) ? (pos.begin = seekPrevious(pos.begin),
  735. getMaskSet().validPositions[pos.begin] !== undefined && getMaskSet().validPositions[pos.begin].input === opts.groupSeparator && pos.begin--) : k === Inputmask.keyCode.DELETE && pos.begin === pos.end && (pos.end = isMask(pos.end, !0) && getMaskSet().validPositions[pos.end] && getMaskSet().validPositions[pos.end].input !== opts.radixPoint ? pos.end + 1 : seekNext(pos.end) + 1,
  736. getMaskSet().validPositions[pos.begin] !== undefined && getMaskSet().validPositions[pos.begin].input === opts.groupSeparator && pos.end++),
  737. stripValidPositions(pos.begin, pos.end, !1, strict), !0 !== strict && function() {
  738. if (opts.keepStatic) {
  739. for (var validInputs = [], lastAlt = getLastValidPosition(-1, !0), positionsClone = $.extend(!0, {}, getMaskSet().validPositions), prevAltPos = getMaskSet().validPositions[lastAlt]; lastAlt >= 0; lastAlt--) {
  740. var altPos = getMaskSet().validPositions[lastAlt];
  741. if (altPos) {
  742. if (!0 !== altPos.generatedInput && /[0-9a-bA-Z]/.test(altPos.input) && validInputs.push(altPos.input),
  743. delete getMaskSet().validPositions[lastAlt], altPos.alternation !== undefined && altPos.locator[altPos.alternation] !== prevAltPos.locator[altPos.alternation]) break;
  744. prevAltPos = altPos;
  745. }
  746. }
  747. if (lastAlt > -1) for (getMaskSet().p = seekNext(getLastValidPosition(-1, !0)); validInputs.length > 0; ) {
  748. var keypress = new $.Event("keypress");
  749. keypress.which = validInputs.pop().charCodeAt(0), EventHandlers.keypressEvent.call(input, keypress, !0, !1, !1, getMaskSet().p);
  750. } else getMaskSet().validPositions = $.extend(!0, {}, positionsClone);
  751. }
  752. }();
  753. var lvp = getLastValidPosition(pos.begin, !0);
  754. if (lvp < pos.begin) getMaskSet().p = seekNext(lvp); else if (!0 !== strict && (getMaskSet().p = pos.begin,
  755. !0 !== fromIsValid)) for (;getMaskSet().p < lvp && getMaskSet().validPositions[getMaskSet().p] === undefined; ) getMaskSet().p++;
  756. }
  757. function initializeColorMask(input) {
  758. function findCaretPos(clientx) {
  759. var caretPos, e = document.createElement("span");
  760. for (var style in computedStyle) isNaN(style) && -1 !== style.indexOf("font") && (e.style[style] = computedStyle[style]);
  761. e.style.textTransform = computedStyle.textTransform, e.style.letterSpacing = computedStyle.letterSpacing,
  762. e.style.position = "absolute", e.style.height = "auto", e.style.width = "auto",
  763. e.style.visibility = "hidden", e.style.whiteSpace = "nowrap", document.body.appendChild(e);
  764. var itl, inputText = input.inputmask._valueGet(), previousWidth = 0;
  765. for (caretPos = 0, itl = inputText.length; caretPos <= itl; caretPos++) {
  766. if (e.innerHTML += inputText.charAt(caretPos) || "_", e.offsetWidth >= clientx) {
  767. var offset1 = clientx - previousWidth, offset2 = e.offsetWidth - clientx;
  768. e.innerHTML = inputText.charAt(caretPos), offset1 -= e.offsetWidth / 3, caretPos = offset1 < offset2 ? caretPos - 1 : caretPos;
  769. break;
  770. }
  771. previousWidth = e.offsetWidth;
  772. }
  773. return document.body.removeChild(e), caretPos;
  774. }
  775. function clickHandler(e) {
  776. return input.focus(), caret(input, findCaretPos(e.clientX)), EventHandlers.clickEvent.call(input, [ e ]);
  777. }
  778. var computedStyle = (input.ownerDocument.defaultView || window).getComputedStyle(input, null), template = document.createElement("div");
  779. colorMask = document.createElement("div"), colorMask.className = "im-colormask",
  780. input.parentNode.insertBefore(colorMask, input), input.parentNode.removeChild(input),
  781. colorMask.appendChild(input), colorMask.appendChild(template), $(input).on("click", clickHandler),
  782. $(template).on("click", clickHandler), $(input).on("keydown", function(e) {
  783. e.shiftKey || !1 === opts.insertMode || setTimeout(function() {
  784. renderColorMask(input);
  785. }, 0);
  786. });
  787. }
  788. function renderColorMask(input, caretPos, clear) {
  789. function handleStatic() {
  790. isStatic || null !== test.fn && testPos.input !== undefined ? isStatic && (null !== test.fn && testPos.input !== undefined || "" === test.def) && (isStatic = !1,
  791. maskTemplate += "</span>") : (isStatic = !0, maskTemplate += "<span class='im-static'>");
  792. }
  793. function handleCaret(force) {
  794. !0 !== force && pos !== caretPos.begin || document.activeElement !== input || (maskTemplate += "<span class='im-caret' style='border-right-width: 1px;border-right-style: solid;'></span>");
  795. }
  796. var test, testPos, ndxIntlzr, maskTemplate = "", isStatic = !1, pos = 0;
  797. if (colorMask !== undefined) {
  798. var buffer = getBuffer();
  799. if (caretPos === undefined ? caretPos = caret(input) : caretPos.begin === undefined && (caretPos = {
  800. begin: caretPos,
  801. end: caretPos
  802. }), !0 !== clear) {
  803. var lvp = getLastValidPosition();
  804. do {
  805. handleCaret(), getMaskSet().validPositions[pos] ? (testPos = getMaskSet().validPositions[pos],
  806. test = testPos.match, ndxIntlzr = testPos.locator.slice(), handleStatic(), maskTemplate += buffer[pos]) : (testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
  807. test = testPos.match, ndxIntlzr = testPos.locator.slice(), (!1 === opts.jitMasking || pos < lvp || "number" == typeof opts.jitMasking && isFinite(opts.jitMasking) && opts.jitMasking > pos) && (handleStatic(),
  808. maskTemplate += getPlaceholder(pos, test))), pos++;
  809. } while ((maxLength === undefined || pos < maxLength) && (null !== test.fn || "" !== test.def) || lvp > pos || isStatic);
  810. -1 === maskTemplate.indexOf("im-caret") && handleCaret(!0), isStatic && handleStatic();
  811. }
  812. var template = colorMask.getElementsByTagName("div")[0];
  813. template.innerHTML = maskTemplate, input.inputmask.positionColorMask(input, template);
  814. }
  815. }
  816. maskset = maskset || this.maskset, opts = opts || this.opts;
  817. var undoValue, $el, maxLength, colorMask, inputmask = this, el = this.el, isRTL = this.isRTL, skipKeyPressEvent = !1, skipInputEvent = !1, ignorable = !1, mouseEnter = !1, EventRuler = {
  818. on: function(input, eventName, eventHandler) {
  819. var ev = function(e) {
  820. if (this.inputmask === undefined && "FORM" !== this.nodeName) {
  821. var imOpts = $.data(this, "_inputmask_opts");
  822. imOpts ? new Inputmask(imOpts).mask(this) : EventRuler.off(this);
  823. } else {
  824. if ("setvalue" === e.type || "FORM" === this.nodeName || !(this.disabled || this.readOnly && !("keydown" === e.type && e.ctrlKey && 67 === e.keyCode || !1 === opts.tabThrough && e.keyCode === Inputmask.keyCode.TAB))) {
  825. switch (e.type) {
  826. case "input":
  827. if (!0 === skipInputEvent) return skipInputEvent = !1, e.preventDefault();
  828. break;
  829. case "keydown":
  830. skipKeyPressEvent = !1, skipInputEvent = !1;
  831. break;
  832. case "keypress":
  833. if (!0 === skipKeyPressEvent) return e.preventDefault();
  834. skipKeyPressEvent = !0;
  835. break;
  836. case "click":
  837. if (iemobile || iphone) {
  838. var that = this, args = arguments;
  839. return setTimeout(function() {
  840. eventHandler.apply(that, args);
  841. }, 0), !1;
  842. }
  843. }
  844. var returnVal = eventHandler.apply(this, arguments);
  845. return !1 === returnVal && (e.preventDefault(), e.stopPropagation()), returnVal;
  846. }
  847. e.preventDefault();
  848. }
  849. };
  850. input.inputmask.events[eventName] = input.inputmask.events[eventName] || [], input.inputmask.events[eventName].push(ev),
  851. -1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null != input.form && $(input.form).on(eventName, ev) : $(input).on(eventName, ev);
  852. },
  853. off: function(input, event) {
  854. if (input.inputmask && input.inputmask.events) {
  855. var events;
  856. event ? (events = [], events[event] = input.inputmask.events[event]) : events = input.inputmask.events,
  857. $.each(events, function(eventName, evArr) {
  858. for (;evArr.length > 0; ) {
  859. var ev = evArr.pop();
  860. -1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null != input.form && $(input.form).off(eventName, ev) : $(input).off(eventName, ev);
  861. }
  862. delete input.inputmask.events[eventName];
  863. });
  864. }
  865. }
  866. }, EventHandlers = {
  867. keydownEvent: function(e) {
  868. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  869. if (k === Inputmask.keyCode.BACKSPACE || k === Inputmask.keyCode.DELETE || iphone && k === Inputmask.keyCode.BACKSPACE_SAFARI || e.ctrlKey && k === Inputmask.keyCode.X && !function(eventName) {
  870. var el = document.createElement("input"), evName = "on" + eventName, isSupported = evName in el;
  871. return isSupported || (el.setAttribute(evName, "return;"), isSupported = "function" == typeof el[evName]),
  872. el = null, isSupported;
  873. }("cut")) e.preventDefault(), handleRemove(input, k, pos), writeBuffer(input, getBuffer(!0), getMaskSet().p, e, input.inputmask._valueGet() !== getBuffer().join("")),
  874. 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) {
  875. e.preventDefault();
  876. var caretPos = seekNext(getLastValidPosition());
  877. opts.insertMode || caretPos !== getMaskSet().maskLength || e.shiftKey || caretPos--,
  878. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, !0);
  879. } else k === Inputmask.keyCode.HOME && !e.shiftKey || k === Inputmask.keyCode.PAGE_UP ? (e.preventDefault(),
  880. 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("")),
  881. $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)),
  882. pos.end = seekPrevious(pos.begin, !0), pos.begin = seekPrevious(pos.end, !0)) : (pos.begin = seekNext(pos.begin, !0),
  883. pos.end = seekNext(pos.begin, !0), pos.end < getMaskSet().maskLength && pos.end--),
  884. pos.begin < getMaskSet().maskLength && (e.preventDefault(), caret(input, pos.begin, pos.end))) : e.shiftKey || !1 === opts.insertMode && (k === Inputmask.keyCode.RIGHT ? setTimeout(function() {
  885. var caretPos = caret(input);
  886. caret(input, caretPos.begin);
  887. }, 0) : k === Inputmask.keyCode.LEFT && setTimeout(function() {
  888. var caretPos = caret(input);
  889. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  890. }, 0)) : (opts.insertMode = !opts.insertMode, caret(input, opts.insertMode || pos.begin !== getMaskSet().maskLength ? pos.begin : pos.begin - 1));
  891. opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts), ignorable = -1 !== $.inArray(k, opts.ignorables);
  892. },
  893. keypressEvent: function(e, checkval, writeOut, strict, ndx) {
  894. var input = this, $input = $(input), k = e.which || e.charCode || e.keyCode;
  895. if (!(!0 === checkval || e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable)) return k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("") && (undoValue = getBuffer().join(""),
  896. setTimeout(function() {
  897. $input.trigger("change");
  898. }, 0)), !0;
  899. if (k) {
  900. 46 === k && !1 === e.shiftKey && "" !== opts.radixPoint && (k = opts.radixPoint.charCodeAt(0));
  901. var forwardPosition, pos = checkval ? {
  902. begin: ndx,
  903. end: ndx
  904. } : caret(input), c = String.fromCharCode(k);
  905. getMaskSet().writeOutBuffer = !0;
  906. var valResult = isValid(pos, c, strict);
  907. if (!1 !== valResult && (resetMaskSet(!0), forwardPosition = valResult.caret !== undefined ? valResult.caret : checkval ? valResult.pos + 1 : seekNext(valResult.pos),
  908. getMaskSet().p = forwardPosition), !1 !== writeOut && (setTimeout(function() {
  909. opts.onKeyValidation.call(input, k, valResult, opts);
  910. }, 0), getMaskSet().writeOutBuffer && !1 !== valResult)) {
  911. var buffer = getBuffer();
  912. writeBuffer(input, buffer, opts.numericInput && valResult.caret === undefined ? seekPrevious(forwardPosition) : forwardPosition, e, !0 !== checkval),
  913. !0 !== checkval && setTimeout(function() {
  914. !0 === isComplete(buffer) && $input.trigger("complete");
  915. }, 0);
  916. }
  917. if (e.preventDefault(), checkval) return !1 !== valResult && (valResult.forwardPosition = forwardPosition),
  918. valResult;
  919. }
  920. },
  921. pasteEvent: function(e) {
  922. var tempValue, input = this, ev = e.originalEvent || e, $input = $(input), inputValue = input.inputmask._valueGet(!0), caretPos = caret(input);
  923. isRTL && (tempValue = caretPos.end, caretPos.end = caretPos.begin, caretPos.begin = tempValue);
  924. var valueBeforeCaret = inputValue.substr(0, caretPos.begin), valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
  925. if (valueBeforeCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(0, caretPos.begin).join("") && (valueBeforeCaret = ""),
  926. valueAfterCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(caretPos.end).join("") && (valueAfterCaret = ""),
  927. isRTL && (tempValue = valueBeforeCaret, valueBeforeCaret = valueAfterCaret, valueAfterCaret = tempValue),
  928. window.clipboardData && window.clipboardData.getData) inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret; else {
  929. if (!ev.clipboardData || !ev.clipboardData.getData) return !0;
  930. inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret;
  931. }
  932. var pasteValue = inputValue;
  933. if ($.isFunction(opts.onBeforePaste)) {
  934. if (!1 === (pasteValue = opts.onBeforePaste.call(inputmask, inputValue, opts))) return e.preventDefault();
  935. pasteValue || (pasteValue = inputValue);
  936. }
  937. return checkVal(input, !1, !1, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split("")),
  938. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, undoValue !== getBuffer().join("")),
  939. !0 === isComplete(getBuffer()) && $input.trigger("complete"), e.preventDefault();
  940. },
  941. inputFallBackEvent: function(e) {
  942. var input = this, inputValue = input.inputmask._valueGet();
  943. if (getBuffer().join("") !== inputValue) {
  944. var caretPos = caret(input);
  945. if (!1 === function(input, inputValue, caretPos) {
  946. if ("." === inputValue.charAt(caretPos.begin - 1) && "" !== opts.radixPoint && (inputValue = inputValue.split(""),
  947. inputValue[caretPos.begin - 1] = opts.radixPoint.charAt(0), inputValue = inputValue.join("")),
  948. inputValue.charAt(caretPos.begin - 1) === opts.radixPoint && inputValue.length > getBuffer().length) {
  949. var keypress = new $.Event("keypress");
  950. return keypress.which = opts.radixPoint.charCodeAt(0), EventHandlers.keypressEvent.call(input, keypress, !0, !0, !1, caretPos.begin - 1),
  951. !1;
  952. }
  953. }(input, inputValue, caretPos)) return !1;
  954. if (inputValue = inputValue.replace(new RegExp("(" + Inputmask.escapeRegex(getBufferTemplate().join("")) + ")*"), ""),
  955. !1 === function(input, inputValue, caretPos) {
  956. if (iemobile) {
  957. var inputChar = inputValue.replace(getBuffer().join(""), "");
  958. if (1 === inputChar.length) {
  959. var keypress = new $.Event("keypress");
  960. return keypress.which = inputChar.charCodeAt(0), EventHandlers.keypressEvent.call(input, keypress, !0, !0, !1, getMaskSet().validPositions[caretPos.begin - 1] ? caretPos.begin : caretPos.begin - 1),
  961. !1;
  962. }
  963. }
  964. }(input, inputValue, caretPos)) return !1;
  965. caretPos.begin > inputValue.length && (caret(input, inputValue.length), caretPos = caret(input));
  966. var buffer = getBuffer().join(""), frontPart = inputValue.substr(0, caretPos.begin), backPart = inputValue.substr(caretPos.begin), frontBufferPart = buffer.substr(0, caretPos.begin), backBufferPart = buffer.substr(caretPos.begin), selection = caretPos, endOffset = 0;
  967. if (backPart === backBufferPart || frontPart === frontBufferPart) {
  968. if (selection = {
  969. begin: frontPart.length
  970. }, frontPart[frontPart.length - 1] !== frontBufferPart[frontBufferPart.length - 1] && (selection.begin--,
  971. endOffset++), backPart.length > backBufferPart.length) selection.end = selection.begin; else {
  972. var selectedPart = backBufferPart.replace(new RegExp(Inputmask.escapeRegex(backPart) + "$"), "");
  973. selection.end = selection.begin + selectedPart.length + endOffset;
  974. }
  975. selection.begin !== selection.end || isMask(selection.begin) || (selection.end = caretPos.end);
  976. }
  977. if (selection.begin < selection.end) writeBuffer(input, getBuffer(), selection),
  978. frontPart.split("")[frontPart.length - 1] !== frontBufferPart.split("")[frontBufferPart.length - 1] ? (e.which = frontPart.charCodeAt(frontPart.length - 1),
  979. ignorable = !1, EventHandlers.keypressEvent.call(input, e)) : (selection.begin === selection.end - 1 && caret(input, seekPrevious(selection.begin + 1), selection.end),
  980. e.keyCode = Inputmask.keyCode.DELETE, EventHandlers.keydownEvent.call(input, e)); else {
  981. if (-1 === getLastValidPosition()) {
  982. for (var bufferTemplate = getBufferTemplate().join(""); null === inputValue.match(Inputmask.escapeRegex(bufferTemplate) + "$"); ) bufferTemplate = bufferTemplate.slice(1);
  983. inputValue = inputValue.replace(bufferTemplate, "");
  984. }
  985. $.isFunction(opts.onBeforeMask) && (inputValue = opts.onBeforeMask.call(inputmask, inputValue, opts) || inputValue),
  986. checkVal(input, !0, !1, inputValue.split(""), e), function(input, frontPart, backPart) {
  987. var targetPos = caret(input).begin, currentValue = input.inputmask._valueGet(), pos = currentValue.indexOf(frontPart), currentPos = targetPos;
  988. if (0 === pos && targetPos !== frontPart.length) targetPos = frontPart.length; else {
  989. for (;null === currentValue.match(Inputmask.escapeRegex(backPart) + "$"); ) backPart = backPart.substr(1);
  990. var pos2 = currentValue.indexOf(backPart);
  991. -1 !== pos2 && "" !== backPart && targetPos > pos2 && pos2 > pos && (targetPos = pos2);
  992. }
  993. isMask(targetPos) || (targetPos = seekNext(targetPos)), currentPos !== targetPos && (caret(input, targetPos),
  994. android && setTimeout(function() {
  995. caret(input, targetPos);
  996. }, 0));
  997. }(input, frontPart, backPart), !0 === isComplete(getBuffer()) && $(input).trigger("complete");
  998. }
  999. e.preventDefault();
  1000. }
  1001. },
  1002. setValueEvent: function(e) {
  1003. this.inputmask.refreshValue = !1;
  1004. var input = this, value = input.inputmask._valueGet(!0);
  1005. $.isFunction(opts.onBeforeMask) && (value = opts.onBeforeMask.call(inputmask, value, opts) || value),
  1006. value = value.split(""), checkVal(input, !0, !1, isRTL ? value.reverse() : value),
  1007. undoValue = getBuffer().join(""), (opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("") && input.inputmask._valueSet("");
  1008. },
  1009. focusEvent: function(e) {
  1010. var input = this, nptValue = input.inputmask._valueGet();
  1011. opts.showMaskOnFocus && (!opts.showMaskOnHover || opts.showMaskOnHover && "" === nptValue) && (input.inputmask._valueGet() !== getBuffer().join("") ? writeBuffer(input, getBuffer(), seekNext(getLastValidPosition())) : !1 === mouseEnter && caret(input, seekNext(getLastValidPosition()))),
  1012. !0 === opts.positionCaretOnTab && !1 === mouseEnter && (writeBuffer(input, getBuffer(), caret(input)),
  1013. EventHandlers.clickEvent.apply(input, [ e, !0 ])), undoValue = getBuffer().join("");
  1014. },
  1015. mouseleaveEvent: function(e) {
  1016. var input = this;
  1017. if (mouseEnter = !1, opts.clearMaskOnLostFocus && document.activeElement !== input) {
  1018. var buffer = getBuffer().slice(), nptValue = input.inputmask._valueGet();
  1019. nptValue !== input.getAttribute("placeholder") && "" !== nptValue && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer),
  1020. writeBuffer(input, buffer));
  1021. }
  1022. },
  1023. clickEvent: function(e, tabbed) {
  1024. function doRadixFocus(clickPos) {
  1025. if ("" !== opts.radixPoint) {
  1026. var vps = getMaskSet().validPositions;
  1027. if (vps[clickPos] === undefined || vps[clickPos].input === getPlaceholder(clickPos)) {
  1028. if (clickPos < seekNext(-1)) return !0;
  1029. var radixPos = $.inArray(opts.radixPoint, getBuffer());
  1030. if (-1 !== radixPos) {
  1031. for (var vp in vps) if (radixPos < vp && vps[vp].input !== getPlaceholder(vp)) return !1;
  1032. return !0;
  1033. }
  1034. }
  1035. }
  1036. return !1;
  1037. }
  1038. var input = this;
  1039. setTimeout(function() {
  1040. if (document.activeElement === input) {
  1041. var selectedCaret = caret(input);
  1042. if (tabbed && (isRTL ? selectedCaret.end = selectedCaret.begin : selectedCaret.begin = selectedCaret.end),
  1043. selectedCaret.begin === selectedCaret.end) switch (opts.positionCaretOnClick) {
  1044. case "none":
  1045. break;
  1046. case "radixFocus":
  1047. if (doRadixFocus(selectedCaret.begin)) {
  1048. var radixPos = getBuffer().join("").indexOf(opts.radixPoint);
  1049. caret(input, opts.numericInput ? seekNext(radixPos) : radixPos);
  1050. break;
  1051. }
  1052. default:
  1053. var clickPosition = selectedCaret.begin, lvclickPosition = getLastValidPosition(clickPosition, !0), lastPosition = seekNext(lvclickPosition);
  1054. if (clickPosition < lastPosition) caret(input, isMask(clickPosition, !0) || isMask(clickPosition - 1, !0) ? clickPosition : seekNext(clickPosition)); else {
  1055. var lvp = getMaskSet().validPositions[lvclickPosition], tt = getTestTemplate(lastPosition, lvp ? lvp.match.locator : undefined, lvp), placeholder = getPlaceholder(lastPosition, tt.match);
  1056. if ("" !== placeholder && getBuffer()[lastPosition] !== placeholder && !0 !== tt.match.optionalQuantifier && !0 !== tt.match.newBlockMarker || !isMask(lastPosition, !0) && tt.match.def === placeholder) {
  1057. var newPos = seekNext(lastPosition);
  1058. (clickPosition >= newPos || clickPosition === lastPosition) && (lastPosition = newPos);
  1059. }
  1060. caret(input, lastPosition);
  1061. }
  1062. }
  1063. }
  1064. }, 0);
  1065. },
  1066. dblclickEvent: function(e) {
  1067. var input = this;
  1068. setTimeout(function() {
  1069. caret(input, 0, seekNext(getLastValidPosition()));
  1070. }, 0);
  1071. },
  1072. cutEvent: function(e) {
  1073. var input = this, $input = $(input), pos = caret(input), ev = e.originalEvent || e, clipboardData = window.clipboardData || ev.clipboardData, clipData = isRTL ? getBuffer().slice(pos.end, pos.begin) : getBuffer().slice(pos.begin, pos.end);
  1074. clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join("")),
  1075. document.execCommand && document.execCommand("copy"), handleRemove(input, Inputmask.keyCode.DELETE, pos),
  1076. writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join("")),
  1077. input.inputmask._valueGet() === getBufferTemplate().join("") && $input.trigger("cleared");
  1078. },
  1079. blurEvent: function(e) {
  1080. var $input = $(this), input = this;
  1081. if (input.inputmask) {
  1082. var nptValue = input.inputmask._valueGet(), buffer = getBuffer().slice();
  1083. "" !== nptValue && (opts.clearMaskOnLostFocus && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer)),
  1084. !1 === isComplete(buffer) && (setTimeout(function() {
  1085. $input.trigger("incomplete");
  1086. }, 0), opts.clearIncomplete && (resetMaskSet(), buffer = opts.clearMaskOnLostFocus ? [] : getBufferTemplate().slice())),
  1087. writeBuffer(input, buffer, undefined, e)), undoValue !== getBuffer().join("") && (undoValue = buffer.join(""),
  1088. $input.trigger("change"));
  1089. }
  1090. },
  1091. mouseenterEvent: function(e) {
  1092. var input = this;
  1093. mouseEnter = !0, document.activeElement !== input && opts.showMaskOnHover && input.inputmask._valueGet() !== getBuffer().join("") && writeBuffer(input, getBuffer());
  1094. },
  1095. submitEvent: function(e) {
  1096. undoValue !== getBuffer().join("") && $el.trigger("change"), opts.clearMaskOnLostFocus && -1 === getLastValidPosition() && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("") && el.inputmask._valueSet(""),
  1097. opts.removeMaskOnSubmit && (el.inputmask._valueSet(el.inputmask.unmaskedvalue(), !0),
  1098. setTimeout(function() {
  1099. writeBuffer(el, getBuffer());
  1100. }, 0));
  1101. },
  1102. resetEvent: function(e) {
  1103. el.inputmask.refreshValue = !0, setTimeout(function() {
  1104. $el.trigger("setvalue");
  1105. }, 0);
  1106. }
  1107. };
  1108. Inputmask.prototype.positionColorMask = function(input, template) {
  1109. template.style.left = input.offsetLeft + "px";
  1110. };
  1111. var valueBuffer;
  1112. if (actionObj !== undefined) switch (actionObj.action) {
  1113. case "isComplete":
  1114. return el = actionObj.el, isComplete(getBuffer());
  1115. case "unmaskedvalue":
  1116. return el !== undefined && actionObj.value === undefined || (valueBuffer = actionObj.value,
  1117. valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(inputmask, valueBuffer, opts) || valueBuffer : valueBuffer).split(""),
  1118. checkVal(undefined, !1, !1, isRTL ? valueBuffer.reverse() : valueBuffer), $.isFunction(opts.onBeforeWrite) && opts.onBeforeWrite.call(inputmask, undefined, getBuffer(), 0, opts)),
  1119. unmaskedvalue(el);
  1120. case "mask":
  1121. !function(elem) {
  1122. EventRuler.off(elem);
  1123. var isSupported = function(input, opts) {
  1124. var elementType = input.getAttribute("type"), isSupported = "INPUT" === input.tagName && -1 !== $.inArray(elementType, opts.supportsInputType) || input.isContentEditable || "TEXTAREA" === input.tagName;
  1125. if (!isSupported) if ("INPUT" === input.tagName) {
  1126. var el = document.createElement("input");
  1127. el.setAttribute("type", elementType), isSupported = "text" === el.type, el = null;
  1128. } else isSupported = "partial";
  1129. return !1 !== isSupported ? function(npt) {
  1130. function getter() {
  1131. 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);
  1132. }
  1133. function setter(value) {
  1134. valueSet.call(this, value), this.inputmask && $(this).trigger("setvalue");
  1135. }
  1136. var valueGet, valueSet;
  1137. if (!npt.inputmask.__valueGet) {
  1138. if (!0 !== opts.noValuePatching) {
  1139. if (Object.getOwnPropertyDescriptor) {
  1140. "function" != typeof Object.getPrototypeOf && (Object.getPrototypeOf = "object" === _typeof("test".__proto__) ? function(object) {
  1141. return object.__proto__;
  1142. } : function(object) {
  1143. return object.constructor.prototype;
  1144. });
  1145. var valueProperty = Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value") : undefined;
  1146. valueProperty && valueProperty.get && valueProperty.set ? (valueGet = valueProperty.get,
  1147. valueSet = valueProperty.set, Object.defineProperty(npt, "value", {
  1148. get: getter,
  1149. set: setter,
  1150. configurable: !0
  1151. })) : "INPUT" !== npt.tagName && (valueGet = function() {
  1152. return this.textContent;
  1153. }, valueSet = function(value) {
  1154. this.textContent = value;
  1155. }, Object.defineProperty(npt, "value", {
  1156. get: getter,
  1157. set: setter,
  1158. configurable: !0
  1159. }));
  1160. } else document.__lookupGetter__ && npt.__lookupGetter__("value") && (valueGet = npt.__lookupGetter__("value"),
  1161. valueSet = npt.__lookupSetter__("value"), npt.__defineGetter__("value", getter),
  1162. npt.__defineSetter__("value", setter));
  1163. npt.inputmask.__valueGet = valueGet, npt.inputmask.__valueSet = valueSet;
  1164. }
  1165. npt.inputmask._valueGet = function(overruleRTL) {
  1166. return isRTL && !0 !== overruleRTL ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
  1167. }, npt.inputmask._valueSet = function(value, overruleRTL) {
  1168. valueSet.call(this.el, null === value || value === undefined ? "" : !0 !== overruleRTL && isRTL ? value.split("").reverse().join("") : value);
  1169. }, valueGet === undefined && (valueGet = function() {
  1170. return this.value;
  1171. }, valueSet = function(value) {
  1172. this.value = value;
  1173. }, function(type) {
  1174. if ($.valHooks && ($.valHooks[type] === undefined || !0 !== $.valHooks[type].inputmaskpatch)) {
  1175. var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function(elem) {
  1176. return elem.value;
  1177. }, valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function(elem, value) {
  1178. return elem.value = value, elem;
  1179. };
  1180. $.valHooks[type] = {
  1181. get: function(elem) {
  1182. if (elem.inputmask) {
  1183. if (elem.inputmask.opts.autoUnmask) return elem.inputmask.unmaskedvalue();
  1184. var result = valhookGet(elem);
  1185. return -1 !== getLastValidPosition(undefined, undefined, elem.inputmask.maskset.validPositions) || !0 !== opts.nullable ? result : "";
  1186. }
  1187. return valhookGet(elem);
  1188. },
  1189. set: function(elem, value) {
  1190. var result, $elem = $(elem);
  1191. return result = valhookSet(elem, value), elem.inputmask && $elem.trigger("setvalue"),
  1192. result;
  1193. },
  1194. inputmaskpatch: !0
  1195. };
  1196. }
  1197. }(npt.type), function(npt) {
  1198. EventRuler.on(npt, "mouseenter", function(event) {
  1199. var $input = $(this);
  1200. this.inputmask._valueGet() !== getBuffer().join("") && $input.trigger("setvalue");
  1201. });
  1202. }(npt));
  1203. }
  1204. }(input) : input.inputmask = undefined, isSupported;
  1205. }(elem, opts);
  1206. if (!1 !== isSupported && (el = elem, $el = $(el), maxLength = el !== undefined ? el.maxLength : undefined,
  1207. -1 === maxLength && (maxLength = undefined), !0 === opts.colorMask && initializeColorMask(el),
  1208. android && (el.hasOwnProperty("inputmode") && (el.inputmode = opts.inputmode, el.setAttribute("inputmode", opts.inputmode)),
  1209. "rtfm" === opts.androidHack && (!0 !== opts.colorMask && initializeColorMask(el),
  1210. el.type = "password")), !0 === isSupported && (EventRuler.on(el, "submit", EventHandlers.submitEvent),
  1211. EventRuler.on(el, "reset", EventHandlers.resetEvent), EventRuler.on(el, "mouseenter", EventHandlers.mouseenterEvent),
  1212. EventRuler.on(el, "blur", EventHandlers.blurEvent), EventRuler.on(el, "focus", EventHandlers.focusEvent),
  1213. EventRuler.on(el, "mouseleave", EventHandlers.mouseleaveEvent), !0 !== opts.colorMask && EventRuler.on(el, "click", EventHandlers.clickEvent),
  1214. EventRuler.on(el, "dblclick", EventHandlers.dblclickEvent), EventRuler.on(el, "paste", EventHandlers.pasteEvent),
  1215. EventRuler.on(el, "dragdrop", EventHandlers.pasteEvent), EventRuler.on(el, "drop", EventHandlers.pasteEvent),
  1216. EventRuler.on(el, "cut", EventHandlers.cutEvent), EventRuler.on(el, "complete", opts.oncomplete),
  1217. EventRuler.on(el, "incomplete", opts.onincomplete), EventRuler.on(el, "cleared", opts.oncleared),
  1218. android || !0 === opts.inputEventOnly ? el.removeAttribute("maxLength") : (EventRuler.on(el, "keydown", EventHandlers.keydownEvent),
  1219. EventRuler.on(el, "keypress", EventHandlers.keypressEvent)), EventRuler.on(el, "compositionstart", $.noop),
  1220. EventRuler.on(el, "compositionupdate", $.noop), EventRuler.on(el, "compositionend", $.noop),
  1221. EventRuler.on(el, "keyup", $.noop), EventRuler.on(el, "input", EventHandlers.inputFallBackEvent),
  1222. EventRuler.on(el, "beforeinput", $.noop)), EventRuler.on(el, "setvalue", EventHandlers.setValueEvent),
  1223. undoValue = getBufferTemplate().join(""), "" !== el.inputmask._valueGet(!0) || !1 === opts.clearMaskOnLostFocus || document.activeElement === el)) {
  1224. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(inputmask, el.inputmask._valueGet(!0), opts) || el.inputmask._valueGet(!0) : el.inputmask._valueGet(!0);
  1225. "" !== initialValue && checkVal(el, !0, !1, isRTL ? initialValue.split("").reverse() : initialValue.split(""));
  1226. var buffer = getBuffer().slice();
  1227. undoValue = buffer.join(""), !1 === isComplete(buffer) && opts.clearIncomplete && resetMaskSet(),
  1228. opts.clearMaskOnLostFocus && document.activeElement !== el && (-1 === getLastValidPosition() ? buffer = [] : clearOptionalTail(buffer)),
  1229. writeBuffer(el, buffer), document.activeElement === el && caret(el, seekNext(getLastValidPosition()));
  1230. }
  1231. }(el);
  1232. break;
  1233. case "format":
  1234. return valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(inputmask, actionObj.value, opts) || actionObj.value : actionObj.value).split(""),
  1235. checkVal(undefined, !0, !1, isRTL ? valueBuffer.reverse() : valueBuffer), actionObj.metadata ? {
  1236. value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
  1237. metadata: maskScope.call(this, {
  1238. action: "getmetadata"
  1239. }, maskset, opts)
  1240. } : isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
  1241. case "isValid":
  1242. actionObj.value ? (valueBuffer = actionObj.value.split(""), checkVal(undefined, !0, !0, isRTL ? valueBuffer.reverse() : valueBuffer)) : actionObj.value = getBuffer().join("");
  1243. for (var buffer = getBuffer(), rl = determineLastRequiredPosition(), lmib = buffer.length - 1; lmib > rl && !isMask(lmib); lmib--) ;
  1244. return buffer.splice(rl, lmib + 1 - rl), isComplete(buffer) && actionObj.value === getBuffer().join("");
  1245. case "getemptymask":
  1246. return getBufferTemplate().join("");
  1247. case "remove":
  1248. if (el && el.inputmask) {
  1249. $el = $(el), el.inputmask._valueSet(opts.autoUnmask ? unmaskedvalue(el) : el.inputmask._valueGet(!0)),
  1250. EventRuler.off(el);
  1251. Object.getOwnPropertyDescriptor && Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value") && el.inputmask.__valueGet && Object.defineProperty(el, "value", {
  1252. get: el.inputmask.__valueGet,
  1253. set: el.inputmask.__valueSet,
  1254. configurable: !0
  1255. }) : document.__lookupGetter__ && el.__lookupGetter__("value") && el.inputmask.__valueGet && (el.__defineGetter__("value", el.inputmask.__valueGet),
  1256. el.__defineSetter__("value", el.inputmask.__valueSet)), el.inputmask = undefined;
  1257. }
  1258. return el;
  1259. case "getmetadata":
  1260. if ($.isArray(maskset.metadata)) {
  1261. var maskTarget = getMaskTemplate(!0, 0, !1).join("");
  1262. return $.each(maskset.metadata, function(ndx, mtdt) {
  1263. if (mtdt.mask === maskTarget) return maskTarget = mtdt, !1;
  1264. }), maskTarget;
  1265. }
  1266. return maskset.metadata;
  1267. }
  1268. }
  1269. var ua = navigator.userAgent, mobile = /mobile/i.test(ua), iemobile = /iemobile/i.test(ua), iphone = /iphone/i.test(ua) && !iemobile, android = /android/i.test(ua) && !iemobile;
  1270. return Inputmask.prototype = {
  1271. dataAttribute: "data-inputmask",
  1272. defaults: {
  1273. placeholder: "_",
  1274. optionalmarker: {
  1275. start: "[",
  1276. end: "]"
  1277. },
  1278. quantifiermarker: {
  1279. start: "{",
  1280. end: "}"
  1281. },
  1282. groupmarker: {
  1283. start: "(",
  1284. end: ")"
  1285. },
  1286. alternatormarker: "|",
  1287. escapeChar: "\\",
  1288. mask: null,
  1289. regex: null,
  1290. oncomplete: $.noop,
  1291. onincomplete: $.noop,
  1292. oncleared: $.noop,
  1293. repeat: 0,
  1294. greedy: !0,
  1295. autoUnmask: !1,
  1296. removeMaskOnSubmit: !1,
  1297. clearMaskOnLostFocus: !0,
  1298. insertMode: !0,
  1299. clearIncomplete: !1,
  1300. alias: null,
  1301. onKeyDown: $.noop,
  1302. onBeforeMask: null,
  1303. onBeforePaste: function(pastedValue, opts) {
  1304. return $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(this, pastedValue, opts) : pastedValue;
  1305. },
  1306. onBeforeWrite: null,
  1307. onUnMask: null,
  1308. showMaskOnFocus: !0,
  1309. showMaskOnHover: !0,
  1310. onKeyValidation: $.noop,
  1311. skipOptionalPartCharacter: " ",
  1312. numericInput: !1,
  1313. rightAlign: !1,
  1314. undoOnEscape: !0,
  1315. radixPoint: "",
  1316. radixPointDefinitionSymbol: undefined,
  1317. groupSeparator: "",
  1318. keepStatic: null,
  1319. positionCaretOnTab: !0,
  1320. tabThrough: !1,
  1321. supportsInputType: [ "text", "tel", "password" ],
  1322. 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 ],
  1323. isComplete: null,
  1324. canClearPosition: $.noop,
  1325. preValidation: null,
  1326. postValidation: null,
  1327. staticDefinitionSymbol: undefined,
  1328. jitMasking: !1,
  1329. nullable: !0,
  1330. inputEventOnly: !1,
  1331. noValuePatching: !1,
  1332. positionCaretOnClick: "lvp",
  1333. casing: null,
  1334. inputmode: "verbatim",
  1335. colorMask: !1,
  1336. androidHack: !1,
  1337. importDataAttributes: !0
  1338. },
  1339. definitions: {
  1340. "9": {
  1341. validator: "[0-9]",
  1342. cardinality: 1,
  1343. definitionSymbol: "*"
  1344. },
  1345. a: {
  1346. validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
  1347. cardinality: 1,
  1348. definitionSymbol: "*"
  1349. },
  1350. "*": {
  1351. validator: "[0-9A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
  1352. cardinality: 1
  1353. }
  1354. },
  1355. aliases: {},
  1356. masksCache: {},
  1357. mask: function(elems) {
  1358. function importAttributeOptions(npt, opts, userOptions, dataAttribute) {
  1359. if (!0 === opts.importDataAttributes) {
  1360. var option, dataoptions, optionData, p, importOption = function(option, optionData) {
  1361. 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)),
  1362. userOptions[option] = optionData);
  1363. }, attrOptions = npt.getAttribute(dataAttribute);
  1364. if (attrOptions && "" !== attrOptions && (attrOptions = attrOptions.replace(new RegExp("'", "g"), '"'),
  1365. dataoptions = JSON.parse("{" + attrOptions + "}")), dataoptions) {
  1366. optionData = undefined;
  1367. for (p in dataoptions) if ("alias" === p.toLowerCase()) {
  1368. optionData = dataoptions[p];
  1369. break;
  1370. }
  1371. }
  1372. importOption("alias", optionData), userOptions.alias && resolveAlias(userOptions.alias, userOptions, opts);
  1373. for (option in opts) {
  1374. if (dataoptions) {
  1375. optionData = undefined;
  1376. for (p in dataoptions) if (p.toLowerCase() === option.toLowerCase()) {
  1377. optionData = dataoptions[p];
  1378. break;
  1379. }
  1380. }
  1381. importOption(option, optionData);
  1382. }
  1383. }
  1384. return $.extend(!0, opts, userOptions), ("rtl" === npt.dir || opts.rightAlign) && (npt.style.textAlign = "right"),
  1385. ("rtl" === npt.dir || opts.numericInput) && (npt.dir = "ltr", npt.removeAttribute("dir"),
  1386. opts.isRTL = !0), opts;
  1387. }
  1388. var that = this;
  1389. return "string" == typeof elems && (elems = document.getElementById(elems) || document.querySelectorAll(elems)),
  1390. elems = elems.nodeName ? [ elems ] : elems, $.each(elems, function(ndx, el) {
  1391. var scopedOpts = $.extend(!0, {}, that.opts);
  1392. importAttributeOptions(el, scopedOpts, $.extend(!0, {}, that.userOptions), that.dataAttribute);
  1393. var maskset = generateMaskSet(scopedOpts, that.noMasksCache);
  1394. maskset !== undefined && (el.inputmask !== undefined && el.inputmask.remove(), el.inputmask = new Inputmask(undefined, undefined, !0),
  1395. el.inputmask.opts = scopedOpts, el.inputmask.noMasksCache = that.noMasksCache, el.inputmask.userOptions = $.extend(!0, {}, that.userOptions),
  1396. el.inputmask.isRTL = scopedOpts.isRTL || scopedOpts.numericInput, el.inputmask.el = el,
  1397. el.inputmask.maskset = maskset, $.data(el, "_inputmask_opts", scopedOpts), maskScope.call(el.inputmask, {
  1398. action: "mask"
  1399. }));
  1400. }), elems && elems[0] ? elems[0].inputmask || this : this;
  1401. },
  1402. option: function(options, noremask) {
  1403. return "string" == typeof options ? this.opts[options] : "object" === (void 0 === options ? "undefined" : _typeof(options)) ? ($.extend(this.userOptions, options),
  1404. this.el && !0 !== noremask && this.mask(this.el), this) : void 0;
  1405. },
  1406. unmaskedvalue: function(value) {
  1407. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1408. maskScope.call(this, {
  1409. action: "unmaskedvalue",
  1410. value: value
  1411. });
  1412. },
  1413. remove: function() {
  1414. return maskScope.call(this, {
  1415. action: "remove"
  1416. });
  1417. },
  1418. getemptymask: function() {
  1419. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1420. maskScope.call(this, {
  1421. action: "getemptymask"
  1422. });
  1423. },
  1424. hasMaskedValue: function() {
  1425. return !this.opts.autoUnmask;
  1426. },
  1427. isComplete: function() {
  1428. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1429. maskScope.call(this, {
  1430. action: "isComplete"
  1431. });
  1432. },
  1433. getmetadata: function() {
  1434. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1435. maskScope.call(this, {
  1436. action: "getmetadata"
  1437. });
  1438. },
  1439. isValid: function(value) {
  1440. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1441. maskScope.call(this, {
  1442. action: "isValid",
  1443. value: value
  1444. });
  1445. },
  1446. format: function(value, metadata) {
  1447. return this.maskset = this.maskset || generateMaskSet(this.opts, this.noMasksCache),
  1448. maskScope.call(this, {
  1449. action: "format",
  1450. value: value,
  1451. metadata: metadata
  1452. });
  1453. },
  1454. analyseMask: function(mask, regexMask, opts) {
  1455. function MaskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  1456. this.matches = [], this.openGroup = isGroup || !1, this.alternatorGroup = !1, this.isGroup = isGroup || !1,
  1457. this.isOptional = isOptional || !1, this.isQuantifier = isQuantifier || !1, this.isAlternator = isAlternator || !1,
  1458. this.quantifier = {
  1459. min: 1,
  1460. max: 1
  1461. };
  1462. }
  1463. function insertTestDefinition(mtoken, element, position) {
  1464. position = position !== undefined ? position : mtoken.matches.length;
  1465. var prevMatch = mtoken.matches[position - 1];
  1466. if (regexMask) 0 === element.indexOf("[") || escaped ? mtoken.matches.splice(position++, 0, {
  1467. fn: new RegExp(element, opts.casing ? "i" : ""),
  1468. cardinality: 1,
  1469. optionality: mtoken.isOptional,
  1470. newBlockMarker: prevMatch === undefined || prevMatch.def !== element,
  1471. casing: null,
  1472. def: element,
  1473. placeholder: undefined,
  1474. nativeDef: element
  1475. }) : $.each(element.split(""), function(ndx, lmnt) {
  1476. prevMatch = mtoken.matches[position - 1], mtoken.matches.splice(position++, 0, {
  1477. fn: null,
  1478. cardinality: 0,
  1479. optionality: mtoken.isOptional,
  1480. newBlockMarker: prevMatch === undefined || prevMatch.def !== lmnt && null !== prevMatch.fn,
  1481. casing: null,
  1482. def: opts.staticDefinitionSymbol || lmnt,
  1483. placeholder: opts.staticDefinitionSymbol !== undefined ? lmnt : undefined,
  1484. nativeDef: lmnt
  1485. });
  1486. }), escaped = !1; else {
  1487. var maskdef = (opts.definitions ? opts.definitions[element] : undefined) || Inputmask.prototype.definitions[element];
  1488. if (maskdef && !escaped) {
  1489. for (var prevalidators = maskdef.prevalidator, prevalidatorsL = prevalidators ? prevalidators.length : 0, i = 1; i < maskdef.cardinality; i++) {
  1490. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator.validator, cardinality = prevalidator.cardinality;
  1491. mtoken.matches.splice(position++, 0, {
  1492. fn: validator ? "string" == typeof validator ? new RegExp(validator, opts.casing ? "i" : "") : new function() {
  1493. this.test = validator;
  1494. }() : new RegExp("."),
  1495. cardinality: cardinality || 1,
  1496. optionality: mtoken.isOptional,
  1497. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  1498. casing: maskdef.casing,
  1499. def: maskdef.definitionSymbol || element,
  1500. placeholder: maskdef.placeholder,
  1501. nativeDef: element
  1502. }), prevMatch = mtoken.matches[position - 1];
  1503. }
  1504. mtoken.matches.splice(position++, 0, {
  1505. fn: maskdef.validator ? "string" == typeof maskdef.validator ? new RegExp(maskdef.validator, opts.casing ? "i" : "") : new function() {
  1506. this.test = maskdef.validator;
  1507. }() : new RegExp("."),
  1508. cardinality: maskdef.cardinality,
  1509. optionality: mtoken.isOptional,
  1510. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  1511. casing: maskdef.casing,
  1512. def: maskdef.definitionSymbol || element,
  1513. placeholder: maskdef.placeholder,
  1514. nativeDef: element
  1515. });
  1516. } else mtoken.matches.splice(position++, 0, {
  1517. fn: null,
  1518. cardinality: 0,
  1519. optionality: mtoken.isOptional,
  1520. newBlockMarker: prevMatch === undefined || prevMatch.def !== element && null !== prevMatch.fn,
  1521. casing: null,
  1522. def: opts.staticDefinitionSymbol || element,
  1523. placeholder: opts.staticDefinitionSymbol !== undefined ? element : undefined,
  1524. nativeDef: element
  1525. }), escaped = !1;
  1526. }
  1527. }
  1528. function verifyGroupMarker(maskToken) {
  1529. maskToken && maskToken.matches && $.each(maskToken.matches, function(ndx, token) {
  1530. var nextToken = maskToken.matches[ndx + 1];
  1531. (nextToken === undefined || nextToken.matches === undefined || !1 === nextToken.isQuantifier) && token && token.isGroup && (token.isGroup = !1,
  1532. regexMask || (insertTestDefinition(token, opts.groupmarker.start, 0), !0 !== token.openGroup && insertTestDefinition(token, opts.groupmarker.end))),
  1533. verifyGroupMarker(token);
  1534. });
  1535. }
  1536. function defaultCase() {
  1537. if (openenings.length > 0) {
  1538. if (currentOpeningToken = openenings[openenings.length - 1], insertTestDefinition(currentOpeningToken, m),
  1539. currentOpeningToken.isAlternator) {
  1540. alternator = openenings.pop();
  1541. for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
  1542. openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
  1543. currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
  1544. }
  1545. } else insertTestDefinition(currentToken, m);
  1546. }
  1547. function reverseTokens(maskToken) {
  1548. maskToken.matches = maskToken.matches.reverse();
  1549. for (var match in maskToken.matches) if (maskToken.matches.hasOwnProperty(match)) {
  1550. var intMatch = parseInt(match);
  1551. if (maskToken.matches[match].isQuantifier && maskToken.matches[intMatch + 1] && maskToken.matches[intMatch + 1].isGroup) {
  1552. var qt = maskToken.matches[match];
  1553. maskToken.matches.splice(match, 1), maskToken.matches.splice(intMatch + 1, 0, qt);
  1554. }
  1555. maskToken.matches[match].matches !== undefined ? maskToken.matches[match] = reverseTokens(maskToken.matches[match]) : maskToken.matches[match] = function(st) {
  1556. return st === opts.optionalmarker.start ? st = opts.optionalmarker.end : st === opts.optionalmarker.end ? st = opts.optionalmarker.start : st === opts.groupmarker.start ? st = opts.groupmarker.end : st === opts.groupmarker.end && (st = opts.groupmarker.start),
  1557. st;
  1558. }(maskToken.matches[match]);
  1559. }
  1560. return maskToken;
  1561. }
  1562. var match, m, openingToken, currentOpeningToken, alternator, lastMatch, groupToken, tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})|[^.?*+^${[]()|\\]+|./g, regexTokenizer = /\[\^?]?(?:[^\\\]]+|\\[\S\s]?)*]?|\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9][0-9]*|x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4}|c[A-Za-z]|[\S\s]?)|\((?:\?[:=!]?)?|(?:[?*+]|\{[0-9]+(?:,[0-9]*)?\})\??|[^.?*+^${[()|\\]+|./g, escaped = !1, currentToken = new MaskToken(), openenings = [], maskTokens = [];
  1563. for (regexMask && (opts.optionalmarker.start = undefined, opts.optionalmarker.end = undefined); match = regexMask ? regexTokenizer.exec(mask) : tokenizer.exec(mask); ) {
  1564. if (m = match[0], regexMask && !0 !== escaped) switch (m.charAt(0)) {
  1565. case "?":
  1566. m = "{0,1}";
  1567. break;
  1568. case "+":
  1569. case "*":
  1570. m = "{" + m + "}";
  1571. }
  1572. if (escaped) defaultCase(); else switch (m.charAt(0)) {
  1573. case opts.escapeChar:
  1574. escaped = !0, regexMask && defaultCase();
  1575. break;
  1576. case opts.optionalmarker.end:
  1577. case opts.groupmarker.end:
  1578. if (openingToken = openenings.pop(), openingToken.openGroup = !1, openingToken !== undefined) if (openenings.length > 0) {
  1579. if (currentOpeningToken = openenings[openenings.length - 1], currentOpeningToken.matches.push(openingToken),
  1580. currentOpeningToken.isAlternator) {
  1581. alternator = openenings.pop();
  1582. for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1,
  1583. alternator.matches[mndx].alternatorGroup = !1;
  1584. openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
  1585. currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
  1586. }
  1587. } else currentToken.matches.push(openingToken); else defaultCase();
  1588. break;
  1589. case opts.optionalmarker.start:
  1590. openenings.push(new MaskToken(!1, !0));
  1591. break;
  1592. case opts.groupmarker.start:
  1593. openenings.push(new MaskToken(!0));
  1594. break;
  1595. case opts.quantifiermarker.start:
  1596. var quantifier = new MaskToken(!1, !1, !0);
  1597. m = m.replace(/[{}]/g, "");
  1598. var mq = m.split(","), mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]), mq1 = 1 === mq.length ? mq0 : isNaN(mq[1]) ? mq[1] : parseInt(mq[1]);
  1599. if ("*" !== mq1 && "+" !== mq1 || (mq0 = "*" === mq1 ? 0 : 1), quantifier.quantifier = {
  1600. min: mq0,
  1601. max: mq1
  1602. }, openenings.length > 0) {
  1603. var matches = openenings[openenings.length - 1].matches;
  1604. match = matches.pop(), match.isGroup || (groupToken = new MaskToken(!0), groupToken.matches.push(match),
  1605. match = groupToken), matches.push(match), matches.push(quantifier);
  1606. } else match = currentToken.matches.pop(), match.isGroup || (regexMask && null === match.fn && "." === match.def && (match.fn = new RegExp(match.def, opts.casing ? "i" : "")),
  1607. groupToken = new MaskToken(!0), groupToken.matches.push(match), match = groupToken),
  1608. currentToken.matches.push(match), currentToken.matches.push(quantifier);
  1609. break;
  1610. case opts.alternatormarker:
  1611. if (openenings.length > 0) {
  1612. currentOpeningToken = openenings[openenings.length - 1];
  1613. var subToken = currentOpeningToken.matches[currentOpeningToken.matches.length - 1];
  1614. lastMatch = currentOpeningToken.openGroup && (subToken.matches === undefined || !1 === subToken.isGroup && !1 === subToken.isAlternator) ? openenings.pop() : currentOpeningToken.matches.pop();
  1615. } else lastMatch = currentToken.matches.pop();
  1616. if (lastMatch.isAlternator) openenings.push(lastMatch); else if (lastMatch.alternatorGroup ? (alternator = openenings.pop(),
  1617. lastMatch.alternatorGroup = !1) : alternator = new MaskToken(!1, !1, !1, !0), alternator.matches.push(lastMatch),
  1618. openenings.push(alternator), lastMatch.openGroup) {
  1619. lastMatch.openGroup = !1;
  1620. var alternatorGroup = new MaskToken(!0);
  1621. alternatorGroup.alternatorGroup = !0, openenings.push(alternatorGroup);
  1622. }
  1623. break;
  1624. default:
  1625. defaultCase();
  1626. }
  1627. }
  1628. for (;openenings.length > 0; ) openingToken = openenings.pop(), currentToken.matches.push(openingToken);
  1629. return currentToken.matches.length > 0 && (verifyGroupMarker(currentToken), maskTokens.push(currentToken)),
  1630. (opts.numericInput || opts.isRTL) && reverseTokens(maskTokens[0]), maskTokens;
  1631. }
  1632. }, Inputmask.extendDefaults = function(options) {
  1633. $.extend(!0, Inputmask.prototype.defaults, options);
  1634. }, Inputmask.extendDefinitions = function(definition) {
  1635. $.extend(!0, Inputmask.prototype.definitions, definition);
  1636. }, Inputmask.extendAliases = function(alias) {
  1637. $.extend(!0, Inputmask.prototype.aliases, alias);
  1638. }, Inputmask.format = function(value, options, metadata) {
  1639. return Inputmask(options).format(value, metadata);
  1640. }, Inputmask.unmask = function(value, options) {
  1641. return Inputmask(options).unmaskedvalue(value);
  1642. }, Inputmask.isValid = function(value, options) {
  1643. return Inputmask(options).isValid(value);
  1644. }, Inputmask.remove = function(elems) {
  1645. $.each(elems, function(ndx, el) {
  1646. el.inputmask && el.inputmask.remove();
  1647. });
  1648. }, Inputmask.escapeRegex = function(str) {
  1649. var specials = [ "/", ".", "*", "+", "?", "|", "(", ")", "[", "]", "{", "}", "\\", "$", "^" ];
  1650. return str.replace(new RegExp("(\\" + specials.join("|\\") + ")", "gim"), "\\$1");
  1651. }, Inputmask.keyCode = {
  1652. ALT: 18,
  1653. BACKSPACE: 8,
  1654. BACKSPACE_SAFARI: 127,
  1655. CAPS_LOCK: 20,
  1656. COMMA: 188,
  1657. COMMAND: 91,
  1658. COMMAND_LEFT: 91,
  1659. COMMAND_RIGHT: 93,
  1660. CONTROL: 17,
  1661. DELETE: 46,
  1662. DOWN: 40,
  1663. END: 35,
  1664. ENTER: 13,
  1665. ESCAPE: 27,
  1666. HOME: 36,
  1667. INSERT: 45,
  1668. LEFT: 37,
  1669. MENU: 93,
  1670. NUMPAD_ADD: 107,
  1671. NUMPAD_DECIMAL: 110,
  1672. NUMPAD_DIVIDE: 111,
  1673. NUMPAD_ENTER: 108,
  1674. NUMPAD_MULTIPLY: 106,
  1675. NUMPAD_SUBTRACT: 109,
  1676. PAGE_DOWN: 34,
  1677. PAGE_UP: 33,
  1678. PERIOD: 190,
  1679. RIGHT: 39,
  1680. SHIFT: 16,
  1681. SPACE: 32,
  1682. TAB: 9,
  1683. UP: 38,
  1684. WINDOWS: 91,
  1685. X: 88
  1686. }, Inputmask;
  1687. });
  1688. }, function(module, exports) {
  1689. module.exports = jQuery;
  1690. }, function(module, exports, __webpack_require__) {
  1691. "use strict";
  1692. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  1693. "function" == typeof Symbol && Symbol.iterator;
  1694. !function(factory) {
  1695. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  1696. __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  1697. }(function($, Inputmask) {
  1698. function isLeapYear(year) {
  1699. return isNaN(year) || 29 === new Date(year, 2, 0).getDate();
  1700. }
  1701. return Inputmask.extendAliases({
  1702. "dd/mm/yyyy": {
  1703. mask: "1/2/y",
  1704. placeholder: "dd/mm/yyyy",
  1705. regex: {
  1706. val1pre: new RegExp("[0-3]"),
  1707. val1: new RegExp("0[1-9]|[12][0-9]|3[01]"),
  1708. val2pre: function(separator) {
  1709. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  1710. return new RegExp("((0[1-9]|[12][0-9]|3[01])" + escapedSeparator + "[01])");
  1711. },
  1712. val2: function(separator) {
  1713. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  1714. return new RegExp("((0[1-9]|[12][0-9])" + escapedSeparator + "(0[1-9]|1[012]))|(30" + escapedSeparator + "(0[13-9]|1[012]))|(31" + escapedSeparator + "(0[13578]|1[02]))");
  1715. }
  1716. },
  1717. leapday: "29/02/",
  1718. separator: "/",
  1719. yearrange: {
  1720. minyear: 1900,
  1721. maxyear: 2099
  1722. },
  1723. isInYearRange: function(chrs, minyear, maxyear) {
  1724. if (isNaN(chrs)) return !1;
  1725. var enteredyear = parseInt(chrs.concat(minyear.toString().slice(chrs.length))), enteredyear2 = parseInt(chrs.concat(maxyear.toString().slice(chrs.length)));
  1726. return !isNaN(enteredyear) && (minyear <= enteredyear && enteredyear <= maxyear) || !isNaN(enteredyear2) && (minyear <= enteredyear2 && enteredyear2 <= maxyear);
  1727. },
  1728. determinebaseyear: function(minyear, maxyear, hint) {
  1729. var currentyear = new Date().getFullYear();
  1730. if (minyear > currentyear) return minyear;
  1731. if (maxyear < currentyear) {
  1732. for (var maxYearPrefix = maxyear.toString().slice(0, 2), maxYearPostfix = maxyear.toString().slice(2, 4); maxyear < maxYearPrefix + hint; ) maxYearPrefix--;
  1733. var maxxYear = maxYearPrefix + maxYearPostfix;
  1734. return minyear > maxxYear ? minyear : maxxYear;
  1735. }
  1736. if (minyear <= currentyear && currentyear <= maxyear) {
  1737. for (var currentYearPrefix = currentyear.toString().slice(0, 2); maxyear < currentYearPrefix + hint; ) currentYearPrefix--;
  1738. var currentYearAndHint = currentYearPrefix + hint;
  1739. return currentYearAndHint < minyear ? minyear : currentYearAndHint;
  1740. }
  1741. return currentyear;
  1742. },
  1743. onKeyDown: function(e, buffer, caretPos, opts) {
  1744. var $input = $(this);
  1745. if (e.ctrlKey && e.keyCode === Inputmask.keyCode.RIGHT) {
  1746. var today = new Date();
  1747. $input.val(today.getDate().toString() + (today.getMonth() + 1).toString() + today.getFullYear().toString()),
  1748. $input.trigger("setvalue");
  1749. }
  1750. },
  1751. getFrontValue: function(mask, buffer, opts) {
  1752. for (var start = 0, length = 0, i = 0; i < mask.length && "2" !== mask.charAt(i); i++) {
  1753. var definition = opts.definitions[mask.charAt(i)];
  1754. definition ? (start += length, length = definition.cardinality) : length++;
  1755. }
  1756. return buffer.join("").substr(start, length);
  1757. },
  1758. postValidation: function(buffer, currentResult, opts) {
  1759. var dayMonthValue, year, bufferStr = buffer.join("");
  1760. return 0 === opts.mask.indexOf("y") ? (year = bufferStr.substr(0, 4), dayMonthValue = bufferStr.substring(4, 10)) : (year = bufferStr.substring(6, 10),
  1761. dayMonthValue = bufferStr.substr(0, 6)), currentResult && (dayMonthValue !== opts.leapday || isLeapYear(year));
  1762. },
  1763. definitions: {
  1764. "1": {
  1765. validator: function(chrs, maskset, pos, strict, opts) {
  1766. var isValid = opts.regex.val1.test(chrs);
  1767. return strict || isValid || chrs.charAt(1) !== opts.separator && -1 === "-./".indexOf(chrs.charAt(1)) || !(isValid = opts.regex.val1.test("0" + chrs.charAt(0))) ? isValid : (maskset.buffer[pos - 1] = "0",
  1768. {
  1769. refreshFromBuffer: {
  1770. start: pos - 1,
  1771. end: pos
  1772. },
  1773. pos: pos,
  1774. c: chrs.charAt(0)
  1775. });
  1776. },
  1777. cardinality: 2,
  1778. prevalidator: [ {
  1779. validator: function(chrs, maskset, pos, strict, opts) {
  1780. var pchrs = chrs;
  1781. isNaN(maskset.buffer[pos + 1]) || (pchrs += maskset.buffer[pos + 1]);
  1782. var isValid = 1 === pchrs.length ? opts.regex.val1pre.test(pchrs) : opts.regex.val1.test(pchrs);
  1783. if (!strict && !isValid) {
  1784. if (isValid = opts.regex.val1.test(chrs + "0")) return maskset.buffer[pos] = chrs,
  1785. maskset.buffer[++pos] = "0", {
  1786. pos: pos,
  1787. c: "0"
  1788. };
  1789. if (isValid = opts.regex.val1.test("0" + chrs)) return maskset.buffer[pos] = "0",
  1790. pos++, {
  1791. pos: pos
  1792. };
  1793. }
  1794. return isValid;
  1795. },
  1796. cardinality: 1
  1797. } ]
  1798. },
  1799. "2": {
  1800. validator: function(chrs, maskset, pos, strict, opts) {
  1801. var frontValue = opts.getFrontValue(maskset.mask, maskset.buffer, opts);
  1802. -1 !== frontValue.indexOf(opts.placeholder[0]) && (frontValue = "01" + opts.separator);
  1803. var isValid = opts.regex.val2(opts.separator).test(frontValue + chrs);
  1804. return strict || isValid || chrs.charAt(1) !== opts.separator && -1 === "-./".indexOf(chrs.charAt(1)) || !(isValid = opts.regex.val2(opts.separator).test(frontValue + "0" + chrs.charAt(0))) ? isValid : (maskset.buffer[pos - 1] = "0",
  1805. {
  1806. refreshFromBuffer: {
  1807. start: pos - 1,
  1808. end: pos
  1809. },
  1810. pos: pos,
  1811. c: chrs.charAt(0)
  1812. });
  1813. },
  1814. cardinality: 2,
  1815. prevalidator: [ {
  1816. validator: function(chrs, maskset, pos, strict, opts) {
  1817. isNaN(maskset.buffer[pos + 1]) || (chrs += maskset.buffer[pos + 1]);
  1818. var frontValue = opts.getFrontValue(maskset.mask, maskset.buffer, opts);
  1819. -1 !== frontValue.indexOf(opts.placeholder[0]) && (frontValue = "01" + opts.separator);
  1820. var isValid = 1 === chrs.length ? opts.regex.val2pre(opts.separator).test(frontValue + chrs) : opts.regex.val2(opts.separator).test(frontValue + chrs);
  1821. return strict || isValid || !(isValid = opts.regex.val2(opts.separator).test(frontValue + "0" + chrs)) ? isValid : (maskset.buffer[pos] = "0",
  1822. pos++, {
  1823. pos: pos
  1824. });
  1825. },
  1826. cardinality: 1
  1827. } ]
  1828. },
  1829. y: {
  1830. validator: function(chrs, maskset, pos, strict, opts) {
  1831. return opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  1832. },
  1833. cardinality: 4,
  1834. prevalidator: [ {
  1835. validator: function(chrs, maskset, pos, strict, opts) {
  1836. var isValid = opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  1837. if (!strict && !isValid) {
  1838. var yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs + "0").toString().slice(0, 1);
  1839. if (isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) return maskset.buffer[pos++] = yearPrefix.charAt(0),
  1840. {
  1841. pos: pos
  1842. };
  1843. if (yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs + "0").toString().slice(0, 2),
  1844. isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) return maskset.buffer[pos++] = yearPrefix.charAt(0),
  1845. maskset.buffer[pos++] = yearPrefix.charAt(1), {
  1846. pos: pos
  1847. };
  1848. }
  1849. return isValid;
  1850. },
  1851. cardinality: 1
  1852. }, {
  1853. validator: function(chrs, maskset, pos, strict, opts) {
  1854. var isValid = opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  1855. if (!strict && !isValid) {
  1856. var yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs).toString().slice(0, 2);
  1857. if (isValid = opts.isInYearRange(chrs[0] + yearPrefix[1] + chrs[1], opts.yearrange.minyear, opts.yearrange.maxyear)) return maskset.buffer[pos++] = yearPrefix.charAt(1),
  1858. {
  1859. pos: pos
  1860. };
  1861. if (yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs).toString().slice(0, 2),
  1862. isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) return maskset.buffer[pos - 1] = yearPrefix.charAt(0),
  1863. maskset.buffer[pos++] = yearPrefix.charAt(1), maskset.buffer[pos++] = chrs.charAt(0),
  1864. {
  1865. refreshFromBuffer: {
  1866. start: pos - 3,
  1867. end: pos
  1868. },
  1869. pos: pos
  1870. };
  1871. }
  1872. return isValid;
  1873. },
  1874. cardinality: 2
  1875. }, {
  1876. validator: function(chrs, maskset, pos, strict, opts) {
  1877. return opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  1878. },
  1879. cardinality: 3
  1880. } ]
  1881. }
  1882. },
  1883. insertMode: !1,
  1884. autoUnmask: !1
  1885. },
  1886. "mm/dd/yyyy": {
  1887. placeholder: "mm/dd/yyyy",
  1888. alias: "dd/mm/yyyy",
  1889. regex: {
  1890. val2pre: function(separator) {
  1891. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  1892. return new RegExp("((0[13-9]|1[012])" + escapedSeparator + "[0-3])|(02" + escapedSeparator + "[0-2])");
  1893. },
  1894. val2: function(separator) {
  1895. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  1896. return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "(0[1-9]|[12][0-9]))|((0[13-9]|1[012])" + escapedSeparator + "30)|((0[13578]|1[02])" + escapedSeparator + "31)");
  1897. },
  1898. val1pre: new RegExp("[01]"),
  1899. val1: new RegExp("0[1-9]|1[012]")
  1900. },
  1901. leapday: "02/29/",
  1902. onKeyDown: function(e, buffer, caretPos, opts) {
  1903. var $input = $(this);
  1904. if (e.ctrlKey && e.keyCode === Inputmask.keyCode.RIGHT) {
  1905. var today = new Date();
  1906. $input.val((today.getMonth() + 1).toString() + today.getDate().toString() + today.getFullYear().toString()),
  1907. $input.trigger("setvalue");
  1908. }
  1909. }
  1910. },
  1911. "yyyy/mm/dd": {
  1912. mask: "y/1/2",
  1913. placeholder: "yyyy/mm/dd",
  1914. alias: "mm/dd/yyyy",
  1915. leapday: "/02/29",
  1916. onKeyDown: function(e, buffer, caretPos, opts) {
  1917. var $input = $(this);
  1918. if (e.ctrlKey && e.keyCode === Inputmask.keyCode.RIGHT) {
  1919. var today = new Date();
  1920. $input.val(today.getFullYear().toString() + (today.getMonth() + 1).toString() + today.getDate().toString()),
  1921. $input.trigger("setvalue");
  1922. }
  1923. }
  1924. },
  1925. "dd.mm.yyyy": {
  1926. mask: "1.2.y",
  1927. placeholder: "dd.mm.yyyy",
  1928. leapday: "29.02.",
  1929. separator: ".",
  1930. alias: "dd/mm/yyyy"
  1931. },
  1932. "dd-mm-yyyy": {
  1933. mask: "1-2-y",
  1934. placeholder: "dd-mm-yyyy",
  1935. leapday: "29-02-",
  1936. separator: "-",
  1937. alias: "dd/mm/yyyy"
  1938. },
  1939. "mm.dd.yyyy": {
  1940. mask: "1.2.y",
  1941. placeholder: "mm.dd.yyyy",
  1942. leapday: "02.29.",
  1943. separator: ".",
  1944. alias: "mm/dd/yyyy"
  1945. },
  1946. "mm-dd-yyyy": {
  1947. mask: "1-2-y",
  1948. placeholder: "mm-dd-yyyy",
  1949. leapday: "02-29-",
  1950. separator: "-",
  1951. alias: "mm/dd/yyyy"
  1952. },
  1953. "yyyy.mm.dd": {
  1954. mask: "y.1.2",
  1955. placeholder: "yyyy.mm.dd",
  1956. leapday: ".02.29",
  1957. separator: ".",
  1958. alias: "yyyy/mm/dd"
  1959. },
  1960. "yyyy-mm-dd": {
  1961. mask: "y-1-2",
  1962. placeholder: "yyyy-mm-dd",
  1963. leapday: "-02-29",
  1964. separator: "-",
  1965. alias: "yyyy/mm/dd"
  1966. },
  1967. datetime: {
  1968. mask: "1/2/y h:s",
  1969. placeholder: "dd/mm/yyyy hh:mm",
  1970. alias: "dd/mm/yyyy",
  1971. regex: {
  1972. hrspre: new RegExp("[012]"),
  1973. hrs24: new RegExp("2[0-4]|1[3-9]"),
  1974. hrs: new RegExp("[01][0-9]|2[0-4]"),
  1975. ampm: new RegExp("^[a|p|A|P][m|M]"),
  1976. mspre: new RegExp("[0-5]"),
  1977. ms: new RegExp("[0-5][0-9]")
  1978. },
  1979. timeseparator: ":",
  1980. hourFormat: "24",
  1981. definitions: {
  1982. h: {
  1983. validator: function(chrs, maskset, pos, strict, opts) {
  1984. if ("24" === opts.hourFormat && 24 === parseInt(chrs, 10)) return maskset.buffer[pos - 1] = "0",
  1985. maskset.buffer[pos] = "0", {
  1986. refreshFromBuffer: {
  1987. start: pos - 1,
  1988. end: pos
  1989. },
  1990. c: "0"
  1991. };
  1992. var isValid = opts.regex.hrs.test(chrs);
  1993. if (!strict && !isValid && (chrs.charAt(1) === opts.timeseparator || -1 !== "-.:".indexOf(chrs.charAt(1))) && (isValid = opts.regex.hrs.test("0" + chrs.charAt(0)))) return maskset.buffer[pos - 1] = "0",
  1994. maskset.buffer[pos] = chrs.charAt(0), pos++, {
  1995. refreshFromBuffer: {
  1996. start: pos - 2,
  1997. end: pos
  1998. },
  1999. pos: pos,
  2000. c: opts.timeseparator
  2001. };
  2002. if (isValid && "24" !== opts.hourFormat && opts.regex.hrs24.test(chrs)) {
  2003. var tmp = parseInt(chrs, 10);
  2004. return 24 === tmp ? (maskset.buffer[pos + 5] = "a", maskset.buffer[pos + 6] = "m") : (maskset.buffer[pos + 5] = "p",
  2005. maskset.buffer[pos + 6] = "m"), tmp -= 12, tmp < 10 ? (maskset.buffer[pos] = tmp.toString(),
  2006. maskset.buffer[pos - 1] = "0") : (maskset.buffer[pos] = tmp.toString().charAt(1),
  2007. maskset.buffer[pos - 1] = tmp.toString().charAt(0)), {
  2008. refreshFromBuffer: {
  2009. start: pos - 1,
  2010. end: pos + 6
  2011. },
  2012. c: maskset.buffer[pos]
  2013. };
  2014. }
  2015. return isValid;
  2016. },
  2017. cardinality: 2,
  2018. prevalidator: [ {
  2019. validator: function(chrs, maskset, pos, strict, opts) {
  2020. var isValid = opts.regex.hrspre.test(chrs);
  2021. return strict || isValid || !(isValid = opts.regex.hrs.test("0" + chrs)) ? isValid : (maskset.buffer[pos] = "0",
  2022. pos++, {
  2023. pos: pos
  2024. });
  2025. },
  2026. cardinality: 1
  2027. } ]
  2028. },
  2029. s: {
  2030. validator: "[0-5][0-9]",
  2031. cardinality: 2,
  2032. prevalidator: [ {
  2033. validator: function(chrs, maskset, pos, strict, opts) {
  2034. var isValid = opts.regex.mspre.test(chrs);
  2035. return strict || isValid || !(isValid = opts.regex.ms.test("0" + chrs)) ? isValid : (maskset.buffer[pos] = "0",
  2036. pos++, {
  2037. pos: pos
  2038. });
  2039. },
  2040. cardinality: 1
  2041. } ]
  2042. },
  2043. t: {
  2044. validator: function(chrs, maskset, pos, strict, opts) {
  2045. return opts.regex.ampm.test(chrs + "m");
  2046. },
  2047. casing: "lower",
  2048. cardinality: 1
  2049. }
  2050. },
  2051. insertMode: !1,
  2052. autoUnmask: !1
  2053. },
  2054. datetime12: {
  2055. mask: "1/2/y h:s t\\m",
  2056. placeholder: "dd/mm/yyyy hh:mm xm",
  2057. alias: "datetime",
  2058. hourFormat: "12"
  2059. },
  2060. "mm/dd/yyyy hh:mm xm": {
  2061. mask: "1/2/y h:s t\\m",
  2062. placeholder: "mm/dd/yyyy hh:mm xm",
  2063. alias: "datetime12",
  2064. regex: {
  2065. val2pre: function(separator) {
  2066. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  2067. return new RegExp("((0[13-9]|1[012])" + escapedSeparator + "[0-3])|(02" + escapedSeparator + "[0-2])");
  2068. },
  2069. val2: function(separator) {
  2070. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  2071. return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "(0[1-9]|[12][0-9]))|((0[13-9]|1[012])" + escapedSeparator + "30)|((0[13578]|1[02])" + escapedSeparator + "31)");
  2072. },
  2073. val1pre: new RegExp("[01]"),
  2074. val1: new RegExp("0[1-9]|1[012]")
  2075. },
  2076. leapday: "02/29/",
  2077. onKeyDown: function(e, buffer, caretPos, opts) {
  2078. var $input = $(this);
  2079. if (e.ctrlKey && e.keyCode === Inputmask.keyCode.RIGHT) {
  2080. var today = new Date();
  2081. $input.val((today.getMonth() + 1).toString() + today.getDate().toString() + today.getFullYear().toString()),
  2082. $input.trigger("setvalue");
  2083. }
  2084. }
  2085. },
  2086. "hh:mm t": {
  2087. mask: "h:s t\\m",
  2088. placeholder: "hh:mm xm",
  2089. alias: "datetime",
  2090. hourFormat: "12"
  2091. },
  2092. "h:s t": {
  2093. mask: "h:s t\\m",
  2094. placeholder: "hh:mm xm",
  2095. alias: "datetime",
  2096. hourFormat: "12"
  2097. },
  2098. "hh:mm:ss": {
  2099. mask: "h:s:s",
  2100. placeholder: "hh:mm:ss",
  2101. alias: "datetime",
  2102. autoUnmask: !1
  2103. },
  2104. "hh:mm": {
  2105. mask: "h:s",
  2106. placeholder: "hh:mm",
  2107. alias: "datetime",
  2108. autoUnmask: !1
  2109. },
  2110. date: {
  2111. alias: "dd/mm/yyyy"
  2112. },
  2113. "mm/yyyy": {
  2114. mask: "1/y",
  2115. placeholder: "mm/yyyy",
  2116. leapday: "donotuse",
  2117. separator: "/",
  2118. alias: "mm/dd/yyyy"
  2119. },
  2120. shamsi: {
  2121. regex: {
  2122. val2pre: function(separator) {
  2123. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  2124. return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "[0-3])");
  2125. },
  2126. val2: function(separator) {
  2127. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  2128. return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "(0[1-9]|[12][0-9]))|((0[1-9]|1[012])" + escapedSeparator + "30)|((0[1-6])" + escapedSeparator + "31)");
  2129. },
  2130. val1pre: new RegExp("[01]"),
  2131. val1: new RegExp("0[1-9]|1[012]")
  2132. },
  2133. yearrange: {
  2134. minyear: 1300,
  2135. maxyear: 1499
  2136. },
  2137. mask: "y/1/2",
  2138. leapday: "/12/30",
  2139. placeholder: "yyyy/mm/dd",
  2140. alias: "mm/dd/yyyy",
  2141. clearIncomplete: !0
  2142. },
  2143. "yyyy-mm-dd hh:mm:ss": {
  2144. mask: "y-1-2 h:s:s",
  2145. placeholder: "yyyy-mm-dd hh:mm:ss",
  2146. alias: "datetime",
  2147. separator: "-",
  2148. leapday: "-02-29",
  2149. regex: {
  2150. val2pre: function(separator) {
  2151. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  2152. return new RegExp("((0[13-9]|1[012])" + escapedSeparator + "[0-3])|(02" + escapedSeparator + "[0-2])");
  2153. },
  2154. val2: function(separator) {
  2155. var escapedSeparator = Inputmask.escapeRegex.call(this, separator);
  2156. return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "(0[1-9]|[12][0-9]))|((0[13-9]|1[012])" + escapedSeparator + "30)|((0[13578]|1[02])" + escapedSeparator + "31)");
  2157. },
  2158. val1pre: new RegExp("[01]"),
  2159. val1: new RegExp("0[1-9]|1[012]")
  2160. },
  2161. onKeyDown: function(e, buffer, caretPos, opts) {}
  2162. }
  2163. }), Inputmask;
  2164. });
  2165. }, function(module, exports, __webpack_require__) {
  2166. "use strict";
  2167. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  2168. "function" == typeof Symbol && Symbol.iterator;
  2169. !function(factory) {
  2170. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  2171. __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2172. }(function($, Inputmask) {
  2173. return Inputmask.extendDefinitions({
  2174. A: {
  2175. validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
  2176. cardinality: 1,
  2177. casing: "upper"
  2178. },
  2179. "&": {
  2180. validator: "[0-9A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
  2181. cardinality: 1,
  2182. casing: "upper"
  2183. },
  2184. "#": {
  2185. validator: "[0-9A-Fa-f]",
  2186. cardinality: 1,
  2187. casing: "upper"
  2188. }
  2189. }), Inputmask.extendAliases({
  2190. url: {
  2191. definitions: {
  2192. i: {
  2193. validator: ".",
  2194. cardinality: 1
  2195. }
  2196. },
  2197. mask: "(\\http://)|(\\http\\s://)|(ftp://)|(ftp\\s://)i{+}",
  2198. insertMode: !1,
  2199. autoUnmask: !1,
  2200. inputmode: "url"
  2201. },
  2202. ip: {
  2203. mask: "i[i[i]].i[i[i]].i[i[i]].i[i[i]]",
  2204. definitions: {
  2205. i: {
  2206. validator: function(chrs, maskset, pos, strict, opts) {
  2207. return pos - 1 > -1 && "." !== maskset.buffer[pos - 1] ? (chrs = maskset.buffer[pos - 1] + chrs,
  2208. chrs = pos - 2 > -1 && "." !== maskset.buffer[pos - 2] ? maskset.buffer[pos - 2] + chrs : "0" + chrs) : chrs = "00" + chrs,
  2209. new RegExp("25[0-5]|2[0-4][0-9]|[01][0-9][0-9]").test(chrs);
  2210. },
  2211. cardinality: 1
  2212. }
  2213. },
  2214. onUnMask: function(maskedValue, unmaskedValue, opts) {
  2215. return maskedValue;
  2216. },
  2217. inputmode: "numeric"
  2218. },
  2219. email: {
  2220. mask: "*{1,64}[.*{1,64}][.*{1,64}][.*{1,63}]@-{1,63}.-{1,63}[.-{1,63}][.-{1,63}]",
  2221. greedy: !1,
  2222. onBeforePaste: function(pastedValue, opts) {
  2223. return pastedValue = pastedValue.toLowerCase(), pastedValue.replace("mailto:", "");
  2224. },
  2225. definitions: {
  2226. "*": {
  2227. validator: "[0-9A-Za-z!#$%&'*+/=?^_`{|}~-]",
  2228. cardinality: 1,
  2229. casing: "lower"
  2230. },
  2231. "-": {
  2232. validator: "[0-9A-Za-z-]",
  2233. cardinality: 1,
  2234. casing: "lower"
  2235. }
  2236. },
  2237. onUnMask: function(maskedValue, unmaskedValue, opts) {
  2238. return maskedValue;
  2239. },
  2240. inputmode: "email"
  2241. },
  2242. mac: {
  2243. mask: "##:##:##:##:##:##"
  2244. },
  2245. vin: {
  2246. mask: "V{13}9{4}",
  2247. definitions: {
  2248. V: {
  2249. validator: "[A-HJ-NPR-Za-hj-npr-z\\d]",
  2250. cardinality: 1,
  2251. casing: "upper"
  2252. }
  2253. },
  2254. clearIncomplete: !0,
  2255. autoUnmask: !0
  2256. }
  2257. }), Inputmask;
  2258. });
  2259. }, function(module, exports, __webpack_require__) {
  2260. "use strict";
  2261. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  2262. "function" == typeof Symbol && Symbol.iterator;
  2263. !function(factory) {
  2264. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  2265. __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2266. }(function($, Inputmask, undefined) {
  2267. function autoEscape(txt, opts) {
  2268. 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);
  2269. return escapedTxt;
  2270. }
  2271. return Inputmask.extendAliases({
  2272. numeric: {
  2273. mask: function(opts) {
  2274. if (0 !== opts.repeat && isNaN(opts.integerDigits) && (opts.integerDigits = opts.repeat),
  2275. opts.repeat = 0, opts.groupSeparator === opts.radixPoint && ("." === opts.radixPoint ? opts.groupSeparator = "," : "," === opts.radixPoint ? opts.groupSeparator = "." : opts.groupSeparator = ""),
  2276. " " === opts.groupSeparator && (opts.skipOptionalPartCharacter = undefined), opts.autoGroup = opts.autoGroup && "" !== opts.groupSeparator,
  2277. opts.autoGroup && ("string" == typeof opts.groupSize && isFinite(opts.groupSize) && (opts.groupSize = parseInt(opts.groupSize)),
  2278. isFinite(opts.integerDigits))) {
  2279. var seps = Math.floor(opts.integerDigits / opts.groupSize), mod = opts.integerDigits % opts.groupSize;
  2280. opts.integerDigits = parseInt(opts.integerDigits) + (0 === mod ? seps - 1 : seps),
  2281. opts.integerDigits < 1 && (opts.integerDigits = "*");
  2282. }
  2283. opts.placeholder.length > 1 && (opts.placeholder = opts.placeholder.charAt(0)),
  2284. "radixFocus" === opts.positionCaretOnClick && "" === opts.placeholder && !1 === opts.integerOptional && (opts.positionCaretOnClick = "lvp"),
  2285. opts.definitions[";"] = opts.definitions["~"], opts.definitions[";"].definitionSymbol = "~",
  2286. !0 === opts.numericInput && (opts.positionCaretOnClick = "radixFocus" === opts.positionCaretOnClick ? "lvp" : opts.positionCaretOnClick,
  2287. opts.digitsOptional = !1, isNaN(opts.digits) && (opts.digits = 2), opts.decimalProtect = !1);
  2288. var mask = "[+]";
  2289. if (mask += autoEscape(opts.prefix, opts), !0 === opts.integerOptional ? mask += "~{1," + opts.integerDigits + "}" : mask += "~{" + opts.integerDigits + "}",
  2290. opts.digits !== undefined) {
  2291. opts.radixPointDefinitionSymbol = opts.decimalProtect ? ":" : opts.radixPoint;
  2292. var dq = opts.digits.toString().split(",");
  2293. isFinite(dq[0] && dq[1] && isFinite(dq[1])) ? mask += opts.radixPointDefinitionSymbol + ";{" + opts.digits + "}" : (isNaN(opts.digits) || parseInt(opts.digits) > 0) && (opts.digitsOptional ? mask += "[" + opts.radixPointDefinitionSymbol + ";{1," + opts.digits + "}]" : mask += opts.radixPointDefinitionSymbol + ";{" + opts.digits + "}");
  2294. }
  2295. return mask += autoEscape(opts.suffix, opts), mask += "[-]", opts.greedy = !1, mask;
  2296. },
  2297. placeholder: "",
  2298. greedy: !1,
  2299. digits: "*",
  2300. digitsOptional: !0,
  2301. enforceDigitsOnBlur: !1,
  2302. radixPoint: ".",
  2303. positionCaretOnClick: "radixFocus",
  2304. groupSize: 3,
  2305. groupSeparator: "",
  2306. autoGroup: !1,
  2307. allowMinus: !0,
  2308. negationSymbol: {
  2309. front: "-",
  2310. back: ""
  2311. },
  2312. integerDigits: "+",
  2313. integerOptional: !0,
  2314. prefix: "",
  2315. suffix: "",
  2316. rightAlign: !0,
  2317. decimalProtect: !0,
  2318. min: null,
  2319. max: null,
  2320. step: 1,
  2321. insertMode: !0,
  2322. autoUnmask: !1,
  2323. unmaskAsNumber: !1,
  2324. inputmode: "numeric",
  2325. preValidation: function(buffer, pos, c, isSelection, opts) {
  2326. if ("-" === c || c == opts.negationSymbol.front) return !0 === opts.allowMinus && (opts.isNegative = opts.isNegative === undefined || !opts.isNegative,
  2327. "" === buffer.join("") || {
  2328. caret: pos,
  2329. dopost: !0
  2330. });
  2331. if (!1 === isSelection && c === opts.radixPoint && opts.digits !== undefined && (isNaN(opts.digits) || parseInt(opts.digits) > 0)) {
  2332. var radixPos = $.inArray(opts.radixPoint, buffer);
  2333. if (-1 !== radixPos) return !0 === opts.numericInput ? pos === radixPos : {
  2334. caret: radixPos + 1
  2335. };
  2336. }
  2337. return !0;
  2338. },
  2339. postValidation: function(buffer, currentResult, opts) {
  2340. var suffix = opts.suffix.split(""), prefix = opts.prefix.split("");
  2341. if (currentResult.pos == undefined && currentResult.caret !== undefined && !0 !== currentResult.dopost) return currentResult;
  2342. var caretPos = currentResult.caret != undefined ? currentResult.caret : currentResult.pos, maskedValue = buffer.slice();
  2343. opts.numericInput && (caretPos = maskedValue.length - caretPos - 1, maskedValue = maskedValue.reverse());
  2344. var charAtPos = maskedValue[caretPos];
  2345. if (charAtPos === opts.groupSeparator && (caretPos += 1, charAtPos = maskedValue[caretPos]),
  2346. caretPos == maskedValue.length - opts.suffix.length - 1 && charAtPos === opts.radixPoint) return currentResult;
  2347. charAtPos !== undefined && charAtPos !== opts.radixPoint && charAtPos !== opts.negationSymbol.front && charAtPos !== opts.negationSymbol.back && (maskedValue[caretPos] = "?",
  2348. 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))] = "?")),
  2349. prefix = prefix.join(""), suffix = suffix.join("");
  2350. var processValue = maskedValue.join("").replace(prefix, "");
  2351. if (processValue = processValue.replace(suffix, ""), processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2352. processValue = processValue.replace(new RegExp("[-" + Inputmask.escapeRegex(opts.negationSymbol.front) + "]", "g"), ""),
  2353. processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), ""),
  2354. isNaN(opts.placeholder) && (processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.placeholder), "g"), "")),
  2355. processValue.length > 1 && 1 !== processValue.indexOf(opts.radixPoint) && ("0" == charAtPos && (processValue = processValue.replace(/^\?/g, "")),
  2356. processValue = processValue.replace(/^0/g, "")), processValue.charAt(0) === opts.radixPoint && "" !== opts.radixPoint && !0 !== opts.numericInput && (processValue = "0" + processValue),
  2357. "" !== processValue) {
  2358. if (processValue = processValue.split(""), (!opts.digitsOptional || opts.enforceDigitsOnBlur && "blur" === currentResult.event) && isFinite(opts.digits)) {
  2359. var radixPosition = $.inArray(opts.radixPoint, processValue), rpb = $.inArray(opts.radixPoint, maskedValue);
  2360. -1 === radixPosition && (processValue.push(opts.radixPoint), radixPosition = processValue.length - 1);
  2361. 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);
  2362. }
  2363. if (!0 !== opts.autoGroup || "" === opts.groupSeparator || charAtPos === opts.radixPoint && currentResult.pos === undefined && !currentResult.dopost) processValue = processValue.join(""); else {
  2364. var addRadix = processValue[processValue.length - 1] === opts.radixPoint && currentResult.c === opts.radixPoint;
  2365. processValue = Inputmask(function(buffer, opts) {
  2366. var postMask = "";
  2367. if (postMask += "(" + opts.groupSeparator + "*{" + opts.groupSize + "}){*}", "" !== opts.radixPoint) {
  2368. var radixSplit = buffer.join("").split(opts.radixPoint);
  2369. radixSplit[1] && (postMask += opts.radixPoint + "*{" + radixSplit[1].match(/^\d*\??\d*/)[0].length + "}");
  2370. }
  2371. return postMask;
  2372. }(processValue, opts), {
  2373. numericInput: !0,
  2374. jitMasking: !0,
  2375. definitions: {
  2376. "*": {
  2377. validator: "[0-9?]",
  2378. cardinality: 1
  2379. }
  2380. }
  2381. }).format(processValue.join("")), addRadix && (processValue += opts.radixPoint),
  2382. processValue.charAt(0) === opts.groupSeparator && processValue.substr(1);
  2383. }
  2384. }
  2385. if (opts.isNegative && "blur" === currentResult.event && (opts.isNegative = "0" !== processValue),
  2386. processValue = prefix + processValue, processValue += suffix, opts.isNegative && (processValue = opts.negationSymbol.front + processValue,
  2387. processValue += opts.negationSymbol.back), processValue = processValue.split(""),
  2388. charAtPos !== undefined) if (charAtPos !== opts.radixPoint && charAtPos !== opts.negationSymbol.front && charAtPos !== opts.negationSymbol.back) caretPos = $.inArray("?", processValue),
  2389. caretPos > -1 ? processValue[caretPos] = charAtPos : caretPos = currentResult.caret || 0; else if (charAtPos === opts.radixPoint || charAtPos === opts.negationSymbol.front || charAtPos === opts.negationSymbol.back) {
  2390. var newCaretPos = $.inArray(charAtPos, processValue);
  2391. -1 !== newCaretPos && (caretPos = newCaretPos);
  2392. }
  2393. opts.numericInput && (caretPos = processValue.length - caretPos - 1, processValue = processValue.reverse());
  2394. var rslt = {
  2395. caret: charAtPos === undefined || currentResult.pos !== undefined ? caretPos + (opts.numericInput ? -1 : 1) : caretPos,
  2396. buffer: processValue,
  2397. refreshFromBuffer: currentResult.dopost || buffer.join("") !== processValue.join("")
  2398. };
  2399. return rslt.refreshFromBuffer ? rslt : currentResult;
  2400. },
  2401. onBeforeWrite: function(e, buffer, caretPos, opts) {
  2402. if (e) switch (e.type) {
  2403. case "keydown":
  2404. return opts.postValidation(buffer, {
  2405. caret: caretPos,
  2406. dopost: !0
  2407. }, opts);
  2408. case "blur":
  2409. case "checkval":
  2410. var unmasked;
  2411. if (function(opts) {
  2412. opts.parseMinMaxOptions === undefined && (null !== opts.min && (opts.min = opts.min.toString().replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2413. "," === opts.radixPoint && (opts.min = opts.min.replace(opts.radixPoint, ".")),
  2414. opts.min = isFinite(opts.min) ? parseFloat(opts.min) : NaN, isNaN(opts.min) && (opts.min = Number.MIN_VALUE)),
  2415. null !== opts.max && (opts.max = opts.max.toString().replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2416. "," === opts.radixPoint && (opts.max = opts.max.replace(opts.radixPoint, ".")),
  2417. opts.max = isFinite(opts.max) ? parseFloat(opts.max) : NaN, isNaN(opts.max) && (opts.max = Number.MAX_VALUE)),
  2418. opts.parseMinMaxOptions = "done");
  2419. }(opts), null !== opts.min || null !== opts.max) {
  2420. if (unmasked = opts.onUnMask(buffer.join(""), undefined, $.extend({}, opts, {
  2421. unmaskAsNumber: !0
  2422. })), null !== opts.min && unmasked < opts.min) return opts.isNegative = opts.min < 0,
  2423. opts.postValidation(opts.min.toString().replace(".", opts.radixPoint).split(""), {
  2424. caret: caretPos,
  2425. dopost: !0,
  2426. placeholder: "0"
  2427. }, opts);
  2428. if (null !== opts.max && unmasked > opts.max) return opts.isNegative = opts.max < 0,
  2429. opts.postValidation(opts.max.toString().replace(".", opts.radixPoint).split(""), {
  2430. caret: caretPos,
  2431. dopost: !0,
  2432. placeholder: "0"
  2433. }, opts);
  2434. }
  2435. return opts.postValidation(buffer, {
  2436. caret: caretPos,
  2437. dopost: !0,
  2438. placeholder: "0",
  2439. event: "blur"
  2440. }, opts);
  2441. case "_checkval":
  2442. return {
  2443. caret: caretPos
  2444. };
  2445. }
  2446. },
  2447. regex: {
  2448. integerPart: function(opts, emptyCheck) {
  2449. return emptyCheck ? new RegExp("[" + Inputmask.escapeRegex(opts.negationSymbol.front) + "+]?") : new RegExp("[" + Inputmask.escapeRegex(opts.negationSymbol.front) + "+]?\\d+");
  2450. },
  2451. integerNPart: function(opts) {
  2452. return new RegExp("[\\d" + Inputmask.escapeRegex(opts.groupSeparator) + Inputmask.escapeRegex(opts.placeholder.charAt(0)) + "]+");
  2453. }
  2454. },
  2455. definitions: {
  2456. "~": {
  2457. validator: function(chrs, maskset, pos, strict, opts, isSelection) {
  2458. var isValid = strict ? new RegExp("[0-9" + Inputmask.escapeRegex(opts.groupSeparator) + "]").test(chrs) : new RegExp("[0-9]").test(chrs);
  2459. if (!0 === isValid) {
  2460. if (!0 !== opts.numericInput && maskset.validPositions[pos] !== undefined && "~" === maskset.validPositions[pos].match.def && !isSelection) {
  2461. var processValue = maskset.buffer.join("");
  2462. processValue = processValue.replace(new RegExp("[-" + Inputmask.escapeRegex(opts.negationSymbol.front) + "]", "g"), ""),
  2463. processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), "");
  2464. var pvRadixSplit = processValue.split(opts.radixPoint);
  2465. pvRadixSplit.length > 1 && (pvRadixSplit[1] = pvRadixSplit[1].replace(/0/g, opts.placeholder.charAt(0))),
  2466. "0" === pvRadixSplit[0] && (pvRadixSplit[0] = pvRadixSplit[0].replace(/0/g, opts.placeholder.charAt(0))),
  2467. processValue = pvRadixSplit[0] + opts.radixPoint + pvRadixSplit[1] || "";
  2468. var bufferTemplate = maskset._buffer.join("");
  2469. for (processValue === opts.radixPoint && (processValue = bufferTemplate); null === processValue.match(Inputmask.escapeRegex(bufferTemplate) + "$"); ) bufferTemplate = bufferTemplate.slice(1);
  2470. processValue = processValue.replace(bufferTemplate, ""), processValue = processValue.split(""),
  2471. isValid = processValue[pos] === undefined ? {
  2472. pos: pos,
  2473. remove: pos
  2474. } : {
  2475. pos: pos
  2476. };
  2477. }
  2478. } else strict || chrs !== opts.radixPoint || maskset.validPositions[pos - 1] !== undefined || (maskset.buffer[pos] = "0",
  2479. isValid = {
  2480. pos: pos + 1
  2481. });
  2482. return isValid;
  2483. },
  2484. cardinality: 1
  2485. },
  2486. "+": {
  2487. validator: function(chrs, maskset, pos, strict, opts) {
  2488. return opts.allowMinus && ("-" === chrs || chrs === opts.negationSymbol.front);
  2489. },
  2490. cardinality: 1,
  2491. placeholder: ""
  2492. },
  2493. "-": {
  2494. validator: function(chrs, maskset, pos, strict, opts) {
  2495. return opts.allowMinus && chrs === opts.negationSymbol.back;
  2496. },
  2497. cardinality: 1,
  2498. placeholder: ""
  2499. },
  2500. ":": {
  2501. validator: function(chrs, maskset, pos, strict, opts) {
  2502. var radix = "[" + Inputmask.escapeRegex(opts.radixPoint) + "]", isValid = new RegExp(radix).test(chrs);
  2503. return isValid && maskset.validPositions[pos] && maskset.validPositions[pos].match.placeholder === opts.radixPoint && (isValid = {
  2504. caret: pos + 1
  2505. }), isValid;
  2506. },
  2507. cardinality: 1,
  2508. placeholder: function(opts) {
  2509. return opts.radixPoint;
  2510. }
  2511. }
  2512. },
  2513. onUnMask: function(maskedValue, unmaskedValue, opts) {
  2514. if ("" === unmaskedValue && !0 === opts.nullable) return unmaskedValue;
  2515. var processValue = maskedValue.replace(opts.prefix, "");
  2516. return processValue = processValue.replace(opts.suffix, ""), processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2517. "" !== opts.placeholder.charAt(0) && (processValue = processValue.replace(new RegExp(opts.placeholder.charAt(0), "g"), "0")),
  2518. opts.unmaskAsNumber ? ("" !== opts.radixPoint && -1 !== processValue.indexOf(opts.radixPoint) && (processValue = processValue.replace(Inputmask.escapeRegex.call(this, opts.radixPoint), ".")),
  2519. processValue = processValue.replace(new RegExp("^" + Inputmask.escapeRegex(opts.negationSymbol.front)), "-"),
  2520. processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), ""),
  2521. Number(processValue)) : processValue;
  2522. },
  2523. isComplete: function(buffer, opts) {
  2524. var maskedValue = buffer.join("");
  2525. if (buffer.slice().join("") !== maskedValue) return !1;
  2526. var processValue = maskedValue.replace(opts.prefix, "");
  2527. return processValue = processValue.replace(opts.suffix, ""), processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2528. "," === opts.radixPoint && (processValue = processValue.replace(Inputmask.escapeRegex(opts.radixPoint), ".")),
  2529. isFinite(processValue);
  2530. },
  2531. onBeforeMask: function(initialValue, opts) {
  2532. if (opts.isNegative = undefined, initialValue = initialValue.toString().charAt(initialValue.length - 1) === opts.radixPoint ? initialValue.toString().substr(0, initialValue.length - 1) : initialValue.toString(),
  2533. "" !== opts.radixPoint && isFinite(initialValue)) {
  2534. var vs = initialValue.split("."), groupSize = "" !== opts.groupSeparator ? parseInt(opts.groupSize) : 0;
  2535. 2 === vs.length && (vs[0].length > groupSize || vs[1].length > groupSize || vs[0].length <= groupSize && vs[1].length < groupSize) && (initialValue = initialValue.replace(".", opts.radixPoint));
  2536. }
  2537. var kommaMatches = initialValue.match(/,/g), dotMatches = initialValue.match(/\./g);
  2538. if (dotMatches && kommaMatches ? dotMatches.length > kommaMatches.length ? (initialValue = initialValue.replace(/\./g, ""),
  2539. initialValue = initialValue.replace(",", opts.radixPoint)) : kommaMatches.length > dotMatches.length ? (initialValue = initialValue.replace(/,/g, ""),
  2540. initialValue = initialValue.replace(".", opts.radixPoint)) : initialValue = initialValue.indexOf(".") < initialValue.indexOf(",") ? initialValue.replace(/\./g, "") : initialValue = initialValue.replace(/,/g, "") : initialValue = initialValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), ""),
  2541. 0 === opts.digits && (-1 !== initialValue.indexOf(".") ? initialValue = initialValue.substring(0, initialValue.indexOf(".")) : -1 !== initialValue.indexOf(",") && (initialValue = initialValue.substring(0, initialValue.indexOf(",")))),
  2542. "" !== opts.radixPoint && isFinite(opts.digits) && -1 !== initialValue.indexOf(opts.radixPoint)) {
  2543. var valueParts = initialValue.split(opts.radixPoint), decPart = valueParts[1].match(new RegExp("\\d*"))[0];
  2544. if (parseInt(opts.digits) < decPart.toString().length) {
  2545. var digitsFactor = Math.pow(10, parseInt(opts.digits));
  2546. initialValue = initialValue.replace(Inputmask.escapeRegex(opts.radixPoint), "."),
  2547. initialValue = Math.round(parseFloat(initialValue) * digitsFactor) / digitsFactor,
  2548. initialValue = initialValue.toString().replace(".", opts.radixPoint);
  2549. }
  2550. }
  2551. return initialValue;
  2552. },
  2553. canClearPosition: function(maskset, position, lvp, strict, opts) {
  2554. var vp = maskset.validPositions[position], canClear = vp.input !== opts.radixPoint || null !== maskset.validPositions[position].match.fn && !1 === opts.decimalProtect || vp.input === opts.radixPoint && maskset.validPositions[position + 1] && null === maskset.validPositions[position + 1].match.fn || isFinite(vp.input) || position === lvp || vp.input === opts.groupSeparator || vp.input === opts.negationSymbol.front || vp.input === opts.negationSymbol.back;
  2555. return !canClear || "+" != vp.match.nativeDef && "-" != vp.match.nativeDef || (opts.isNegative = !1),
  2556. canClear;
  2557. },
  2558. onKeyDown: function(e, buffer, caretPos, opts) {
  2559. var $input = $(this);
  2560. if (e.ctrlKey) switch (e.keyCode) {
  2561. case Inputmask.keyCode.UP:
  2562. $input.val(parseFloat(this.inputmask.unmaskedvalue()) + parseInt(opts.step)), $input.trigger("setvalue");
  2563. break;
  2564. case Inputmask.keyCode.DOWN:
  2565. $input.val(parseFloat(this.inputmask.unmaskedvalue()) - parseInt(opts.step)), $input.trigger("setvalue");
  2566. }
  2567. }
  2568. },
  2569. currency: {
  2570. prefix: "$ ",
  2571. groupSeparator: ",",
  2572. alias: "numeric",
  2573. placeholder: "0",
  2574. autoGroup: !0,
  2575. digits: 2,
  2576. digitsOptional: !1,
  2577. clearMaskOnLostFocus: !1
  2578. },
  2579. decimal: {
  2580. alias: "numeric"
  2581. },
  2582. integer: {
  2583. alias: "numeric",
  2584. digits: 0,
  2585. radixPoint: ""
  2586. },
  2587. percentage: {
  2588. alias: "numeric",
  2589. digits: 2,
  2590. digitsOptional: !0,
  2591. radixPoint: ".",
  2592. placeholder: "0",
  2593. autoGroup: !1,
  2594. min: 0,
  2595. max: 100,
  2596. suffix: " %",
  2597. allowMinus: !1
  2598. }
  2599. }), Inputmask;
  2600. });
  2601. }, function(module, exports, __webpack_require__) {
  2602. "use strict";
  2603. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
  2604. "function" == typeof Symbol && Symbol.iterator;
  2605. !function(factory) {
  2606. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(0), __webpack_require__(1) ],
  2607. __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2608. }(function($, Inputmask) {
  2609. function maskSort(a, b) {
  2610. var maska = (a.mask || a).replace(/#/g, "9").replace(/\)/, "9").replace(/[+()#-]/g, ""), maskb = (b.mask || b).replace(/#/g, "9").replace(/\)/, "9").replace(/[+()#-]/g, ""), maskas = (a.mask || a).split("#")[0], maskbs = (b.mask || b).split("#")[0];
  2611. return 0 === maskbs.indexOf(maskas) ? -1 : 0 === maskas.indexOf(maskbs) ? 1 : maska.localeCompare(maskb);
  2612. }
  2613. var analyseMaskBase = Inputmask.prototype.analyseMask;
  2614. return Inputmask.prototype.analyseMask = function(mask, regexMask, opts) {
  2615. function reduceVariations(masks, previousVariation, previousmaskGroup) {
  2616. previousVariation = previousVariation || "", previousmaskGroup = previousmaskGroup || maskGroups,
  2617. "" !== previousVariation && (previousmaskGroup[previousVariation] = {});
  2618. for (var variation = "", maskGroup = previousmaskGroup[previousVariation] || previousmaskGroup, i = masks.length - 1; i >= 0; i--) mask = masks[i].mask || masks[i],
  2619. variation = mask.substr(0, 1), maskGroup[variation] = maskGroup[variation] || [],
  2620. maskGroup[variation].unshift(mask.substr(1)), masks.splice(i, 1);
  2621. for (var ndx in maskGroup) maskGroup[ndx].length > 500 && reduceVariations(maskGroup[ndx].slice(), ndx, maskGroup);
  2622. }
  2623. function rebuild(maskGroup) {
  2624. var mask = "", submasks = [];
  2625. for (var ndx in maskGroup) $.isArray(maskGroup[ndx]) ? 1 === maskGroup[ndx].length ? submasks.push(ndx + maskGroup[ndx]) : submasks.push(ndx + opts.groupmarker.start + maskGroup[ndx].join(opts.groupmarker.end + opts.alternatormarker + opts.groupmarker.start) + opts.groupmarker.end) : submasks.push(ndx + rebuild(maskGroup[ndx]));
  2626. return 1 === submasks.length ? mask += submasks[0] : mask += opts.groupmarker.start + submasks.join(opts.groupmarker.end + opts.alternatormarker + opts.groupmarker.start) + opts.groupmarker.end,
  2627. mask;
  2628. }
  2629. var maskGroups = {};
  2630. return opts.phoneCodes && (opts.phoneCodes && opts.phoneCodes.length > 1e3 && (mask = mask.substr(1, mask.length - 2),
  2631. reduceVariations(mask.split(opts.groupmarker.end + opts.alternatormarker + opts.groupmarker.start)),
  2632. mask = rebuild(maskGroups)), mask = mask.replace(/9/g, "\\9")), analyseMaskBase.call(this, mask, regexMask, opts);
  2633. }, Inputmask.extendAliases({
  2634. abstractphone: {
  2635. groupmarker: {
  2636. start: "<",
  2637. end: ">"
  2638. },
  2639. countrycode: "",
  2640. phoneCodes: [],
  2641. mask: function(opts) {
  2642. return opts.definitions = {
  2643. "#": Inputmask.prototype.definitions[9]
  2644. }, opts.phoneCodes.sort(maskSort);
  2645. },
  2646. keepStatic: !0,
  2647. onBeforeMask: function(value, opts) {
  2648. var processedValue = value.replace(/^0{1,2}/, "").replace(/[\s]/g, "");
  2649. return (processedValue.indexOf(opts.countrycode) > 1 || -1 === processedValue.indexOf(opts.countrycode)) && (processedValue = "+" + opts.countrycode + processedValue),
  2650. processedValue;
  2651. },
  2652. onUnMask: function(maskedValue, unmaskedValue, opts) {
  2653. return maskedValue.replace(/[()#-]/g, "");
  2654. },
  2655. inputmode: "tel"
  2656. }
  2657. }), Inputmask;
  2658. });
  2659. }, function(module, exports, __webpack_require__) {
  2660. "use strict";
  2661. var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__, _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) {
  2662. return typeof obj;
  2663. } : function(obj) {
  2664. return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
  2665. };
  2666. !function(factory) {
  2667. __WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(2), __webpack_require__(1) ],
  2668. __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2669. }(function($, Inputmask) {
  2670. return void 0 === $.fn.inputmask && ($.fn.inputmask = function(fn, options) {
  2671. var nptmask, input = this[0];
  2672. if (void 0 === options && (options = {}), "string" == typeof fn) switch (fn) {
  2673. case "unmaskedvalue":
  2674. return input && input.inputmask ? input.inputmask.unmaskedvalue() : $(input).val();
  2675. case "remove":
  2676. return this.each(function() {
  2677. this.inputmask && this.inputmask.remove();
  2678. });
  2679. case "getemptymask":
  2680. return input && input.inputmask ? input.inputmask.getemptymask() : "";
  2681. case "hasMaskedValue":
  2682. return !(!input || !input.inputmask) && input.inputmask.hasMaskedValue();
  2683. case "isComplete":
  2684. return !input || !input.inputmask || input.inputmask.isComplete();
  2685. case "getmetadata":
  2686. return input && input.inputmask ? input.inputmask.getmetadata() : void 0;
  2687. case "setvalue":
  2688. $(input).val(options), input && void 0 === input.inputmask && $(input).triggerHandler("setvalue");
  2689. break;
  2690. case "option":
  2691. if ("string" != typeof options) return this.each(function() {
  2692. if (void 0 !== this.inputmask) return this.inputmask.option(options);
  2693. });
  2694. if (input && void 0 !== input.inputmask) return input.inputmask.option(options);
  2695. break;
  2696. default:
  2697. return options.alias = fn, nptmask = new Inputmask(options), this.each(function() {
  2698. nptmask.mask(this);
  2699. });
  2700. } else {
  2701. if ("object" == (void 0 === fn ? "undefined" : _typeof(fn))) return nptmask = new Inputmask(fn),
  2702. void 0 === fn.mask && void 0 === fn.alias ? this.each(function() {
  2703. if (void 0 !== this.inputmask) return this.inputmask.option(fn);
  2704. nptmask.mask(this);
  2705. }) : this.each(function() {
  2706. nptmask.mask(this);
  2707. });
  2708. if (void 0 === fn) return this.each(function() {
  2709. nptmask = new Inputmask(options), nptmask.mask(this);
  2710. });
  2711. }
  2712. }), $.fn.inputmask;
  2713. });
  2714. }, function(module, exports, __webpack_require__) {
  2715. var content = __webpack_require__(12);
  2716. "string" == typeof content && (content = [ [ module.i, content, "" ] ]);
  2717. __webpack_require__(14)(content, {});
  2718. content.locals && (module.exports = content.locals);
  2719. }, function(module, exports, __webpack_require__) {
  2720. "use strict";
  2721. function _interopRequireDefault(obj) {
  2722. return obj && obj.__esModule ? obj : {
  2723. default: obj
  2724. };
  2725. }
  2726. __webpack_require__(8), __webpack_require__(3), __webpack_require__(4), __webpack_require__(5),
  2727. __webpack_require__(6);
  2728. var _inputmask = __webpack_require__(1), _inputmask2 = _interopRequireDefault(_inputmask), _inputmask3 = __webpack_require__(0), _inputmask4 = _interopRequireDefault(_inputmask3), _jquery = __webpack_require__(2), _jquery2 = _interopRequireDefault(_jquery);
  2729. _inputmask4.default === _jquery2.default && __webpack_require__(7), window.Inputmask = _inputmask2.default;
  2730. }, function(module, exports, __webpack_require__) {
  2731. "use strict";
  2732. var __WEBPACK_AMD_DEFINE_RESULT__;
  2733. "function" == typeof Symbol && Symbol.iterator;
  2734. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = function() {
  2735. return document;
  2736. }.call(exports, __webpack_require__, exports, module)) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2737. }, function(module, exports, __webpack_require__) {
  2738. "use strict";
  2739. var __WEBPACK_AMD_DEFINE_RESULT__;
  2740. "function" == typeof Symbol && Symbol.iterator;
  2741. void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = function() {
  2742. return window;
  2743. }.call(exports, __webpack_require__, exports, module)) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__);
  2744. }, function(module, exports, __webpack_require__) {
  2745. exports = module.exports = __webpack_require__(13)(void 0), exports.push([ module.i, "span.im-caret {\r\n -webkit-animation: 1s blink step-end infinite;\r\n animation: 1s blink step-end infinite;\r\n}\r\n\r\n@keyframes blink {\r\n from, to {\r\n border-right-color: black;\r\n }\r\n 50% {\r\n border-right-color: transparent;\r\n }\r\n}\r\n\r\n@-webkit-keyframes blink {\r\n from, to {\r\n border-right-color: black;\r\n }\r\n 50% {\r\n border-right-color: transparent;\r\n }\r\n}\r\n\r\nspan.im-static {\r\n color: grey;\r\n}\r\n\r\ndiv.im-colormask {\r\n display: inline-block;\r\n border-style: inset;\r\n border-width: 2px;\r\n -webkit-appearance: textfield;\r\n -moz-appearance: textfield;\r\n appearance: textfield;\r\n}\r\n\r\ndiv.im-colormask > input {\r\n display: inline-block;\r\n background-color: transparent;\r\n color: transparent;\r\n -webkit-appearance: caret;\r\n -moz-appearance: caret;\r\n appearance: caret;\r\n border-style: none;\r\n}\r\n\r\ndiv.im-colormask > input:focus {\r\n outline: none;\r\n}\r\n\r\ndiv.im-colormask > div {\r\n color: black;\r\n position: absolute;\r\n display: inline-block;\r\n left: 0; /*calculated*/\r\n}", "" ]);
  2746. }, function(module, exports) {
  2747. function cssWithMappingToString(item, useSourceMap) {
  2748. var content = item[1] || "", cssMapping = item[3];
  2749. if (!cssMapping) return content;
  2750. if (useSourceMap && "function" == typeof btoa) {
  2751. var sourceMapping = toComment(cssMapping), sourceURLs = cssMapping.sources.map(function(source) {
  2752. return "/*# sourceURL=" + cssMapping.sourceRoot + source + " */";
  2753. });
  2754. return [ content ].concat(sourceURLs).concat([ sourceMapping ]).join("\n");
  2755. }
  2756. return [ content ].join("\n");
  2757. }
  2758. function toComment(sourceMap) {
  2759. return "/*# sourceMappingURL=data:application/json;charset=utf-8;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */";
  2760. }
  2761. module.exports = function(useSourceMap) {
  2762. var list = [];
  2763. return list.toString = function() {
  2764. return this.map(function(item) {
  2765. var content = cssWithMappingToString(item, useSourceMap);
  2766. return item[2] ? "@media " + item[2] + "{" + content + "}" : content;
  2767. }).join("");
  2768. }, list.i = function(modules, mediaQuery) {
  2769. "string" == typeof modules && (modules = [ [ null, modules, "" ] ]);
  2770. for (var alreadyImportedModules = {}, i = 0; i < this.length; i++) {
  2771. var id = this[i][0];
  2772. "number" == typeof id && (alreadyImportedModules[id] = !0);
  2773. }
  2774. for (i = 0; i < modules.length; i++) {
  2775. var item = modules[i];
  2776. "number" == typeof item[0] && alreadyImportedModules[item[0]] || (mediaQuery && !item[2] ? item[2] = mediaQuery : mediaQuery && (item[2] = "(" + item[2] + ") and (" + mediaQuery + ")"),
  2777. list.push(item));
  2778. }
  2779. }, list;
  2780. };
  2781. }, function(module, exports, __webpack_require__) {
  2782. function addStylesToDom(styles, options) {
  2783. for (var i = 0; i < styles.length; i++) {
  2784. var item = styles[i], domStyle = stylesInDom[item.id];
  2785. if (domStyle) {
  2786. domStyle.refs++;
  2787. for (var j = 0; j < domStyle.parts.length; j++) domStyle.parts[j](item.parts[j]);
  2788. for (;j < item.parts.length; j++) domStyle.parts.push(addStyle(item.parts[j], options));
  2789. } else {
  2790. for (var parts = [], j = 0; j < item.parts.length; j++) parts.push(addStyle(item.parts[j], options));
  2791. stylesInDom[item.id] = {
  2792. id: item.id,
  2793. refs: 1,
  2794. parts: parts
  2795. };
  2796. }
  2797. }
  2798. }
  2799. function listToStyles(list) {
  2800. for (var styles = [], newStyles = {}, i = 0; i < list.length; i++) {
  2801. var item = list[i], id = item[0], css = item[1], media = item[2], sourceMap = item[3], part = {
  2802. css: css,
  2803. media: media,
  2804. sourceMap: sourceMap
  2805. };
  2806. newStyles[id] ? newStyles[id].parts.push(part) : styles.push(newStyles[id] = {
  2807. id: id,
  2808. parts: [ part ]
  2809. });
  2810. }
  2811. return styles;
  2812. }
  2813. function insertStyleElement(options, styleElement) {
  2814. var styleTarget = getElement(options.insertInto);
  2815. if (!styleTarget) throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.");
  2816. var lastStyleElementInsertedAtTop = styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];
  2817. if ("top" === options.insertAt) lastStyleElementInsertedAtTop ? lastStyleElementInsertedAtTop.nextSibling ? styleTarget.insertBefore(styleElement, lastStyleElementInsertedAtTop.nextSibling) : styleTarget.appendChild(styleElement) : styleTarget.insertBefore(styleElement, styleTarget.firstChild),
  2818. styleElementsInsertedAtTop.push(styleElement); else {
  2819. if ("bottom" !== options.insertAt) throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");
  2820. styleTarget.appendChild(styleElement);
  2821. }
  2822. }
  2823. function removeStyleElement(styleElement) {
  2824. styleElement.parentNode.removeChild(styleElement);
  2825. var idx = styleElementsInsertedAtTop.indexOf(styleElement);
  2826. idx >= 0 && styleElementsInsertedAtTop.splice(idx, 1);
  2827. }
  2828. function createStyleElement(options) {
  2829. var styleElement = document.createElement("style");
  2830. return options.attrs.type = "text/css", attachTagAttrs(styleElement, options.attrs),
  2831. insertStyleElement(options, styleElement), styleElement;
  2832. }
  2833. function createLinkElement(options) {
  2834. var linkElement = document.createElement("link");
  2835. return options.attrs.type = "text/css", options.attrs.rel = "stylesheet", attachTagAttrs(linkElement, options.attrs),
  2836. insertStyleElement(options, linkElement), linkElement;
  2837. }
  2838. function attachTagAttrs(element, attrs) {
  2839. Object.keys(attrs).forEach(function(key) {
  2840. element.setAttribute(key, attrs[key]);
  2841. });
  2842. }
  2843. function addStyle(obj, options) {
  2844. var styleElement, update, remove;
  2845. if (options.singleton) {
  2846. var styleIndex = singletonCounter++;
  2847. styleElement = singletonElement || (singletonElement = createStyleElement(options)),
  2848. update = applyToSingletonTag.bind(null, styleElement, styleIndex, !1), remove = applyToSingletonTag.bind(null, styleElement, styleIndex, !0);
  2849. } else obj.sourceMap && "function" == typeof URL && "function" == typeof URL.createObjectURL && "function" == typeof URL.revokeObjectURL && "function" == typeof Blob && "function" == typeof btoa ? (styleElement = createLinkElement(options),
  2850. update = updateLink.bind(null, styleElement, options), remove = function() {
  2851. removeStyleElement(styleElement), styleElement.href && URL.revokeObjectURL(styleElement.href);
  2852. }) : (styleElement = createStyleElement(options), update = applyToTag.bind(null, styleElement),
  2853. remove = function() {
  2854. removeStyleElement(styleElement);
  2855. });
  2856. return update(obj), function(newObj) {
  2857. if (newObj) {
  2858. if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) return;
  2859. update(obj = newObj);
  2860. } else remove();
  2861. };
  2862. }
  2863. function applyToSingletonTag(styleElement, index, remove, obj) {
  2864. var css = remove ? "" : obj.css;
  2865. if (styleElement.styleSheet) styleElement.styleSheet.cssText = replaceText(index, css); else {
  2866. var cssNode = document.createTextNode(css), childNodes = styleElement.childNodes;
  2867. childNodes[index] && styleElement.removeChild(childNodes[index]), childNodes.length ? styleElement.insertBefore(cssNode, childNodes[index]) : styleElement.appendChild(cssNode);
  2868. }
  2869. }
  2870. function applyToTag(styleElement, obj) {
  2871. var css = obj.css, media = obj.media;
  2872. if (media && styleElement.setAttribute("media", media), styleElement.styleSheet) styleElement.styleSheet.cssText = css; else {
  2873. for (;styleElement.firstChild; ) styleElement.removeChild(styleElement.firstChild);
  2874. styleElement.appendChild(document.createTextNode(css));
  2875. }
  2876. }
  2877. function updateLink(linkElement, options, obj) {
  2878. var css = obj.css, sourceMap = obj.sourceMap, autoFixUrls = void 0 === options.convertToAbsoluteUrls && sourceMap;
  2879. (options.convertToAbsoluteUrls || autoFixUrls) && (css = fixUrls(css)), sourceMap && (css += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */");
  2880. var blob = new Blob([ css ], {
  2881. type: "text/css"
  2882. }), oldSrc = linkElement.href;
  2883. linkElement.href = URL.createObjectURL(blob), oldSrc && URL.revokeObjectURL(oldSrc);
  2884. }
  2885. var stylesInDom = {}, isOldIE = function(fn) {
  2886. var memo;
  2887. return function() {
  2888. return void 0 === memo && (memo = fn.apply(this, arguments)), memo;
  2889. };
  2890. }(function() {
  2891. return window && document && document.all && !window.atob;
  2892. }), getElement = function(fn) {
  2893. var memo = {};
  2894. return function(selector) {
  2895. return void 0 === memo[selector] && (memo[selector] = fn.call(this, selector)),
  2896. memo[selector];
  2897. };
  2898. }(function(styleTarget) {
  2899. return document.querySelector(styleTarget);
  2900. }), singletonElement = null, singletonCounter = 0, styleElementsInsertedAtTop = [], fixUrls = __webpack_require__(15);
  2901. module.exports = function(list, options) {
  2902. if ("undefined" != typeof DEBUG && DEBUG && "object" != typeof document) throw new Error("The style-loader cannot be used in a non-browser environment");
  2903. options = options || {}, options.attrs = "object" == typeof options.attrs ? options.attrs : {},
  2904. void 0 === options.singleton && (options.singleton = isOldIE()), void 0 === options.insertInto && (options.insertInto = "head"),
  2905. void 0 === options.insertAt && (options.insertAt = "bottom");
  2906. var styles = listToStyles(list);
  2907. return addStylesToDom(styles, options), function(newList) {
  2908. for (var mayRemove = [], i = 0; i < styles.length; i++) {
  2909. var item = styles[i], domStyle = stylesInDom[item.id];
  2910. domStyle.refs--, mayRemove.push(domStyle);
  2911. }
  2912. if (newList) {
  2913. addStylesToDom(listToStyles(newList), options);
  2914. }
  2915. for (var i = 0; i < mayRemove.length; i++) {
  2916. var domStyle = mayRemove[i];
  2917. if (0 === domStyle.refs) {
  2918. for (var j = 0; j < domStyle.parts.length; j++) domStyle.parts[j]();
  2919. delete stylesInDom[domStyle.id];
  2920. }
  2921. }
  2922. };
  2923. };
  2924. var replaceText = function() {
  2925. var textStore = [];
  2926. return function(index, replacement) {
  2927. return textStore[index] = replacement, textStore.filter(Boolean).join("\n");
  2928. };
  2929. }();
  2930. }, function(module, exports) {
  2931. module.exports = function(css) {
  2932. var location = "undefined" != typeof window && window.location;
  2933. if (!location) throw new Error("fixUrls requires window.location");
  2934. if (!css || "string" != typeof css) return css;
  2935. var baseUrl = location.protocol + "//" + location.host, currentDir = baseUrl + location.pathname.replace(/\/[^\/]*$/, "/");
  2936. return css.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi, function(fullMatch, origUrl) {
  2937. var unquotedOrigUrl = origUrl.trim().replace(/^"(.*)"$/, function(o, $1) {
  2938. return $1;
  2939. }).replace(/^'(.*)'$/, function(o, $1) {
  2940. return $1;
  2941. });
  2942. if (/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/)/i.test(unquotedOrigUrl)) return fullMatch;
  2943. var newUrl;
  2944. return newUrl = 0 === unquotedOrigUrl.indexOf("//") ? unquotedOrigUrl : 0 === unquotedOrigUrl.indexOf("/") ? baseUrl + unquotedOrigUrl : currentDir + unquotedOrigUrl.replace(/^\.\//, ""),
  2945. "url(" + JSON.stringify(newUrl) + ")";
  2946. });
  2947. };
  2948. } ]);