| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- /*
- Input Mask plugin extensions
- http://github.com/RobinHerbots/jquery.inputmask
- Copyright (c) Robin Herbots
- Licensed under the MIT license
- */
- var Inputmask = require("../inputmask"), $ = Inputmask.dependencyLib, keyCode = require("../keycode");
- function autoEscape(txt, opts) {
- var escapedTxt = "";
- for (var i = 0; i < txt.length; i++) {
- if (Inputmask.prototype.definitions[txt.charAt(i)] ||
- opts.definitions[txt.charAt(i)] ||
- opts.optionalmarker[0] === txt.charAt(i) ||
- opts.optionalmarker[1] === txt.charAt(i) ||
- opts.quantifiermarker[0] === txt.charAt(i) ||
- opts.quantifiermarker[1] === txt.charAt(i) ||
- opts.groupmarker[0] === txt.charAt(i) ||
- opts.groupmarker[1] === txt.charAt(i) ||
- opts.alternatormarker === txt.charAt(i)) {
- escapedTxt += "\\" + txt.charAt(i);
- } else {
- escapedTxt += txt.charAt(i);
- }
- }
- return escapedTxt;
- }
- function alignDigits(buffer, digits, opts, force) {
- if (digits > 0 && (!opts.digitsOptional || force)) {
- var radixPosition = $.inArray(opts.radixPoint, buffer);
- if (radixPosition === -1) {
- buffer.push(opts.radixPoint);
- radixPosition = buffer.length - 1;
- }
- for (var i = 1; i <= digits; i++) {
- buffer[radixPosition + i] = buffer[radixPosition + i] || "0";
- }
- }
- return buffer;
- }
- function findValidator(symbol, maskset) {
- var posNdx = 0;
- if (symbol === "+") {
- for (posNdx in maskset.validPositions);
- posNdx = parseInt(posNdx);
- }
- for (var tstNdx in maskset.tests) {
- tstNdx = parseInt(tstNdx);
- if (tstNdx >= posNdx) {
- for (var ndx = 0, ndxl = maskset.tests[tstNdx].length; ndx < ndxl; ndx++) {
- if ((maskset.validPositions[tstNdx] === undefined || symbol === "-") && maskset.tests[tstNdx][ndx].match.def === symbol) {
- return tstNdx + ((maskset.validPositions[tstNdx] !== undefined && symbol !== "-") ? 1 : 0);
- }
- }
- }
- }
- return posNdx;
- }
- function findValid(symbol, maskset) {
- var ret = -1;
- $.each(maskset.validPositions, function (ndx, tst) {
- if (tst && tst.match.def === symbol) {
- ret = parseInt(ndx);
- return false;
- }
- });
- return ret;
- }
- function parseMinMaxOptions(opts) {
- if (opts.parseMinMaxOptions === undefined) {
- // convert min and max options
- if (opts.min !== null) {
- opts.min = opts.min.toString().replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), "");
- if (opts.radixPoint === ",") opts.min = opts.min.replace(opts.radixPoint, ".");
- opts.min = isFinite(opts.min) ? parseFloat(opts.min) : NaN;
- if (isNaN(opts.min)) opts.min = Number.MIN_VALUE;
- }
- if (opts.max !== null) {
- opts.max = opts.max.toString().replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), "");
- if (opts.radixPoint === ",") opts.max = opts.max.replace(opts.radixPoint, ".");
- opts.max = isFinite(opts.max) ? parseFloat(opts.max) : NaN;
- if (isNaN(opts.max)) opts.max = Number.MAX_VALUE;
- }
- opts.parseMinMaxOptions = "done";
- }
- }
- function genMask(opts) {
- opts.repeat = 0;
- //treat equal separator and radixpoint
- if (opts.groupSeparator === opts.radixPoint && opts.digits && opts.digits !== "0") {
- if (opts.radixPoint === ".") {
- opts.groupSeparator = ",";
- } else if (opts.radixPoint === ",") {
- opts.groupSeparator = ".";
- } else {
- opts.groupSeparator = "";
- }
- }
- //prevent conflict with default skipOptionalPartCharacter
- if (opts.groupSeparator === " ") {
- opts.skipOptionalPartCharacter = undefined;
- }
- //enforce placeholder to single
- if (opts.placeholder.length > 1) {
- opts.placeholder = opts.placeholder.charAt(0);
- }
- //only allow radixfocus when placeholder = 0
- if (opts.positionCaretOnClick === "radixFocus" && opts.placeholder === "") {
- opts.positionCaretOnClick = "lvp";
- }
- var decimalDef = "0", radixPointDef = opts.radixPoint;
- if (opts.numericInput === true && opts.__financeInput === undefined) { //finance people input style
- decimalDef = "1";
- opts.positionCaretOnClick = opts.positionCaretOnClick === "radixFocus" ? "lvp" : opts.positionCaretOnClick;
- opts.digitsOptional = false;
- if (isNaN(opts.digits)) opts.digits = 2;
- opts._radixDance = false;
- radixPointDef = opts.radixPoint === "," ? "^" : "¨";
- if (opts.radixPoint !== "" && opts.definitions[radixPointDef] === undefined) {
- //update separatot definition
- opts.definitions[radixPointDef] = {};
- opts.definitions[radixPointDef].validator = "[" + opts.radixPoint + "]";
- opts.definitions[radixPointDef].placeholder = opts.radixPoint;
- opts.definitions[radixPointDef].static = true;
- opts.definitions[radixPointDef].generated = true; //forced marker as generated input
- }
- } else {
- opts.__financeInput = false; //needed to keep original selection when remasking
- opts.numericInput = true;
- }
- var mask = "[+]", altMask;
- mask += autoEscape(opts.prefix, opts);
- if (opts.groupSeparator !== "") {
- if (opts.definitions[opts.groupSeparator] === undefined) {
- //update separatot definition
- opts.definitions[opts.groupSeparator] = {};
- opts.definitions[opts.groupSeparator].validator = "[" + opts.groupSeparator + "]";
- opts.definitions[opts.groupSeparator].placeholder = opts.groupSeparator;
- opts.definitions[opts.groupSeparator].static = true;
- opts.definitions[opts.groupSeparator].generated = true; //forced marker as generated input
- }
- mask += opts._mask(opts);
- } else {
- mask += "9{+}";
- }
- if (opts.digits !== undefined && opts.digits !== 0) {
- var dq = opts.digits.toString().split(",");
- if (isFinite(dq[0]) && dq[1] && isFinite(dq[1])) {
- mask += radixPointDef + decimalDef + "{" + opts.digits + "}";
- } else if (isNaN(opts.digits) || parseInt(opts.digits) > 0) {
- if (opts.digitsOptional) {
- altMask = mask + radixPointDef + decimalDef + "{0," + opts.digits + "}";
- // mask += "[" + opts.radixPoint + "]";
- opts.keepStatic = true;
- } else {
- mask += radixPointDef + decimalDef + "{" + opts.digits + "}";
- }
- }
- }
- mask += autoEscape(opts.suffix, opts);
- mask += "[-]";
- if (altMask) {
- mask = [(altMask + autoEscape(opts.suffix, opts) + "[-]"), mask];
- }
- opts.greedy = false; //enforce greedy false
- parseMinMaxOptions(opts);
- // console.log(mask);
- return mask;
- }
- function hanndleRadixDance(pos, c, radixPos, maskset, opts) {
- if (opts._radixDance && opts.numericInput && c !== opts.negationSymbol.back) {
- if (pos <= radixPos && (radixPos > 0 || c == opts.radixPoint) && (maskset.validPositions[pos - 1] === undefined || maskset.validPositions[pos - 1].input !== opts.negationSymbol.back)) {
- pos -= 1;
- }
- }
- return pos;
- }
- function decimalValidator(chrs, maskset, pos, strict, opts) {
- var radixPos = maskset.buffer ? maskset.buffer.indexOf(opts.radixPoint) : -1,
- result = radixPos !== -1 && new RegExp("[0-9\uFF11-\uFF19]").test(chrs);
- if (opts._radixDance && result && maskset.validPositions[radixPos] == undefined) {
- return {
- insert: {
- pos: radixPos === pos ? radixPos + 1 : radixPos,
- c: opts.radixPoint
- },
- pos: pos
- };
- }
- return result;
- }
- function checkForLeadingZeroes(buffer, opts) {
- //check leading zeros
- var numberMatches = new RegExp("(^" + (opts.negationSymbol.front !== "" ? Inputmask.escapeRegex(opts.negationSymbol.front) + "?" : "") + Inputmask.escapeRegex(opts.prefix) + ")(.*)(" + Inputmask.escapeRegex(opts.suffix) + (opts.negationSymbol.back != "" ? Inputmask.escapeRegex(opts.negationSymbol.back) + "?" : "") + "$)").exec(buffer.slice().reverse().join("")),
- number = numberMatches ? numberMatches[2] : "", leadingzeroes = false;
- if (number) {
- number = number.split(opts.radixPoint.charAt(0))[0];
- leadingzeroes = new RegExp("^[0" + opts.groupSeparator + "]*").exec(number);
- }
- return leadingzeroes && (leadingzeroes[0].length > 1 || leadingzeroes[0].length > 0 && leadingzeroes[0].length < number.length) ? leadingzeroes : false;
- }
- //number aliases
- Inputmask.extendAliases({
- "numeric": {
- mask: genMask,
- _mask: function (opts) {
- return "(" + opts.groupSeparator + "999){+|1}";
- },
- digits: "*", //number of fractionalDigits
- digitsOptional: true,
- enforceDigitsOnBlur: false,
- radixPoint: ".",
- positionCaretOnClick: "radixFocus",
- _radixDance: true,
- groupSeparator: "",
- allowMinus: true,
- negationSymbol: {
- front: "-", //"("
- back: "" //")"
- },
- prefix: "",
- suffix: "",
- min: null, //minimum value
- max: null, //maximum value
- step: 1,
- unmaskAsNumber: false,
- roundingFN: Math.round, //Math.floor , fn(x)
- inputmode: "numeric",
- shortcuts: { k: "000", m: "000000" },
- //global options
- placeholder: "0",
- greedy: false,
- rightAlign: true,
- insertMode: true,
- autoUnmask: false,
- skipOptionalPartCharacter: "",
- definitions: {
- "0": {
- validator: decimalValidator
- },
- "1": {
- validator: decimalValidator,
- definitionSymbol: "*"
- },
- "+": {
- validator: function (chrs, maskset, pos, strict, opts) {
- return (opts.allowMinus && (chrs === "-" || chrs === opts.negationSymbol.front));
- }
- },
- "-": {
- validator: function (chrs, maskset, pos, strict, opts) {
- return (opts.allowMinus && chrs === opts.negationSymbol.back);
- }
- }
- },
- preValidation: function (buffer, pos, c, isSelection, opts, maskset, caretPos, strict) {
- if (opts.__financeInput !== false && c === opts.radixPoint) return false;
- var pattern;
- if ((pattern = (opts.shortcuts && opts.shortcuts[c]))) {
- if (pattern.length > 1) {
- var inserts = [];
- for (var i = 0; i < pattern.length; i++) {
- inserts.push({ pos: pos + i, c: pattern[i], strict: false });
- }
- }
- return {
- insert: inserts
- };
- }
- var radixPos = $.inArray(opts.radixPoint, buffer), initPos = pos;
- ;
- pos = hanndleRadixDance(pos, c, radixPos, maskset, opts);
- if (c === "-" || c === opts.negationSymbol.front) {
- if (opts.allowMinus !== true) return false;
- var isNegative = false,
- front = findValid("+", maskset), back = findValid("-", maskset);
- if (front !== -1) {
- isNegative = [front, back];
- }
- return isNegative !== false ? {
- remove: isNegative,
- caret: initPos
- } : {
- insert: [
- { pos: findValidator("+", maskset), c: opts.negationSymbol.front, fromIsValid: true },
- { pos: findValidator("-", maskset), c: opts.negationSymbol.back, fromIsValid: undefined }],
- caret: initPos + opts.negationSymbol.back.length
- };
- }
- if (strict) return true;
- if (radixPos !== -1 && (opts._radixDance === true && isSelection === false && c === opts.radixPoint && (opts.digits !== undefined && (isNaN(opts.digits) || parseInt(opts.digits) > 0)) && radixPos !== pos)) {
- return {
- "caret": opts._radixDance && pos === radixPos - 1 ? radixPos + 1 : radixPos
- };
- }
- if (isSelection && opts.__financeInput === false) {
- if (opts.digitsOptional) {
- return { rewritePosition: caretPos.end };
- } else if (!opts.digitsOptional) {
- if (caretPos.begin > radixPos && caretPos.end <= radixPos) {
- if (c === opts.radixPoint) {
- return {
- insert: { pos: radixPos + 1, c: "0", fromIsValid: true },
- rewritePosition: radixPos
- };
- } else {
- return { rewritePosition: radixPos + 1 };
- }
- } else if (caretPos.begin < radixPos) {
- return { rewritePosition: caretPos.begin - 1 };
- }
- }
- }
- return { rewritePosition: pos };
- },
- postValidation: function (buffer, pos, currentResult, opts, maskset, strict) {
- if (currentResult === false) return currentResult;
- if (strict) return true;
- if (opts.min !== null || opts.max !== null) {
- var unmasked = opts.onUnMask(buffer.slice().reverse().join(""), undefined, $.extend({}, opts, {
- unmaskAsNumber: true
- }));
- if (opts.min !== null && unmasked < opts.min && (unmasked.toString().length >= opts.min.toString().length || unmasked < 0)) {
- return {
- refreshFromBuffer: true,
- buffer: alignDigits(opts.min.toString().replace(".", opts.radixPoint).split(""), opts.digits, opts).reverse()
- };
- }
- if (opts.max !== null && unmasked > opts.max) {
- return {
- refreshFromBuffer: true,
- buffer: alignDigits(opts.max.toString().replace(".", opts.radixPoint).split(""), opts.digits, opts).reverse()
- };
- }
- }
- return currentResult;
- },
- onUnMask: function (maskedValue, unmaskedValue, opts) {
- if (unmaskedValue === "" && opts.nullable === true) {
- return unmaskedValue;
- }
- var processValue = maskedValue.replace(opts.prefix, "");
- processValue = processValue.replace(opts.suffix, "");
- processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator), "g"), "");
- if (opts.placeholder.charAt(0) !== "") {
- processValue = processValue.replace(new RegExp(opts.placeholder.charAt(0), "g"), "0");
- }
- if (opts.unmaskAsNumber) {
- if (opts.radixPoint !== "" && processValue.indexOf(opts.radixPoint) !== -1) processValue = processValue.replace(Inputmask.escapeRegex.call(this, opts.radixPoint), ".");
- processValue = processValue.replace(new RegExp("^" + Inputmask.escapeRegex(opts.negationSymbol.front)), "-");
- processValue = processValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), "");
- return Number(processValue);
- }
- return processValue;
- }
- ,
- isComplete: function (buffer, opts) {
- var maskedValue = (opts.numericInput ? buffer.slice().reverse() : buffer).join("");
- maskedValue = maskedValue.replace(new RegExp("^" + Inputmask.escapeRegex(opts.negationSymbol.front)), "-");
- maskedValue = maskedValue.replace(new RegExp(Inputmask.escapeRegex(opts.negationSymbol.back) + "$"), "");
- maskedValue = maskedValue.replace(opts.prefix, "");
- maskedValue = maskedValue.replace(opts.suffix, "");
- maskedValue = maskedValue.replace(new RegExp(Inputmask.escapeRegex(opts.groupSeparator) + "([0-9]{3})", "g"), "$1");
- if (opts.radixPoint === ",") maskedValue = maskedValue.replace(Inputmask.escapeRegex(opts.radixPoint), ".");
- return isFinite(maskedValue);
- }
- ,
- onBeforeMask: function (initialValue, opts) {
- var radixPoint = opts.radixPoint || ",";
- if ((typeof initialValue == "number" || opts.inputType === "number") && radixPoint !== "") {
- initialValue = initialValue.toString().replace(".", radixPoint);
- }
- var valueParts = initialValue.split(radixPoint),
- integerPart = valueParts[0].replace(/[^\-0-9]/g, ""),
- decimalPart = valueParts.length > 1 ? valueParts[1].replace(/[^0-9]/g, "") : "",
- forceDigits = valueParts.length > 1;
- initialValue = integerPart + (decimalPart !== "" ? radixPoint + decimalPart : decimalPart);
- var digits = 0;
- if (radixPoint !== "") {
- digits = decimalPart.length;
- if (decimalPart !== "") {
- var digitsFactor = Math.pow(10, digits || 1);
- if (isFinite(opts.digits)) {
- digits = parseInt(opts.digits);
- digitsFactor = Math.pow(10, digits);
- }
- //make the initialValue a valid javascript number for the parsefloat
- initialValue = initialValue.replace(Inputmask.escapeRegex(radixPoint), ".");
- if (isFinite(initialValue)) {
- initialValue = (opts.roundingFN(parseFloat(initialValue) * digitsFactor) / digitsFactor).toFixed(digits);
- }
- initialValue = initialValue.toString().replace(".", radixPoint);
- }
- }
- //this needs to be in a separate part and not directly in decimalPart to allow rounding
- if (opts.digits === 0 && initialValue.indexOf(Inputmask.escapeRegex(radixPoint)) !== -1) {
- initialValue = initialValue.substring(0, initialValue.indexOf(Inputmask.escapeRegex(radixPoint)));
- }
- if (opts.min !== null || opts.max !== null) {
- var numberValue = initialValue.toString().replace(radixPoint, ".");
- if (opts.min !== null && numberValue < opts.min) {
- initialValue = opts.min.toString().replace(".", radixPoint);
- } else if (opts.max !== null && numberValue > opts.max) {
- initialValue = opts.max.toString().replace(".", radixPoint);
- }
- }
- return alignDigits(initialValue.toString().split(""), digits, opts, forceDigits).join("");
- }
- ,
- onBeforeWrite: function (e, buffer, caretPos, opts) {
- function stripBuffer(buffer, stripRadix) {
- if (opts.__financeInput !== false || stripRadix) {
- var position = $.inArray(opts.radixPoint, buffer);
- if (position !== -1) {
- buffer.splice(position, 1);
- }
- }
- if (opts.groupSeparator !== "") {
- while ((position = buffer.indexOf(opts.groupSeparator)) !== -1) {
- buffer.splice(position, 1);
- }
- }
- return buffer;
- }
- var result,
- leadingzeroes = checkForLeadingZeroes(buffer, opts);
- if (leadingzeroes) {
- var buf = buffer.slice().reverse(), caretNdx = buf.join("").indexOf(leadingzeroes[0]);
- buf.splice(caretNdx, leadingzeroes[0].length);
- var newCaretPos = buf.length - caretNdx;
- stripBuffer(buf);
- result = {
- refreshFromBuffer: true,
- buffer: buf.reverse(),
- caret: caretPos < newCaretPos ? caretPos : newCaretPos
- };
- }
- if (e) {
- switch (e.type) {
- case "blur":
- case "checkval":
- if (opts.min !== null) {
- var unmasked = opts.onUnMask(buffer.slice().reverse().join(""), undefined, $.extend({}, opts, {
- unmaskAsNumber: true
- }));
- if (opts.min !== null && unmasked < opts.min) {
- return {
- refreshFromBuffer: true,
- buffer: alignDigits(opts.min.toString().replace(".", opts.radixPoint).split(""), opts.digits, opts).reverse()
- };
- }
- }
- if (buffer[buffer.length - 1] === opts.negationSymbol.front) { //strip negation symbol on blur when value is 0
- var nmbrMtchs = new RegExp("(^" + (opts.negationSymbol.front != "" ? Inputmask.escapeRegex(opts.negationSymbol.front) + "?" : "") + Inputmask.escapeRegex(opts.prefix) + ")(.*)(" + Inputmask.escapeRegex(opts.suffix) + (opts.negationSymbol.back != "" ? Inputmask.escapeRegex(opts.negationSymbol.back) + "?" : "") + "$)").exec(stripBuffer(buffer.slice(), true).reverse().join("")),
- number = nmbrMtchs ? nmbrMtchs[2] : "";
- if (number == 0) {
- result = { refreshFromBuffer: true, buffer: [0] };
- }
- } else if (opts.radixPoint !== "" && buffer[0] === opts.radixPoint) { //strip radixpoint on blur when it is the latest char
- if (result && result.buffer) {
- result.buffer.shift();
- } else {
- buffer.shift();
- result =
- { refreshFromBuffer: true, buffer: stripBuffer(buffer) };
- }
- }
- if (opts.enforceDigitsOnBlur) {
- result = result || {};
- var bffr = (result && result.buffer) || buffer.slice().reverse();
- result.refreshFromBuffer = true;
- result.buffer = alignDigits(bffr, opts.digits, opts, true).reverse();
- }
- }
- }
- return result;
- },
- onKeyDown: function (e, buffer, caretPos, opts) {
- var $input = $(this), bffr;
- if (e.ctrlKey) {
- switch (e.keyCode) {
- case keyCode.UP:
- this.inputmask.__valueSet.call(this, parseFloat(this.inputmask.unmaskedvalue()) + parseInt(opts.step));
- $input.trigger("setvalue");
- return false;
- case keyCode.DOWN:
- this.inputmask.__valueSet.call(this, parseFloat(this.inputmask.unmaskedvalue()) - parseInt(opts.step));
- $input.trigger("setvalue");
- return false;
- }
- }
- if (!e.shiftKey && (e.keyCode === keyCode.DELETE || e.keyCode === keyCode.BACKSPACE || e.keyCode === keyCode.BACKSPACE_SAFARI)) {
- if (buffer[e.keyCode === keyCode.DELETE ? caretPos.begin - 1 : caretPos.end] === opts.negationSymbol.front) {
- bffr = buffer.slice().reverse();
- if (opts.negationSymbol.front !== "") bffr.shift();
- if (opts.negationSymbol.back !== "") bffr.pop();
- $input.trigger("setvalue", [bffr.join(""), caretPos.begin]);
- return false;
- } else if (opts._radixDance === true) {
- var radixPos = $.inArray(opts.radixPoint, buffer);
- if (!opts.digitsOptional) {
- if (radixPos !== -1 && (caretPos.begin < radixPos || caretPos.end < radixPos || (e.keyCode === keyCode.DELETE && caretPos.begin === radixPos))) {
- if (caretPos.begin === caretPos.end && (e.keyCode === keyCode.BACKSPACE || e.keyCode === keyCode.BACKSPACE_SAFARI)) { //only adjust when not a selection
- caretPos.begin++;
- }
- bffr = buffer.slice().reverse();
- bffr.splice(bffr.length - caretPos.begin, caretPos.begin - caretPos.end + 1);
- // console.log(caretPos);
- bffr = alignDigits(bffr, opts.digits, opts).join("");
- $input.trigger("setvalue", [bffr, caretPos.begin >= bffr.length ? radixPos + 1 : caretPos.begin]);
- return false;
- }
- } else if (radixPos === 0) {
- bffr = buffer.slice().reverse();
- bffr.pop();
- $input.trigger("setvalue", [bffr.join(""), caretPos.begin >= bffr.length ? bffr.length : caretPos.begin]);
- return false;
- }
- }
- }
- }
- },
- "currency": {
- prefix: "", //"$ ",
- groupSeparator: ",",
- alias: "numeric",
- digits: 2,
- digitsOptional: false
- },
- "decimal": {
- alias: "numeric"
- },
- "integer": {
- alias: "numeric",
- digits: 0
- },
- "percentage": {
- alias: "numeric",
- min: 0,
- max: 100,
- suffix: " %",
- digits: 0,
- allowMinus: false
- },
- "indianns": { //indian numbering system
- alias: "numeric",
- _mask: function (opts) {
- return "(" + opts.groupSeparator + "99){*|1}(" + opts.groupSeparator + "999){1|1}";
- },
- groupSeparator: ",",
- radixPoint: ".",
- placeholder: "0",
- digits: 2,
- digitsOptional: false
- }
- });
- module.exports = Inputmask;
|