jquery.inputmask.bundle.js 173 KB

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