jquery.inputmask.bundle.js 171 KB

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