arrow-admin
Version:
Arrow Admin Website
713 lines (706 loc) • 89.1 kB
JavaScript
/*!
* jquery.inputmask.js
* http://github.com/RobinHerbots/jquery.inputmask
* Copyright (c) 2010 - 2015 Robin Herbots
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
* Version: 3.1.63
*/
!function(factory) {
"function" == typeof define && define.amd ? define([ "jquery" ], factory) : "object" == typeof exports ? module.exports = factory(require("jquery")) : factory(jQuery);
}(function($) {
function isInputEventSupported(eventName) {
var el = document.createElement("input"), evName = "on" + eventName, isSupported = evName in el;
return isSupported || (el.setAttribute(evName, "return;"), isSupported = "function" == typeof el[evName]),
el = null, isSupported;
}
function isInputTypeSupported(inputType) {
var isSupported = "text" == inputType || "tel" == inputType || "password" == inputType;
if (!isSupported) {
var el = document.createElement("input");
el.setAttribute("type", inputType), isSupported = "text" === el.type, el = null;
}
return isSupported;
}
function resolveAlias(aliasStr, options, opts) {
var aliasDefinition = opts.aliases[aliasStr];
return aliasDefinition ? (aliasDefinition.alias && resolveAlias(aliasDefinition.alias, void 0, opts),
$.extend(!0, opts, aliasDefinition), $.extend(!0, opts, options), !0) : !1;
}
function generateMaskSet(opts, nocache) {
function analyseMask(mask) {
function maskToken(isGroup, isOptional, isQuantifier, isAlternator) {
this.matches = [], this.isGroup = isGroup || !1, this.isOptional = isOptional || !1,
this.isQuantifier = isQuantifier || !1, this.isAlternator = isAlternator || !1,
this.quantifier = {
min: 1,
max: 1
};
}
function insertTestDefinition(mtoken, element, position) {
var maskdef = opts.definitions[element], newBlockMarker = 0 == mtoken.matches.length;
if (position = void 0 != position ? position : mtoken.matches.length, maskdef && !escaped) {
maskdef.placeholder = $.isFunction(maskdef.placeholder) ? maskdef.placeholder.call(this, opts) : maskdef.placeholder;
for (var prevalidators = maskdef.prevalidator, prevalidatorsL = prevalidators ? prevalidators.length : 0, i = 1; i < maskdef.cardinality; i++) {
var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator.validator, cardinality = prevalidator.cardinality;
mtoken.matches.splice(position++, 0, {
fn: validator ? "string" == typeof validator ? new RegExp(validator) : new function() {
this.test = validator;
}() : new RegExp("."),
cardinality: cardinality ? cardinality : 1,
optionality: mtoken.isOptional,
newBlockMarker: newBlockMarker,
casing: maskdef.casing,
def: maskdef.definitionSymbol || element,
placeholder: maskdef.placeholder,
mask: element
});
}
mtoken.matches.splice(position++, 0, {
fn: maskdef.validator ? "string" == typeof maskdef.validator ? new RegExp(maskdef.validator) : new function() {
this.test = maskdef.validator;
}() : new RegExp("."),
cardinality: maskdef.cardinality,
optionality: mtoken.isOptional,
newBlockMarker: newBlockMarker,
casing: maskdef.casing,
def: maskdef.definitionSymbol || element,
placeholder: maskdef.placeholder,
mask: element
});
} else mtoken.matches.splice(position++, 0, {
fn: null,
cardinality: 0,
optionality: mtoken.isOptional,
newBlockMarker: newBlockMarker,
casing: null,
def: element,
placeholder: void 0,
mask: element
}), escaped = !1;
}
for (var match, m, openingToken, currentOpeningToken, alternator, lastMatch, tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})\??|[^.?*+^${[]()|\\]+|./g, escaped = !1, currentToken = new maskToken(), openenings = [], maskTokens = []; match = tokenizer.exec(mask); ) switch (m = match[0],
m.charAt(0)) {
case opts.optionalmarker.end:
case opts.groupmarker.end:
if (openingToken = openenings.pop(), openenings.length > 0) {
if (currentOpeningToken = openenings[openenings.length - 1], currentOpeningToken.matches.push(openingToken),
currentOpeningToken.isAlternator) {
alternator = openenings.pop();
for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
}
} else currentToken.matches.push(openingToken);
break;
case opts.optionalmarker.start:
openenings.push(new maskToken(!1, !0));
break;
case opts.groupmarker.start:
openenings.push(new maskToken(!0));
break;
case opts.quantifiermarker.start:
var quantifier = new maskToken(!1, !1, !0);
m = m.replace(/[{}]/g, "");
var mq = m.split(","), mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]), mq1 = 1 == mq.length ? mq0 : isNaN(mq[1]) ? mq[1] : parseInt(mq[1]);
if (("*" == mq1 || "+" == mq1) && (mq0 = "*" == mq1 ? 0 : 1), quantifier.quantifier = {
min: mq0,
max: mq1
}, openenings.length > 0) {
var matches = openenings[openenings.length - 1].matches;
if (match = matches.pop(), !match.isGroup) {
var groupToken = new maskToken(!0);
groupToken.matches.push(match), match = groupToken;
}
matches.push(match), matches.push(quantifier);
} else {
if (match = currentToken.matches.pop(), !match.isGroup) {
var groupToken = new maskToken(!0);
groupToken.matches.push(match), match = groupToken;
}
currentToken.matches.push(match), currentToken.matches.push(quantifier);
}
break;
case opts.escapeChar:
escaped = !0;
break;
case opts.alternatormarker:
openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
lastMatch = currentOpeningToken.matches.pop()) : lastMatch = currentToken.matches.pop(),
lastMatch.isAlternator ? openenings.push(lastMatch) : (alternator = new maskToken(!1, !1, !1, !0),
alternator.matches.push(lastMatch), openenings.push(alternator));
break;
default:
if (openenings.length > 0) {
if (currentOpeningToken = openenings[openenings.length - 1], currentOpeningToken.matches.length > 0 && !currentOpeningToken.isAlternator && (lastMatch = currentOpeningToken.matches[currentOpeningToken.matches.length - 1],
lastMatch.isGroup && (lastMatch.isGroup = !1, insertTestDefinition(lastMatch, opts.groupmarker.start, 0),
insertTestDefinition(lastMatch, opts.groupmarker.end))), insertTestDefinition(currentOpeningToken, m),
currentOpeningToken.isAlternator) {
alternator = openenings.pop();
for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
}
} else currentToken.matches.length > 0 && (lastMatch = currentToken.matches[currentToken.matches.length - 1],
lastMatch.isGroup && (lastMatch.isGroup = !1, insertTestDefinition(lastMatch, opts.groupmarker.start, 0),
insertTestDefinition(lastMatch, opts.groupmarker.end))), insertTestDefinition(currentToken, m);
}
return currentToken.matches.length > 0 && (lastMatch = currentToken.matches[currentToken.matches.length - 1],
lastMatch.isGroup && (lastMatch.isGroup = !1, insertTestDefinition(lastMatch, opts.groupmarker.start, 0),
insertTestDefinition(lastMatch, opts.groupmarker.end)), maskTokens.push(currentToken)),
maskTokens;
}
function generateMask(mask, metadata) {
if (void 0 == mask || "" == mask) return void 0;
if (1 == mask.length && 0 == opts.greedy && 0 != opts.repeat && (opts.placeholder = ""),
opts.repeat > 0 || "*" == opts.repeat || "+" == opts.repeat) {
var repeatStart = "*" == opts.repeat ? 0 : "+" == opts.repeat ? 1 : opts.repeat;
mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
}
var masksetDefinition;
return void 0 == $.inputmask.masksCache[mask] || nocache === !0 ? (masksetDefinition = {
mask: mask,
maskToken: analyseMask(mask),
validPositions: {},
_buffer: void 0,
buffer: void 0,
tests: {},
metadata: metadata
}, nocache !== !0 && ($.inputmask.masksCache[mask] = masksetDefinition)) : masksetDefinition = $.extend(!0, {}, $.inputmask.masksCache[mask]),
masksetDefinition;
}
function preProcessMask(mask) {
if (mask = mask.toString(), opts.numericInput) {
mask = mask.split("").reverse();
for (var ndx = 0; ndx < mask.length; ndx++) mask[ndx] == opts.optionalmarker.start ? mask[ndx] = opts.optionalmarker.end : mask[ndx] == opts.optionalmarker.end ? mask[ndx] = opts.optionalmarker.start : mask[ndx] == opts.groupmarker.start ? mask[ndx] = opts.groupmarker.end : mask[ndx] == opts.groupmarker.end && (mask[ndx] = opts.groupmarker.start);
mask = mask.join("");
}
return mask;
}
var ms = void 0;
if ($.isFunction(opts.mask) && (opts.mask = opts.mask.call(this, opts)), $.isArray(opts.mask)) {
if (opts.mask.length > 1) {
opts.keepStatic = void 0 == opts.keepStatic ? !0 : opts.keepStatic;
var altMask = "(";
return $.each(opts.mask, function(ndx, msk) {
altMask.length > 1 && (altMask += ")|("), altMask += preProcessMask(void 0 == msk.mask || $.isFunction(msk.mask) ? msk : msk.mask);
}), altMask += ")", generateMask(altMask, opts.mask);
}
opts.mask = opts.mask.pop();
}
return opts.mask && (ms = void 0 == opts.mask.mask || $.isFunction(opts.mask.mask) ? generateMask(preProcessMask(opts.mask), opts.mask) : generateMask(preProcessMask(opts.mask.mask), opts.mask)),
ms;
}
function maskScope(actionObj, maskset, opts) {
function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
minimalPos = minimalPos || 0;
var ndxIntlzr, test, testPos, maskTemplate = [], pos = 0;
do {
if (baseOnInput === !0 && getMaskSet().validPositions[pos]) {
var validPos = getMaskSet().validPositions[pos];
test = validPos.match, ndxIntlzr = validPos.locator.slice(), maskTemplate.push(includeInput === !0 ? validPos.input : getPlaceholder(pos, test));
} else testPos = getTestTemplate(pos, ndxIntlzr, pos - 1), test = testPos.match,
ndxIntlzr = testPos.locator.slice(), maskTemplate.push(getPlaceholder(pos, test));
pos++;
} while ((void 0 == maxLength || maxLength > pos - 1) && null != test.fn || null == test.fn && "" != test.def || minimalPos >= pos);
return maskTemplate.pop(), maskTemplate;
}
function getMaskSet() {
return maskset;
}
function resetMaskSet(soft) {
var maskset = getMaskSet();
maskset.buffer = void 0, maskset.tests = {}, soft !== !0 && (maskset._buffer = void 0,
maskset.validPositions = {}, maskset.p = 0);
}
function getLastValidPosition(closestTo, strict) {
var maskset = getMaskSet(), lastValidPosition = -1, valids = maskset.validPositions;
void 0 == closestTo && (closestTo = -1);
var before = lastValidPosition, after = lastValidPosition;
for (var posNdx in valids) {
var psNdx = parseInt(posNdx);
valids[psNdx] && (strict || null != valids[psNdx].match.fn) && (closestTo >= psNdx && (before = psNdx),
psNdx >= closestTo && (after = psNdx));
}
return lastValidPosition = -1 != before && closestTo - before > 1 || closestTo > after ? before : after;
}
function setValidPosition(pos, validTest, fromSetValid) {
if (opts.insertMode && void 0 != getMaskSet().validPositions[pos] && void 0 == fromSetValid) {
var i, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), lvp = getLastValidPosition();
for (i = pos; lvp >= i; i++) delete getMaskSet().validPositions[i];
getMaskSet().validPositions[pos] = validTest;
var j, valid = !0, vps = getMaskSet().validPositions;
for (i = j = pos; lvp >= i; i++) {
var t = positionsClone[i];
if (void 0 != t) for (var posMatch = j, prevPosMatch = -1; posMatch < getMaskLength() && (null == t.match.fn && vps[i] && (vps[i].match.optionalQuantifier === !0 || vps[i].match.optionality === !0) || null != t.match.fn); ) {
if (null == t.match.fn || !opts.keepStatic && vps[i] && (void 0 != vps[i + 1] && getTests(i + 1, vps[i].locator.slice(), i).length > 1 || void 0 != vps[i].alternation) ? posMatch++ : posMatch = seekNext(j),
positionCanMatchDefinition(posMatch, t.match.def)) {
valid = isValid(posMatch, t.input, !0, !0) !== !1, j = posMatch;
break;
}
if (valid = null == t.match.fn, prevPosMatch == posMatch) break;
prevPosMatch = posMatch;
}
if (!valid) break;
}
if (!valid) return getMaskSet().validPositions = $.extend(!0, {}, positionsClone),
!1;
} else getMaskSet().validPositions[pos] = validTest;
return !0;
}
function stripValidPositions(start, end, nocheck, strict) {
var i, startPos = start;
getMaskSet().p = start, void 0 != getMaskSet().validPositions[start] && getMaskSet().validPositions[start].input == opts.radixPoint && (end++,
startPos++);
for (i = startPos; end > i; i++) void 0 != getMaskSet().validPositions[i] && (nocheck === !0 || 0 != opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts)) && delete getMaskSet().validPositions[i];
for (resetMaskSet(!0), i = startPos + 1; i <= getLastValidPosition(); ) {
for (;void 0 != getMaskSet().validPositions[startPos]; ) startPos++;
var s = getMaskSet().validPositions[startPos];
startPos > i && (i = startPos + 1);
var t = getMaskSet().validPositions[i];
void 0 != t && void 0 == s ? (positionCanMatchDefinition(startPos, t.match.def) && isValid(startPos, t.input, !0) !== !1 && (delete getMaskSet().validPositions[i],
i++), startPos++) : i++;
}
var lvp = getLastValidPosition(), ml = getMaskLength();
for (lvp >= start && void 0 != getMaskSet().validPositions[lvp] && getMaskSet().validPositions[lvp].input == opts.radixPoint && delete getMaskSet().validPositions[lvp],
i = lvp + 1; ml >= i; i++) getMaskSet().validPositions[i] && delete getMaskSet().validPositions[i];
resetMaskSet(!0);
}
function getTestTemplate(pos, ndxIntlzr, tstPs) {
var testPos = getMaskSet().validPositions[pos];
if (void 0 == testPos) for (var testPositions = getTests(pos, ndxIntlzr, tstPs), lvp = getLastValidPosition(), lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0], lvTestAltArr = void 0 != lvTest.alternation ? lvTest.locator[lvTest.alternation].toString().split(",") : [], ndx = 0; ndx < testPositions.length && (testPos = testPositions[ndx],
!(testPos.match && (opts.greedy && testPos.match.optionalQuantifier !== !0 || (testPos.match.optionality === !1 || testPos.match.newBlockMarker === !1) && testPos.match.optionalQuantifier !== !0) && (void 0 == lvTest.alternation || lvTest.alternation != testPos.alternation || void 0 != testPos.locator[lvTest.alternation] && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr)))); ndx++) ;
return testPos;
}
function getTest(pos) {
return getMaskSet().validPositions[pos] ? getMaskSet().validPositions[pos].match : getTests(pos)[0].match;
}
function positionCanMatchDefinition(pos, def) {
for (var valid = !1, tests = getTests(pos), tndx = 0; tndx < tests.length; tndx++) if (tests[tndx].match && tests[tndx].match.def == def) {
valid = !0;
break;
}
return valid;
}
function getTests(pos, ndxIntlzr, tstPs, cacheable) {
function ResolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) {
function handleMatch(match, loopNdx, quantifierRecurse) {
if (testPos > 1e4) return alert("jquery.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),
!0;
if (testPos == pos && void 0 == match.matches) return matches.push({
match: match,
locator: loopNdx.reverse()
}), !0;
if (void 0 != match.matches) {
if (match.isGroup && quantifierRecurse !== !0) {
if (match = handleMatch(maskToken.matches[tndx + 1], loopNdx)) return !0;
} else if (match.isOptional) {
var optionalToken = match;
if (match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) {
var latestMatch = matches[matches.length - 1].match, isFirstMatch = 0 == $.inArray(latestMatch, optionalToken.matches);
if (!isFirstMatch) return !0;
insertStop = !0, testPos = pos;
}
} else if (match.isAlternator) {
var maltMatches, alternateToken = match, malternateMatches = [], currentMatches = matches.slice(), loopNdxCnt = loopNdx.length, altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
if (-1 == altIndex || "string" == typeof altIndex) {
var currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr = [];
"string" == typeof altIndex && (altIndexArr = altIndex.split(","));
for (var amndx = 0; amndx < alternateToken.matches.length; amndx++) {
if (matches = [], match = handleMatch(alternateToken.matches[amndx], [ amndx ].concat(loopNdx), quantifierRecurse) || match,
match !== !0 && void 0 != match && altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length) {
var ntndx = maskToken.matches.indexOf(match) + 1;
maskToken.matches.length > ntndx && (match = handleMatch(maskToken.matches[ntndx], [ ntndx ].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse),
match && (altIndexArr.push(ntndx.toString()), $.each(matches, function(ndx, lmnt) {
lmnt.alternation = loopNdx.length - 1;
})));
}
maltMatches = matches.slice(), testPos = currentPos, matches = [];
for (var i = 0; i < ndxInitializerClone.length; i++) ndxInitializer[i] = ndxInitializerClone[i];
for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
var altMatch = maltMatches[ndx1];
altMatch.alternation = altMatch.alternation || loopNdxCnt;
for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
var altMatch2 = malternateMatches[ndx2];
if (altMatch.match.mask == altMatch2.match.mask && ("string" != typeof altIndex || -1 != $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr))) {
maltMatches.splice(ndx1, 1), ndx1--, altMatch2.locator[altMatch.alternation] = altMatch2.locator[altMatch.alternation] + "," + altMatch.locator[altMatch.alternation],
altMatch2.alternation = altMatch.alternation;
break;
}
}
}
malternateMatches = malternateMatches.concat(maltMatches);
}
"string" == typeof altIndex && (malternateMatches = $.map(malternateMatches, function(lmnt, ndx) {
if (isFinite(ndx)) {
var mamatch, alternation = lmnt.alternation, altLocArr = lmnt.locator[alternation].toString().split(",");
lmnt.locator[alternation] = void 0, lmnt.alternation = void 0;
for (var alndx = 0; alndx < altLocArr.length; alndx++) mamatch = -1 != $.inArray(altLocArr[alndx], altIndexArr),
mamatch && (void 0 != lmnt.locator[alternation] ? (lmnt.locator[alternation] += ",",
lmnt.locator[alternation] += altLocArr[alndx]) : lmnt.locator[alternation] = parseInt(altLocArr[alndx]),
lmnt.alternation = alternation);
if (void 0 != lmnt.locator[alternation]) return lmnt;
}
})), matches = currentMatches.concat(malternateMatches), testPos = pos, insertStop = matches.length > 0;
} else match = alternateToken.matches[altIndex] ? handleMatch(alternateToken.matches[altIndex], [ altIndex ].concat(loopNdx), quantifierRecurse) : !1;
if (match) return !0;
} else if (match.isQuantifier && quantifierRecurse !== !0) for (var qt = match, qndx = ndxInitializer.length > 0 && quantifierRecurse !== !0 ? ndxInitializer.shift() : 0; qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max) && pos >= testPos; qndx++) {
var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
if (match = handleMatch(tokenGroup, [ qndx ].concat(loopNdx), !0)) {
var latestMatch = matches[matches.length - 1].match;
latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1;
var isFirstMatch = 0 == $.inArray(latestMatch, tokenGroup.matches);
if (isFirstMatch) {
if (qndx > qt.quantifier.min - 1) {
insertStop = !0, testPos = pos;
break;
}
return !0;
}
return !0;
}
} else if (match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) return !0;
} else testPos++;
}
for (var tndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; tndx < maskToken.matches.length; tndx++) if (maskToken.matches[tndx].isQuantifier !== !0) {
var match = handleMatch(maskToken.matches[tndx], [ tndx ].concat(loopNdx), quantifierRecurse);
if (match && testPos == pos) return match;
if (testPos > pos) break;
}
}
var maskTokens = getMaskSet().maskToken, testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [ 0 ], matches = [], insertStop = !1;
if (cacheable === !0 && getMaskSet().tests[pos]) return getMaskSet().tests[pos];
if (void 0 == ndxIntlzr) {
for (var test, previousPos = pos - 1; void 0 == (test = getMaskSet().validPositions[previousPos]) && previousPos > -1 && (!getMaskSet().tests[previousPos] || void 0 == (test = getMaskSet().tests[previousPos][0])); ) previousPos--;
void 0 != test && previousPos > -1 && (testPos = previousPos, ndxInitializer = test.locator.slice());
}
for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
var match = ResolveTestFromToken(maskTokens[mtndx], ndxInitializer, [ mtndx ]);
if (match && testPos == pos || testPos > pos) break;
}
return (0 == matches.length || insertStop) && matches.push({
match: {
fn: null,
cardinality: 0,
optionality: !0,
casing: null,
def: ""
},
locator: []
}), getMaskSet().tests[pos] = $.extend(!0, [], matches), getMaskSet().tests[pos];
}
function getBufferTemplate() {
return void 0 == getMaskSet()._buffer && (getMaskSet()._buffer = getMaskTemplate(!1, 1)),
getMaskSet()._buffer;
}
function getBuffer() {
return void 0 == getMaskSet().buffer && (getMaskSet().buffer = getMaskTemplate(!0, getLastValidPosition(), !0)),
getMaskSet().buffer;
}
function refreshFromBuffer(start, end, buffer) {
if (buffer = buffer || getBuffer().slice(), start === !0) resetMaskSet(), start = 0,
end = buffer.length; else for (var i = start; end > i; i++) delete getMaskSet().validPositions[i],
delete getMaskSet().tests[i];
for (var i = start; end > i; i++) buffer[i] != opts.skipOptionalPartCharacter && isValid(i, buffer[i], !0, !0);
}
function casing(elem, test) {
switch (test.casing) {
case "upper":
elem = elem.toUpperCase();
break;
case "lower":
elem = elem.toLowerCase();
}
return elem;
}
function checkAlternationMatch(altArr1, altArr2) {
for (var altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1), isMatch = !1, alndx = 0; alndx < altArr1.length; alndx++) if (-1 != $.inArray(altArr1[alndx], altArrC)) {
isMatch = !0;
break;
}
return isMatch;
}
function isValid(pos, c, strict, fromSetValid) {
function _isValid(position, c, strict, fromSetValid) {
var rslt = !1;
return $.each(getTests(position), function(ndx, tst) {
for (var test = tst.match, loopend = c ? 1 : 0, chrs = "", i = (getBuffer(), test.cardinality); i > loopend; i--) chrs += getBufferElement(position - (i - 1));
if (c && (chrs += c), rslt = null != test.fn ? test.fn.test(chrs, getMaskSet(), position, strict, opts) : c != test.def && c != opts.skipOptionalPartCharacter || "" == test.def ? !1 : {
c: test.def,
pos: position
}, rslt !== !1) {
var elem = void 0 != rslt.c ? rslt.c : c;
elem = elem == opts.skipOptionalPartCharacter && null === test.fn ? test.def : elem;
var validatedPos = position, possibleModifiedBuffer = getBuffer();
if (void 0 != rslt.remove && ($.isArray(rslt.remove) || (rslt.remove = [ rslt.remove ]),
$.each(rslt.remove.sort(function(a, b) {
return b - a;
}), function(ndx, lmnt) {
stripValidPositions(lmnt, lmnt + 1, !0);
})), void 0 != rslt.insert && ($.isArray(rslt.insert) || (rslt.insert = [ rslt.insert ]),
$.each(rslt.insert.sort(function(a, b) {
return a - b;
}), function(ndx, lmnt) {
isValid(lmnt.pos, lmnt.c, !0);
})), rslt.refreshFromBuffer) {
var refresh = rslt.refreshFromBuffer;
if (strict = !0, refreshFromBuffer(refresh === !0 ? refresh : refresh.start, refresh.end, possibleModifiedBuffer),
void 0 == rslt.pos && void 0 == rslt.c) return rslt.pos = getLastValidPosition(),
!1;
if (validatedPos = void 0 != rslt.pos ? rslt.pos : position, validatedPos != position) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0)),
!1;
} else if (rslt !== !0 && void 0 != rslt.pos && rslt.pos != position && (validatedPos = rslt.pos,
refreshFromBuffer(position, validatedPos), validatedPos != position)) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0)),
!1;
return 1 != rslt && void 0 == rslt.pos && void 0 == rslt.c ? !1 : (ndx > 0 && resetMaskSet(!0),
setValidPosition(validatedPos, $.extend({}, tst, {
input: casing(elem, test)
}), fromSetValid) || (rslt = !1), !1);
}
}), rslt;
}
function alternate(pos, c, strict, fromSetValid) {
for (var lastAlt, alternation, isValidRslt, altPos, validPsClone = $.extend(!0, {}, getMaskSet().validPositions), lAlt = getLastValidPosition(); lAlt >= 0 && (altPos = getMaskSet().validPositions[lAlt],
!altPos || void 0 == altPos.alternation || (lastAlt = lAlt, alternation = getMaskSet().validPositions[lastAlt].alternation,
getTestTemplate(lastAlt).locator[altPos.alternation] == altPos.locator[altPos.alternation])); lAlt--) ;
if (void 0 != alternation) for (var decisionPos in getMaskSet().validPositions) if (altPos = getMaskSet().validPositions[decisionPos],
parseInt(decisionPos) > parseInt(lastAlt) && void 0 != altPos.alternation) {
var altNdxs = getMaskSet().validPositions[lastAlt].locator[alternation].toString().split(","), decisionTaker = altPos.locator[alternation] || altNdxs[0];
decisionTaker.length > 0 && (decisionTaker = decisionTaker.split(",")[0]);
for (var mndx = 0; mndx < altNdxs.length; mndx++) if (decisionTaker < altNdxs[mndx]) {
for (var possibilityPos, possibilities, dp = decisionPos - 1; dp >= 0; dp--) if (possibilityPos = getMaskSet().validPositions[dp],
void 0 != possibilityPos) {
possibilities = possibilityPos.locator[alternation], possibilityPos.locator[alternation] = parseInt(altNdxs[mndx]);
break;
}
if (decisionTaker != possibilityPos.locator[alternation]) {
for (var validInputs = [], i = decisionPos; i < getLastValidPosition() + 1; i++) {
var validPos = getMaskSet().validPositions[i];
validPos && null != validPos.match.fn && validInputs.push(validPos.input), delete getMaskSet().validPositions[i],
delete getMaskSet().tests[i];
}
for (resetMaskSet(!0), opts.keepStatic = !opts.keepStatic, isValidRslt = !0; validInputs.length > 0; ) {
var input = validInputs.shift();
if (input != opts.skipOptionalPartCharacter && !(isValidRslt = isValid(getLastValidPosition() + 1, input, !1, !0))) break;
}
if (possibilityPos.alternation = alternation, possibilityPos.locator[alternation] = possibilities,
isValidRslt) {
var targetLvp = getLastValidPosition(pos) + 1;
isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid);
}
if (opts.keepStatic = !opts.keepStatic, isValidRslt) return isValidRslt;
resetMaskSet(), getMaskSet().validPositions = $.extend(!0, {}, validPsClone);
}
}
break;
}
return !1;
}
function trackbackAlternations(originalPos, newPos) {
for (var vp = getMaskSet().validPositions[newPos], targetLocator = vp.locator, tll = targetLocator.length, ps = originalPos; newPos > ps; ps++) if (!isMask(ps)) {
var tests = getTests(ps), bestMatch = tests[0], equality = -1;
$.each(tests, function(ndx, tst) {
for (var i = 0; tll > i; i++) tst.locator[i] && checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(",")) && i > equality && (equality = i,
bestMatch = tst);
}), setValidPosition(ps, $.extend({}, bestMatch, {
input: bestMatch.match.def
}), !0);
}
}
strict = strict === !0;
for (var buffer = getBuffer(), pndx = pos - 1; pndx > -1 && !getMaskSet().validPositions[pndx]; pndx--) ;
for (pndx++; pos > pndx; pndx++) void 0 == getMaskSet().validPositions[pndx] && ((!isMask(pndx) || buffer[pndx] != getPlaceholder(pndx)) && getTests(pndx).length > 1 || buffer[pndx] == opts.radixPoint || "0" == buffer[pndx] && $.inArray(opts.radixPoint, buffer) < pndx) && _isValid(pndx, buffer[pndx], !0);
var maskPos = pos, result = !1, positionsClone = $.extend(!0, {}, getMaskSet().validPositions);
if (maskPos < getMaskLength() && (result = _isValid(maskPos, c, strict, fromSetValid),
(!strict || fromSetValid) && result === !1)) {
var currentPosValid = getMaskSet().validPositions[maskPos];
if (!currentPosValid || null != currentPosValid.match.fn || currentPosValid.match.def != c && c != opts.skipOptionalPartCharacter) {
if ((opts.insertMode || void 0 == getMaskSet().validPositions[seekNext(maskPos)]) && !isMask(maskPos)) for (var nPos = maskPos + 1, snPos = seekNext(maskPos); snPos >= nPos; nPos++) if (result = _isValid(nPos, c, strict, fromSetValid),
result !== !1) {
trackbackAlternations(maskPos, nPos), maskPos = nPos;
break;
}
} else result = {
caret: seekNext(maskPos)
};
}
if (result === !1 && opts.keepStatic && isComplete(buffer) && (result = alternate(pos, c, strict, fromSetValid)),
result === !0 && (result = {
pos: maskPos
}), $.isFunction(opts.postValidation) && 0 != result && !strict) {
resetMaskSet(!0);
var postValidResult = opts.postValidation(getBuffer(), opts);
if (!postValidResult) return resetMaskSet(!0), getMaskSet().validPositions = $.extend(!0, {}, positionsClone),
!1;
}
return result;
}
function isMask(pos) {
var test = getTest(pos);
if (null != test.fn) return test.fn;
if (!opts.keepStatic && void 0 == getMaskSet().validPositions[pos]) {
for (var tests = getTests(pos), staticAlternations = !0, i = 0; i < tests.length; i++) if ("" != tests[i].match.def && (void 0 == tests[i].alternation || tests[i].locator[tests[i].alternation].length > 1)) {
staticAlternations = !1;
break;
}
return staticAlternations;
}
return !1;
}
function getMaskLength() {
var maskLength;
maxLength = $el.prop("maxLength"), -1 == maxLength && (maxLength = void 0);
var pos, lvp = getLastValidPosition(), testPos = getMaskSet().validPositions[lvp], ndxIntlzr = void 0 != testPos ? testPos.locator.slice() : void 0;
for (pos = lvp + 1; void 0 == testPos || null != testPos.match.fn || null == testPos.match.fn && "" != testPos.match.def; pos++) testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
ndxIntlzr = testPos.locator.slice();
var lastTest = getTest(pos - 1);
return maskLength = "" != lastTest.def ? pos : pos - 1, void 0 == maxLength || maxLength > maskLength ? maskLength : maxLength;
}
function seekNext(pos) {
var maskL = getMaskLength();
if (pos >= maskL) return maskL;
for (var position = pos; ++position < maskL && !isMask(position) && (opts.nojumps !== !0 || opts.nojumpsThreshold > position); ) ;
return position;
}
function seekPrevious(pos) {
var position = pos;
if (0 >= position) return 0;
for (;--position > 0 && !isMask(position); ) ;
return position;
}
function getBufferElement(position) {
return void 0 == getMaskSet().validPositions[position] ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
}
function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
if (event && $.isFunction(opts.onBeforeWrite)) {
var result = opts.onBeforeWrite.call(input, event, buffer, caretPos, opts);
if (result) {
if (result.refreshFromBuffer) {
var refresh = result.refreshFromBuffer;
refreshFromBuffer(refresh === !0 ? refresh : refresh.start, refresh.end, result.buffer),
resetMaskSet(!0), buffer = getBuffer();
}
caretPos = result.caret || caretPos;
}
}
input._valueSet(buffer.join("")), void 0 != caretPos && caret(input, caretPos),
triggerInputEvent === !0 && (skipInputEvent = !0, $(input).trigger("input"));
}
function getPlaceholder(pos, test) {
if (test = test || getTest(pos), void 0 != test.placeholder) return test.placeholder;
if (null == test.fn) {
if (!opts.keepStatic && void 0 == getMaskSet().validPositions[pos]) {
for (var tests = getTests(pos), staticAlternations = !0, i = 0; i < tests.length; i++) if ("" != tests[i].match.def && (null !== tests[i].match.fn || void 0 == tests[i].alternation || tests[i].locator[tests[i].alternation].length > 1)) {
staticAlternations = !1;
break;
}
if (staticAlternations) return opts.placeholder.charAt(pos % opts.placeholder.length);
}
return test.def;
}
return opts.placeholder.charAt(pos % opts.placeholder.length);
}
function checkVal(input, writeOut, strict, nptvl) {
function isTemplateMatch() {
var isMatch = !1, charCodeNdx = getBufferTemplate().slice(initialNdx, seekNext(initialNdx)).join("").indexOf(charCodes);
if (-1 != charCodeNdx && !isMask(initialNdx)) {
isMatch = !0;
for (var bufferTemplateArr = getBufferTemplate().slice(initialNdx, initialNdx + charCodeNdx), i = 0; i < bufferTemplateArr.length; i++) if (" " != bufferTemplateArr[i]) {
isMatch = !1;
break;
}
}
return isMatch;
}
var inputValue = void 0 != nptvl ? nptvl.slice() : input._valueGet().split(""), charCodes = "", initialNdx = 0;
if (resetMaskSet(), getMaskSet().p = seekNext(-1), writeOut && input._valueSet(""),
!strict) {
var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""), matches = inputValue.join("").match(new RegExp("^" + escapeRegex(staticInput), "g"));
matches && matches.length > 0 && (inputValue.splice(0, matches.length * staticInput.length),
initialNdx = seekNext(initialNdx));
}
$.each(inputValue, function(ndx, charCode) {
var keypress = $.Event("keypress");
keypress.which = charCode.charCodeAt(0), charCodes += charCode;
var lvp = getLastValidPosition(void 0, !0), lvTest = getMaskSet().validPositions[lvp], nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : void 0, lvp);
if (!isTemplateMatch() || strict) {
var pos = strict ? ndx : null == nextTest.match.fn && nextTest.match.optionality && lvp + 1 < getMaskSet().p ? lvp + 1 : getMaskSet().p;
keypressEvent.call(input, keypress, !0, !1, strict, pos), initialNdx = pos + 1,
charCodes = "";
} else keypressEvent.call(input, keypress, !0, !1, !0, lvp + 1);
}), writeOut && writeBuffer(input, getBuffer(), $(input).is(":focus") ? seekNext(getLastValidPosition(0)) : void 0, $.Event("checkval"));
}
function escapeRegex(str) {
return $.inputmask.escapeRegex(str);
}
function unmaskedvalue($input) {
if ($input.data("_inputmask") && !$input.hasClass("hasDatepicker")) {
var umValue = [], vps = getMaskSet().validPositions;
for (var pndx in vps) vps[pndx].match && null != vps[pndx].match.fn && umValue.push(vps[pndx].input);
var unmaskedValue = (isRTL ? umValue.reverse() : umValue).join(""), bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
return $.isFunction(opts.onUnMask) && (unmaskedValue = opts.onUnMask.call($input, bufferValue, unmaskedValue, opts) || unmaskedValue),
unmaskedValue;
}
return $input[0]._valueGet();
}
function TranslatePosition(pos) {
if (isRTL && "number" == typeof pos && (!opts.greedy || "" != opts.placeholder)) {
var bffrLght = getBuffer().length;
pos = bffrLght - pos;
}
return pos;
}
function caret(input, begin, end) {
var range, npt = input.jquery && input.length > 0 ? input[0] : input;
if ("number" != typeof begin) return npt.setSelectionRange ? (begin = npt.selectionStart,
end = npt.selectionEnd) : window.getSelection ? (range = window.getSelection().getRangeAt(0),
(range.commonAncestorContainer.parentNode == npt || range.commonAncestorContainer == npt) && (begin = range.startOffset,
end = range.endOffset)) : document.selection && document.selection.createRange && (range = document.selection.createRange(),
begin = 0 - range.duplicate().moveStart("character", -1e5), end = begin + range.text.length),
{
begin: TranslatePosition(begin),
end: TranslatePosition(end)
};
if (begin = TranslatePosition(begin), end = TranslatePosition(end), end = "number" == typeof end ? end : begin,
$(npt).is(":visible")) {
var scrollCalc = $(npt).css("font-size").replace("px", "") * end;
if (npt.scrollLeft = scrollCalc > npt.scrollWidth ? scrollCalc : 0, androidchrome || 0 != opts.insertMode || begin != end || end++,
npt.setSelectionRange) npt.selectionStart = begin, npt.selectionEnd = end; else if (window.getSelection) {
if (range = document.createRange(), void 0 == npt.firstChild) {
var textNode = document.createTextNode("");
npt.appendChild(textNode);
}
range.setStart(npt.firstChild, begin < npt._valueGet().length ? begin : npt._valueGet().length),
range.setEnd(npt.firstChild, end < npt._valueGet().length ? end : npt._valueGet().length),
range.collapse(!0);
var sel = window.getSelection();
sel.removeAllRanges(), sel.addRange(range);
} else npt.createTextRange && (range = npt.createTextRange(), range.collapse(!0),
range.moveEnd("character", end), range.moveStart("character", begin), range.select());
}
}
function determineLastRequiredPosition(returnDefinition) {
var pos, testPos, buffer = getBuffer(), bl = buffer.length, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet().validPositions[lvp], ndxIntlzr = void 0 != lvTest ? lvTest.locator.slice() : void 0;
for (pos = lvp + 1; pos < buffer.length; pos++) testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
ndxIntlzr = testPos.locator.slice(), positions[pos] = $.extend(!0, {}, testPos);
var lvTestAlt = lvTest && void 0 != lvTest.alternation ? lvTest.locator[lvTest.alternation] : void 0;
for (pos = bl - 1; pos > lvp && (testPos = positions[pos], (testPos.match.optionality || testPos.match.optionalQuantifier || 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.split(",")) && "" != getTests(pos)[0].def)) && buffer[pos] == getPlaceholder(pos, testPos.match)); pos--) bl--;
return returnDefinition ? {
l: bl,
def: positions[bl] ? positions[bl].match : void 0
} : bl;
}
function clearOptionalTail(buffer) {
for (var rl = determineLastRequiredPosition(), lmib = buffer.length - 1; lmib > rl && !isMask(lmib); lmib--) ;
return buffer.splice(rl, lmib + 1 - rl), buffer;
}
function isComplete(buffer) {
if ($.isFunction(opts.isComplete)) return opts.isComplete.call($el, buffer, opts);
if ("*" == opts.repeat) return void 0;
{
var complete = !1, lrp = determineLastRequiredPosition(!0), aml = seekPrevious(lrp.l);
getLastValidPosition();
}
if (void 0 == lrp.def || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
complete = !0;
for (var i = 0; aml >= i; i++) {
var test = getTestTemplate(i).ma