ngx-mask
Version:
awesome ngx mask
2,507 lines • 124 kB
JavaScript
import * as i0 from '@angular/core';
import { InjectionToken, EventEmitter, inject, Injectable, ElementRef, Renderer2, makeEnvironmentProviders, Directive, Input, Output, HostListener, Pipe } from '@angular/core';
import { DOCUMENT } from '@angular/common';
import { NG_VALUE_ACCESSOR, NG_VALIDATORS } from '@angular/forms';
const NGX_MASK_CONFIG = new InjectionToken('ngx-mask config');
const NEW_CONFIG = new InjectionToken('new ngx-mask config');
const INITIAL_CONFIG = new InjectionToken('initial ngx-mask config');
const initialConfig = {
suffix: '',
prefix: '',
thousandSeparator: ' ',
decimalMarker: ['.', ','],
clearIfNotMatch: false,
showTemplate: false,
showMaskTyped: false,
placeHolderCharacter: '_',
dropSpecialCharacters: true,
hiddenInput: undefined,
shownMaskExpression: '',
separatorLimit: '',
allowNegativeNumbers: false,
validation: true,
// eslint-disable-next-line @typescript-eslint/quotes
specialCharacters: ['-', '/', '(', ')', '.', ':', ' ', '+', ',', '@', '[', ']', '"', "'"],
leadZeroDateTime: false,
apm: false,
leadZero: false,
keepCharacterPositions: false,
triggerOnMaskChange: false,
inputTransformFn: (value) => value,
outputTransformFn: (value) => value,
maskFilled: new EventEmitter(),
patterns: {
'0': {
pattern: new RegExp('\\d'),
},
'9': {
pattern: new RegExp('\\d'),
optional: true,
},
X: {
pattern: new RegExp('\\d'),
symbol: '*',
},
A: {
pattern: new RegExp('[a-zA-Z0-9]'),
},
S: {
pattern: new RegExp('[a-zA-Z]'),
},
U: {
pattern: new RegExp('[A-Z]'),
},
L: {
pattern: new RegExp('[a-z]'),
},
d: {
pattern: new RegExp('\\d'),
},
m: {
pattern: new RegExp('\\d'),
},
M: {
pattern: new RegExp('\\d'),
},
H: {
pattern: new RegExp('\\d'),
},
h: {
pattern: new RegExp('\\d'),
},
s: {
pattern: new RegExp('\\d'),
},
},
};
const timeMasks = [
"Hh:m0:s0" /* MaskExpression.HOURS_MINUTES_SECONDS */,
"Hh:m0" /* MaskExpression.HOURS_MINUTES */,
"m0:s0" /* MaskExpression.MINUTES_SECONDS */,
];
const withoutValidation = [
"percent" /* MaskExpression.PERCENT */,
"Hh" /* MaskExpression.HOURS_HOUR */,
"s0" /* MaskExpression.SECONDS */,
"m0" /* MaskExpression.MINUTES */,
"separator" /* MaskExpression.SEPARATOR */,
"d0/M0/0000" /* MaskExpression.DAYS_MONTHS_YEARS */,
"d0/M0" /* MaskExpression.DAYS_MONTHS */,
"d0" /* MaskExpression.DAYS */,
"M0" /* MaskExpression.MONTHS */,
];
class NgxMaskApplierService {
constructor() {
this._config = inject(NGX_MASK_CONFIG);
this.dropSpecialCharacters = this._config.dropSpecialCharacters;
this.hiddenInput = this._config.hiddenInput;
this.clearIfNotMatch = this._config.clearIfNotMatch;
this.specialCharacters = this._config.specialCharacters;
this.patterns = this._config.patterns;
this.prefix = this._config.prefix;
this.suffix = this._config.suffix;
this.thousandSeparator = this._config.thousandSeparator;
this.decimalMarker = this._config.decimalMarker;
this.showMaskTyped = this._config.showMaskTyped;
this.placeHolderCharacter = this._config.placeHolderCharacter;
this.validation = this._config.validation;
this.separatorLimit = this._config.separatorLimit;
this.allowNegativeNumbers = this._config.allowNegativeNumbers;
this.leadZeroDateTime = this._config.leadZeroDateTime;
this.leadZero = this._config.leadZero;
this.apm = this._config.apm;
this.inputTransformFn = this._config.inputTransformFn;
this.outputTransformFn = this._config.outputTransformFn;
this.keepCharacterPositions = this._config.keepCharacterPositions;
this._shift = new Set();
this.plusOnePosition = false;
this.maskExpression = '';
this.actualValue = '';
this.showKeepCharacterExp = '';
this.shownMaskExpression = '';
this.deletedSpecialCharacter = false;
this._formatWithSeparators = (str, thousandSeparatorChar, decimalChars, precision) => {
let x = [];
let decimalChar = '';
if (Array.isArray(decimalChars)) {
const regExp = new RegExp(decimalChars.map((v) => ('[\\^$.|?*+()'.indexOf(v) >= 0 ? `\\${v}` : v)).join('|'));
x = str.split(regExp);
decimalChar = str.match(regExp)?.[0] ?? "" /* MaskExpression.EMPTY_STRING */;
}
else {
x = str.split(decimalChars);
decimalChar = decimalChars;
}
const decimals = x.length > 1 ? `${decimalChar}${x[1]}` : "" /* MaskExpression.EMPTY_STRING */;
let res = x[0] ?? "" /* MaskExpression.EMPTY_STRING */;
const separatorLimit = this.separatorLimit.replace(/\s/g, "" /* MaskExpression.EMPTY_STRING */);
if (separatorLimit && +separatorLimit) {
if (res[0] === "-" /* MaskExpression.MINUS */) {
res = `-${res.slice(1, res.length).slice(0, separatorLimit.length)}`;
}
else {
res = res.slice(0, separatorLimit.length);
}
}
const rgx = /(\d+)(\d{3})/;
while (thousandSeparatorChar && rgx.test(res)) {
res = res.replace(rgx, '$1' + thousandSeparatorChar + '$2');
}
if (precision === undefined) {
return res + decimals;
}
else if (precision === 0) {
return res;
}
return res + decimals.substring(0, precision + 1);
};
this.percentage = (str) => {
const sanitizedStr = str.replace(',', '.');
const value = Number(this.allowNegativeNumbers && str.includes("-" /* MaskExpression.MINUS */)
? sanitizedStr.slice(1, str.length)
: sanitizedStr);
return !isNaN(value) && value >= 0 && value <= 100;
};
this.getPrecision = (maskExpression) => {
const x = maskExpression.split("." /* MaskExpression.DOT */);
if (x.length > 1) {
return Number(x[x.length - 1]);
}
return Infinity;
};
this.checkAndRemoveSuffix = (inputValue) => {
for (let i = this.suffix?.length - 1; i >= 0; i--) {
const substr = this.suffix.substring(i, this.suffix?.length);
if (inputValue.includes(substr) &&
i !== this.suffix?.length - 1 &&
(i - 1 < 0 ||
!inputValue.includes(this.suffix.substring(i - 1, this.suffix?.length)))) {
return inputValue.replace(substr, "" /* MaskExpression.EMPTY_STRING */);
}
}
return inputValue;
};
this.checkInputPrecision = (inputValue, precision, decimalMarker) => {
if (precision < Infinity) {
// TODO need think about decimalMarker
if (Array.isArray(decimalMarker)) {
const marker = decimalMarker.find((dm) => dm !== this.thousandSeparator);
// eslint-disable-next-line no-param-reassign
decimalMarker = marker ? marker : decimalMarker[0];
}
const precisionRegEx = new RegExp(this._charToRegExpExpression(decimalMarker) + `\\d{${precision}}.*$`);
const precisionMatch = inputValue.match(precisionRegEx);
const precisionMatchLength = (precisionMatch && precisionMatch[0]?.length) ?? 0;
if (precisionMatchLength - 1 > precision) {
const diff = precisionMatchLength - 1 - precision;
// eslint-disable-next-line no-param-reassign
inputValue = inputValue.substring(0, inputValue.length - diff);
}
if (precision === 0 &&
this._compareOrIncludes(inputValue[inputValue.length - 1], decimalMarker, this.thousandSeparator)) {
// eslint-disable-next-line no-param-reassign
inputValue = inputValue.substring(0, inputValue.length - 1);
}
}
return inputValue;
};
}
applyMaskWithPattern(inputValue, maskAndPattern) {
const [mask, customPattern] = maskAndPattern;
this.customPattern = customPattern;
return this.applyMask(inputValue, mask);
}
applyMask(inputValue, maskExpression, position = 0, justPasted = false, backspaced = false,
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-explicit-any
cb = () => { }) {
if (!maskExpression || typeof inputValue !== 'string') {
return "" /* MaskExpression.EMPTY_STRING */;
}
let cursor = 0;
let result = '';
let multi = false;
let backspaceShift = false;
let shift = 1;
let stepBack = false;
if (inputValue.slice(0, this.prefix.length) === this.prefix) {
// eslint-disable-next-line no-param-reassign
inputValue = inputValue.slice(this.prefix.length, inputValue.length);
}
if (!!this.suffix && inputValue?.length > 0) {
// eslint-disable-next-line no-param-reassign
inputValue = this.checkAndRemoveSuffix(inputValue);
}
if (inputValue === '(' && this.prefix) {
// eslint-disable-next-line no-param-reassign
inputValue = '';
}
const inputArray = inputValue.toString().split("" /* MaskExpression.EMPTY_STRING */);
if (this.allowNegativeNumbers &&
inputValue.slice(cursor, cursor + 1) === "-" /* MaskExpression.MINUS */) {
// eslint-disable-next-line no-param-reassign
result += inputValue.slice(cursor, cursor + 1);
}
if (maskExpression === "IP" /* MaskExpression.IP */) {
const valuesIP = inputValue.split("." /* MaskExpression.DOT */);
this.ipError = this._validIP(valuesIP);
// eslint-disable-next-line no-param-reassign
maskExpression = '099.099.099.099';
}
const arr = [];
for (let i = 0; i < inputValue.length; i++) {
if (inputValue[i]?.match('\\d')) {
arr.push(inputValue[i] ?? "" /* MaskExpression.EMPTY_STRING */);
}
}
if (maskExpression === "CPF_CNPJ" /* MaskExpression.CPF_CNPJ */) {
this.cpfCnpjError = arr.length !== 11 && arr.length !== 14;
if (arr.length > 11) {
// eslint-disable-next-line no-param-reassign
maskExpression = '00.000.000/0000-00';
}
else {
// eslint-disable-next-line no-param-reassign
maskExpression = '000.000.000-00';
}
}
if (maskExpression.startsWith("percent" /* MaskExpression.PERCENT */)) {
if (inputValue.match('[a-z]|[A-Z]') ||
// eslint-disable-next-line no-useless-escape
(inputValue.match(/[-!$%^&*()_+|~=`{}\[\]:";'<>?,\/.]/) && !backspaced)) {
// eslint-disable-next-line no-param-reassign
inputValue = this._stripToDecimal(inputValue);
const precision = this.getPrecision(maskExpression);
// eslint-disable-next-line no-param-reassign
inputValue = this.checkInputPrecision(inputValue, precision, this.decimalMarker);
}
const decimalMarker = typeof this.decimalMarker === 'string' ? this.decimalMarker : "." /* MaskExpression.DOT */;
if (inputValue.indexOf(decimalMarker) > 0 &&
!this.percentage(inputValue.substring(0, inputValue.indexOf(decimalMarker)))) {
let base = inputValue.substring(0, inputValue.indexOf(decimalMarker) - 1);
if (this.allowNegativeNumbers &&
inputValue.slice(cursor, cursor + 1) === "-" /* MaskExpression.MINUS */ &&
!backspaced) {
base = inputValue.substring(0, inputValue.indexOf(decimalMarker));
}
// eslint-disable-next-line no-param-reassign
inputValue = `${base}${inputValue.substring(inputValue.indexOf(decimalMarker), inputValue.length)}`;
}
let value = '';
this.allowNegativeNumbers &&
inputValue.slice(cursor, cursor + 1) === "-" /* MaskExpression.MINUS */
? (value = `${"-" /* MaskExpression.MINUS */}${inputValue.slice(cursor + 1, cursor + inputValue.length)}`)
: (value = inputValue);
if (this.percentage(value)) {
result = this._splitPercentZero(inputValue);
}
else {
result = this._splitPercentZero(inputValue.substring(0, inputValue.length - 1));
}
}
else if (maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */)) {
if (inputValue.match('[wа-яА-Я]') ||
inputValue.match('[ЁёА-я]') ||
inputValue.match('[a-z]|[A-Z]') ||
inputValue.match(/[-@#!$%\\^&*()_£¬'+|~=`{}\]:";<>.?/]/) ||
inputValue.match('[^A-Za-z0-9,]')) {
// eslint-disable-next-line no-param-reassign
inputValue = this._stripToDecimal(inputValue);
}
const precision = this.getPrecision(maskExpression);
const decimalMarker = Array.isArray(this.decimalMarker)
? "." /* MaskExpression.DOT */
: this.decimalMarker;
if (precision === 0) {
// eslint-disable-next-line no-param-reassign
inputValue = this.allowNegativeNumbers
? inputValue.length > 2 &&
inputValue[0] === "-" /* MaskExpression.MINUS */ &&
inputValue[1] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue[2] !== this.thousandSeparator &&
inputValue[2] !== "," /* MaskExpression.COMMA */ &&
inputValue[2] !== "." /* MaskExpression.DOT */
? '-' + inputValue.slice(2, inputValue.length)
: inputValue[0] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue.length > 1 &&
inputValue[1] !== this.thousandSeparator &&
inputValue[1] !== "," /* MaskExpression.COMMA */ &&
inputValue[1] !== "." /* MaskExpression.DOT */
? inputValue.slice(1, inputValue.length)
: inputValue
: inputValue.length > 1 &&
inputValue[0] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue[1] !== this.thousandSeparator &&
inputValue[1] !== "," /* MaskExpression.COMMA */ &&
inputValue[1] !== "." /* MaskExpression.DOT */
? inputValue.slice(1, inputValue.length)
: inputValue;
}
else {
// eslint-disable-next-line no-param-reassign
if (inputValue[0] === decimalMarker && inputValue.length > 1) {
// eslint-disable-next-line no-param-reassign
inputValue =
"0" /* MaskExpression.NUMBER_ZERO */ + inputValue.slice(0, inputValue.length + 1);
this.plusOnePosition = true;
}
if (inputValue[0] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue[1] !== decimalMarker &&
inputValue[1] !== this.thousandSeparator) {
// eslint-disable-next-line no-param-reassign
inputValue =
inputValue.length > 1
? inputValue.slice(0, 1) +
decimalMarker +
inputValue.slice(1, inputValue.length + 1)
: inputValue;
this.plusOnePosition = true;
}
if (this.allowNegativeNumbers &&
inputValue[0] === "-" /* MaskExpression.MINUS */ &&
(inputValue[1] === decimalMarker ||
inputValue[1] === "0" /* MaskExpression.NUMBER_ZERO */)) {
// eslint-disable-next-line no-param-reassign
inputValue =
inputValue[1] === decimalMarker && inputValue.length > 2
? inputValue.slice(0, 1) +
"0" /* MaskExpression.NUMBER_ZERO */ +
inputValue.slice(1, inputValue.length)
: inputValue[1] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue.length > 2 &&
inputValue[2] !== decimalMarker
? inputValue.slice(0, 2) +
decimalMarker +
inputValue.slice(2, inputValue.length)
: inputValue;
this.plusOnePosition = true;
}
}
if (backspaced) {
if (inputValue[0] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue[1] === this.decimalMarker &&
(inputValue[position] === "0" /* MaskExpression.NUMBER_ZERO */ ||
inputValue[position] === this.decimalMarker)) {
// eslint-disable-next-line no-param-reassign
inputValue = inputValue.slice(2, inputValue.length);
}
if (inputValue[0] === "-" /* MaskExpression.MINUS */ &&
inputValue[1] === "0" /* MaskExpression.NUMBER_ZERO */ &&
inputValue[2] === this.decimalMarker &&
(inputValue[position] === "0" /* MaskExpression.NUMBER_ZERO */ ||
inputValue[position] === this.decimalMarker)) {
// eslint-disable-next-line no-param-reassign
inputValue = "-" /* MaskExpression.MINUS */ + inputValue.slice(3, inputValue.length);
}
// eslint-disable-next-line no-param-reassign
inputValue = this._compareOrIncludes(inputValue[inputValue.length - 1], this.decimalMarker, this.thousandSeparator)
? inputValue.slice(0, inputValue.length - 1)
: inputValue;
}
// TODO: we had different rexexps here for the different cases... but tests dont seam to bother - check this
// separator: no COMMA, dot-sep: no SPACE, COMMA OK, comma-sep: no SPACE, COMMA OK
const thousandSeparatorCharEscaped = this._charToRegExpExpression(this.thousandSeparator);
let invalidChars = '@#!$%^&*()_+|~=`{}\\[\\]:\\s,\\.";<>?\\/'.replace(thousandSeparatorCharEscaped, '');
//.replace(decimalMarkerEscaped, '');
if (Array.isArray(this.decimalMarker)) {
for (const marker of this.decimalMarker) {
invalidChars = invalidChars.replace(this._charToRegExpExpression(marker), "" /* MaskExpression.EMPTY_STRING */);
}
}
else {
invalidChars = invalidChars.replace(this._charToRegExpExpression(this.decimalMarker), '');
}
const invalidCharRegexp = new RegExp('[' + invalidChars + ']');
if (inputValue.match(invalidCharRegexp)) {
// eslint-disable-next-line no-param-reassign
inputValue = inputValue.substring(0, inputValue.length - 1);
}
// eslint-disable-next-line no-param-reassign
inputValue = this.checkInputPrecision(inputValue, precision, this.decimalMarker);
const strForSep = inputValue.replace(new RegExp(thousandSeparatorCharEscaped, 'g'), '');
result = this._formatWithSeparators(strForSep, this.thousandSeparator, this.decimalMarker, precision);
const commaShift = result.indexOf("," /* MaskExpression.COMMA */) - inputValue.indexOf("," /* MaskExpression.COMMA */);
const shiftStep = result.length - inputValue.length;
if (result[position - 1] === this.thousandSeparator && this.prefix && backspaced) {
// eslint-disable-next-line no-param-reassign
position = position - 1;
}
else if (shiftStep > 0 && result[position] !== this.thousandSeparator) {
backspaceShift = true;
let _shift = 0;
do {
this._shift.add(position + _shift);
_shift++;
} while (_shift < shiftStep);
}
else if (result[position - 1] === this.decimalMarker ||
shiftStep === -4 ||
shiftStep === -3 ||
result[position] === "," /* MaskExpression.COMMA */) {
this._shift.clear();
this._shift.add(position - 1);
}
else if ((commaShift !== 0 &&
position > 0 &&
!(result.indexOf("," /* MaskExpression.COMMA */) >= position && position > 3)) ||
(!(result.indexOf("." /* MaskExpression.DOT */) >= position && position > 3) &&
shiftStep <= 0)) {
this._shift.clear();
backspaceShift = true;
shift = shiftStep;
// eslint-disable-next-line no-param-reassign
position += shiftStep;
this._shift.add(position);
}
else {
this._shift.clear();
}
}
else {
for (
// eslint-disable-next-line
let i = 0, inputSymbol = inputArray[0]; i < inputArray.length; i++, inputSymbol = inputArray[i] ?? "" /* MaskExpression.EMPTY_STRING */) {
if (cursor === maskExpression.length) {
break;
}
const symbolStarInPattern = "*" /* MaskExpression.SYMBOL_STAR */ in this.patterns;
if (this._checkSymbolMask(inputSymbol, maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */) &&
maskExpression[cursor + 1] === "?" /* MaskExpression.SYMBOL_QUESTION */) {
result += inputSymbol;
cursor += 2;
}
else if (maskExpression[cursor + 1] === "*" /* MaskExpression.SYMBOL_STAR */ &&
multi &&
this._checkSymbolMask(inputSymbol, maskExpression[cursor + 2] ?? "" /* MaskExpression.EMPTY_STRING */)) {
result += inputSymbol;
cursor += 3;
multi = false;
}
else if (this._checkSymbolMask(inputSymbol, maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */) &&
maskExpression[cursor + 1] === "*" /* MaskExpression.SYMBOL_STAR */ &&
!symbolStarInPattern) {
result += inputSymbol;
multi = true;
}
else if (maskExpression[cursor + 1] === "?" /* MaskExpression.SYMBOL_QUESTION */ &&
this._checkSymbolMask(inputSymbol, maskExpression[cursor + 2] ?? "" /* MaskExpression.EMPTY_STRING */)) {
result += inputSymbol;
cursor += 3;
}
else if (this._checkSymbolMask(inputSymbol, maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */)) {
if (maskExpression[cursor] === "H" /* MaskExpression.HOURS */) {
if (this.apm ? Number(inputSymbol) > 9 : Number(inputSymbol) > 2) {
// eslint-disable-next-line no-param-reassign
position = !this.leadZeroDateTime ? position + 1 : position;
cursor += 1;
this._shiftStep(maskExpression, cursor, inputArray.length);
i--;
if (this.leadZeroDateTime) {
result += '0';
}
continue;
}
}
if (maskExpression[cursor] === "h" /* MaskExpression.HOUR */) {
if (this.apm
? (result.length === 1 && Number(result) > 1) ||
(result === '1' && Number(inputSymbol) > 2) ||
(inputValue.slice(cursor - 1, cursor).length === 1 &&
Number(inputValue.slice(cursor - 1, cursor)) > 2) ||
(inputValue.slice(cursor - 1, cursor) === '1' &&
Number(inputSymbol) > 2)
: (result === '2' && Number(inputSymbol) > 3) ||
((result.slice(cursor - 2, cursor) === '2' ||
result.slice(cursor - 3, cursor) === '2' ||
result.slice(cursor - 4, cursor) === '2' ||
result.slice(cursor - 1, cursor) === '2') &&
Number(inputSymbol) > 3 &&
cursor > 10)) {
// eslint-disable-next-line no-param-reassign
position = position + 1;
cursor += 1;
i--;
continue;
}
}
if (maskExpression[cursor] === "m" /* MaskExpression.MINUTE */ ||
maskExpression[cursor] === "s" /* MaskExpression.SECOND */) {
if (Number(inputSymbol) > 5) {
// eslint-disable-next-line no-param-reassign
position = !this.leadZeroDateTime ? position + 1 : position;
cursor += 1;
this._shiftStep(maskExpression, cursor, inputArray.length);
i--;
if (this.leadZeroDateTime) {
result += '0';
}
continue;
}
}
const daysCount = 31;
const inputValueCursor = inputValue[cursor];
const inputValueCursorPlusOne = inputValue[cursor + 1];
const inputValueCursorPlusTwo = inputValue[cursor + 2];
const inputValueCursorMinusOne = inputValue[cursor - 1];
const inputValueCursorMinusTwo = inputValue[cursor - 2];
const inputValueCursorMinusThree = inputValue[cursor - 3];
const inputValueSliceMinusThreeMinusOne = inputValue.slice(cursor - 3, cursor - 1);
const inputValueSliceMinusOnePlusOne = inputValue.slice(cursor - 1, cursor + 1);
const inputValueSliceCursorPlusTwo = inputValue.slice(cursor, cursor + 2);
const inputValueSliceMinusTwoCursor = inputValue.slice(cursor - 2, cursor);
if (maskExpression[cursor] === "d" /* MaskExpression.DAY */) {
const maskStartWithMonth = maskExpression.slice(0, 2) === "M0" /* MaskExpression.MONTHS */;
const startWithMonthInput = maskExpression.slice(0, 2) === "M0" /* MaskExpression.MONTHS */ &&
this.specialCharacters.includes(inputValueCursorMinusTwo);
if ((Number(inputSymbol) > 3 && this.leadZeroDateTime) ||
(!maskStartWithMonth &&
(Number(inputValueSliceCursorPlusTwo) > daysCount ||
Number(inputValueSliceMinusOnePlusOne) > daysCount ||
(this.specialCharacters.includes(inputValueCursorPlusOne) &&
!backspaced))) ||
(startWithMonthInput
? Number(inputValueSliceMinusOnePlusOne) > daysCount ||
(!this.specialCharacters.includes(inputValueCursor) &&
this.specialCharacters.includes(inputValueCursorPlusTwo)) ||
this.specialCharacters.includes(inputValueCursor)
: Number(inputValueSliceCursorPlusTwo) > daysCount ||
(this.specialCharacters.includes(inputValueCursorPlusOne) &&
!backspaced))) {
// eslint-disable-next-line no-param-reassign
position = !this.leadZeroDateTime ? position + 1 : position;
cursor += 1;
this._shiftStep(maskExpression, cursor, inputArray.length);
i--;
if (this.leadZeroDateTime) {
result += '0';
}
continue;
}
}
if (maskExpression[cursor] === "M" /* MaskExpression.MONTH */) {
const monthsCount = 12;
// mask without day
const withoutDays = cursor === 0 &&
(Number(inputSymbol) > 2 ||
Number(inputValueSliceCursorPlusTwo) > monthsCount ||
(this.specialCharacters.includes(inputValueCursorPlusOne) &&
!backspaced));
// day<10 && month<12 for input
const specialChart = maskExpression.slice(cursor + 2, cursor + 3);
const day1monthInput = inputValueSliceMinusThreeMinusOne.includes(specialChart) &&
maskExpression.includes('d0') &&
((this.specialCharacters.includes(inputValueCursorMinusTwo) &&
Number(inputValueSliceMinusOnePlusOne) > monthsCount &&
!this.specialCharacters.includes(inputValueCursor)) ||
this.specialCharacters.includes(inputValueCursor) ||
(this.specialCharacters.includes(inputValueCursorMinusThree) &&
Number(inputValueSliceMinusTwoCursor) > monthsCount &&
!this.specialCharacters.includes(inputValueCursorMinusOne)) ||
this.specialCharacters.includes(inputValueCursorMinusOne));
// month<12 && day<10 for input
const day2monthInput = Number(inputValueSliceMinusThreeMinusOne) <= daysCount &&
!this.specialCharacters.includes(inputValueSliceMinusThreeMinusOne) &&
this.specialCharacters.includes(inputValueCursorMinusOne) &&
(Number(inputValueSliceCursorPlusTwo) > monthsCount ||
(this.specialCharacters.includes(inputValueCursorPlusOne) &&
!backspaced));
// cursor === 5 && without days
const day2monthInputDot = (Number(inputValueSliceCursorPlusTwo) > monthsCount && cursor === 5) ||
(this.specialCharacters.includes(inputValueCursorPlusOne) &&
cursor === 5);
// // day<10 && month<12 for paste whole data
const day1monthPaste = Number(inputValueSliceMinusThreeMinusOne) > daysCount &&
!this.specialCharacters.includes(inputValueSliceMinusThreeMinusOne) &&
!this.specialCharacters.includes(inputValueSliceMinusTwoCursor) &&
Number(inputValueSliceMinusTwoCursor) > monthsCount &&
maskExpression.includes('d0');
// 10<day<31 && month<12 for paste whole data
const day2monthPaste = Number(inputValueSliceMinusThreeMinusOne) <= daysCount &&
!this.specialCharacters.includes(inputValueSliceMinusThreeMinusOne) &&
!this.specialCharacters.includes(inputValueCursorMinusOne) &&
Number(inputValueSliceMinusOnePlusOne) > monthsCount;
if ((Number(inputSymbol) > 1 && this.leadZeroDateTime) ||
withoutDays ||
day1monthInput ||
day2monthPaste ||
day1monthPaste ||
day2monthInput ||
(day2monthInputDot && !this.leadZeroDateTime)) {
// eslint-disable-next-line no-param-reassign
position = !this.leadZeroDateTime ? position + 1 : position;
cursor += 1;
this._shiftStep(maskExpression, cursor, inputArray.length);
i--;
if (this.leadZeroDateTime) {
result += '0';
}
continue;
}
}
result += inputSymbol;
cursor++;
}
else if ((inputSymbol === " " /* MaskExpression.WHITE_SPACE */ &&
maskExpression[cursor] === " " /* MaskExpression.WHITE_SPACE */) ||
(inputSymbol === "/" /* MaskExpression.SLASH */ &&
maskExpression[cursor] === "/" /* MaskExpression.SLASH */)) {
result += inputSymbol;
cursor++;
}
else if (this.specialCharacters.indexOf(maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */) !== -1) {
result += maskExpression[cursor];
cursor++;
this._shiftStep(maskExpression, cursor, inputArray.length);
i--;
}
else if (maskExpression[cursor] === "9" /* MaskExpression.NUMBER_NINE */ &&
this.showMaskTyped) {
this._shiftStep(maskExpression, cursor, inputArray.length);
}
else if (this.patterns[maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */] &&
this.patterns[maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */]?.optional) {
if (!!inputArray[cursor] &&
maskExpression !== '099.099.099.099' &&
maskExpression !== '000.000.000-00' &&
maskExpression !== '00.000.000/0000-00' &&
!maskExpression.match(/^9+\.0+$/) &&
!this.patterns[maskExpression[cursor] ?? "" /* MaskExpression.EMPTY_STRING */]
?.optional) {
result += inputArray[cursor];
}
if (maskExpression.includes("9" /* MaskExpression.NUMBER_NINE */ + "*" /* MaskExpression.SYMBOL_STAR */) &&
maskExpression.includes("0" /* MaskExpression.NUMBER_ZERO */ + "*" /* MaskExpression.SYMBOL_STAR */)) {
cursor++;
}
cursor++;
i--;
}
else if (this.maskExpression[cursor + 1] === "*" /* MaskExpression.SYMBOL_STAR */ &&
this._findSpecialChar(this.maskExpression[cursor + 2] ?? "" /* MaskExpression.EMPTY_STRING */) &&
this._findSpecialChar(inputSymbol) === this.maskExpression[cursor + 2] &&
multi) {
cursor += 3;
result += inputSymbol;
}
else if (this.maskExpression[cursor + 1] === "?" /* MaskExpression.SYMBOL_QUESTION */ &&
this._findSpecialChar(this.maskExpression[cursor + 2] ?? "" /* MaskExpression.EMPTY_STRING */) &&
this._findSpecialChar(inputSymbol) === this.maskExpression[cursor + 2] &&
multi) {
cursor += 3;
result += inputSymbol;
}
else if (this.showMaskTyped &&
this.specialCharacters.indexOf(inputSymbol) < 0 &&
inputSymbol !== this.placeHolderCharacter &&
this.placeHolderCharacter.length === 1) {
stepBack = true;
}
}
}
if (result.length + 1 === maskExpression.length &&
this.specialCharacters.indexOf(maskExpression[maskExpression.length - 1] ?? "" /* MaskExpression.EMPTY_STRING */) !== -1) {
result += maskExpression[maskExpression.length - 1];
}
let newPosition = position + 1;
while (this._shift.has(newPosition)) {
shift++;
newPosition++;
}
let actualShift = justPasted && !maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */)
? cursor
: this._shift.has(position)
? shift
: 0;
if (stepBack) {
actualShift--;
}
cb(actualShift, backspaceShift);
if (shift < 0) {
this._shift.clear();
}
let onlySpecial = false;
if (backspaced) {
onlySpecial = inputArray.every((char) => this.specialCharacters.includes(char));
}
let res = `${this.prefix}${onlySpecial ? "" /* MaskExpression.EMPTY_STRING */ : result}${this.showMaskTyped ? '' : this.suffix}`;
if (result.length === 0) {
res = !this.dropSpecialCharacters ? `${this.prefix}${result}` : `${result}`;
}
if (result.includes("-" /* MaskExpression.MINUS */) && this.prefix && this.allowNegativeNumbers) {
if (backspaced && result === "-" /* MaskExpression.MINUS */) {
return '';
}
res = `${"-" /* MaskExpression.MINUS */}${this.prefix}${result
.split("-" /* MaskExpression.MINUS */)
.join("" /* MaskExpression.EMPTY_STRING */)}${this.suffix}`;
}
return res;
}
_findDropSpecialChar(inputSymbol) {
if (Array.isArray(this.dropSpecialCharacters)) {
return this.dropSpecialCharacters.find((val) => val === inputSymbol);
}
return this._findSpecialChar(inputSymbol);
}
_findSpecialChar(inputSymbol) {
return this.specialCharacters.find((val) => val === inputSymbol);
}
_checkSymbolMask(inputSymbol, maskSymbol) {
this.patterns = this.customPattern ? this.customPattern : this.patterns;
return ((this.patterns[maskSymbol]?.pattern &&
this.patterns[maskSymbol]?.pattern.test(inputSymbol)) ??
false);
}
_stripToDecimal(str) {
return str
.split("" /* MaskExpression.EMPTY_STRING */)
.filter((i, idx) => {
const isDecimalMarker = typeof this.decimalMarker === 'string'
? i === this.decimalMarker
: // TODO (inepipenko) use utility type
this.decimalMarker.includes(i);
return (i.match('^-?\\d') ||
i === this.thousandSeparator ||
isDecimalMarker ||
(i === "-" /* MaskExpression.MINUS */ && idx === 0 && this.allowNegativeNumbers));
})
.join("" /* MaskExpression.EMPTY_STRING */);
}
_charToRegExpExpression(char) {
// if (Array.isArray(char)) {
// return char.map((v) => ('[\\^$.|?*+()'.indexOf(v) >= 0 ? `\\${v}` : v)).join('|');
// }
if (char) {
const charsToEscape = '[\\^$.|?*+()';
return char === ' ' ? '\\s' : charsToEscape.indexOf(char) >= 0 ? `\\${char}` : char;
}
return char;
}
_shiftStep(maskExpression, cursor, inputLength) {
const shiftStep = /[*?]/g.test(maskExpression.slice(0, cursor))
? inputLength
: cursor;
this._shift.add(shiftStep + this.prefix.length || 0);
}
_compareOrIncludes(value, comparedValue, excludedValue) {
return Array.isArray(comparedValue)
? comparedValue.filter((v) => v !== excludedValue).includes(value)
: value === comparedValue;
}
_validIP(valuesIP) {
return !(valuesIP.length === 4 &&
!valuesIP.some((value, index) => {
if (valuesIP.length !== index + 1) {
return value === "" /* MaskExpression.EMPTY_STRING */ || Number(value) > 255;
}
return value === "" /* MaskExpression.EMPTY_STRING */ || Number(value.substring(0, 3)) > 255;
}));
}
_splitPercentZero(value) {
if (value === "-" /* MaskExpression.MINUS */ && this.allowNegativeNumbers) {
return value;
}
const decimalIndex = typeof this.decimalMarker === 'string'
? value.indexOf(this.decimalMarker)
: value.indexOf("." /* MaskExpression.DOT */);
const emptyOrMinus = this.allowNegativeNumbers && value.includes("-" /* MaskExpression.MINUS */) ? '-' : '';
if (decimalIndex === -1) {
const parsedValue = parseInt(emptyOrMinus ? value.slice(1, value.length) : value, 10);
return isNaN(parsedValue)
? "" /* MaskExpression.EMPTY_STRING */
: `${emptyOrMinus}${parsedValue}`;
}
else {
const integerPart = parseInt(value.replace('-', '').substring(0, decimalIndex), 10);
const decimalPart = value.substring(decimalIndex + 1);
const integerString = isNaN(integerPart) ? '' : integerPart.toString();
const decimal = typeof this.decimalMarker === 'string' ? this.decimalMarker : "." /* MaskExpression.DOT */;
return integerString === "" /* MaskExpression.EMPTY_STRING */
? "" /* MaskExpression.EMPTY_STRING */
: `${emptyOrMinus}${integerString}${decimal}${decimalPart}`;
}
}
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskApplierService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskApplierService }); }
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskApplierService, decorators: [{
type: Injectable
}] });
class NgxMaskService extends NgxMaskApplierService {
constructor() {
super(...arguments);
this.isNumberValue = false;
this.maskIsShown = '';
this.selStart = null;
this.selEnd = null;
/**
* Whether we are currently in writeValue function, in this case when applying the mask we don't want to trigger onChange function,
* since writeValue should be a one way only process of writing the DOM value based on the Angular model value.
*/
this.writingValue = false;
this.maskChanged = false;
this._maskExpressionArray = [];
this.triggerOnMaskChange = false;
this._previousValue = '';
this._currentValue = '';
this._emitValue = false;
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-explicit-any
this.onChange = (_) => { };
this._elementRef = inject(ElementRef, { optional: true });
this.document = inject(DOCUMENT);
this._config = inject(NGX_MASK_CONFIG);
this._renderer = inject(Renderer2, { optional: true });
}
// eslint-disable-next-line complexity
applyMask(inputValue, maskExpression, position = 0, justPasted = false, backspaced = false,
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-explicit-any
cb = () => { }) {
if (!maskExpression) {
return inputValue !== this.actualValue ? this.actualValue : inputValue;
}
this.maskIsShown = this.showMaskTyped
? this.showMaskInInput()
: "" /* MaskExpression.EMPTY_STRING */;
if (this.maskExpression === "IP" /* MaskExpression.IP */ && this.showMaskTyped) {
this.maskIsShown = this.showMaskInInput(inputValue || "#" /* MaskExpression.HASH */);
}
if (this.maskExpression === "CPF_CNPJ" /* MaskExpression.CPF_CNPJ */ && this.showMaskTyped) {
this.maskIsShown = this.showMaskInInput(inputValue || "#" /* MaskExpression.HASH */);
}
if (!inputValue && this.showMaskTyped) {
this.formControlResult(this.prefix);
return `${this.prefix}${this.maskIsShown}${this.suffix}`;
}
const getSymbol = !!inputValue && typeof this.selStart === 'number'
? inputValue[this.selStart] ?? "" /* MaskExpression.EMPTY_STRING */
: "" /* MaskExpression.EMPTY_STRING */;
let newInputValue = '';
if (this.hiddenInput !== undefined && !this.writingValue) {
let actualResult = inputValue && inputValue.length === 1
? inputValue.split("" /* MaskExpression.EMPTY_STRING */)
: this.actualValue.split("" /* MaskExpression.EMPTY_STRING */);
// eslint-disable @typescript-eslint/no-unused-expressions
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
if (typeof this.selStart === 'object' && typeof this.selEnd === 'object') {
this.selStart = Number(this.selStart);
this.selEnd = Number(this.selEnd);
}
else {
inputValue !== "" /* MaskExpression.EMPTY_STRING */ && actualResult.length
? typeof this.selStart === 'number' && typeof this.selEnd === 'number'
? inputValue.length > actualResult.length
? actualResult.splice(this.selStart, 0, getSymbol)
: inputValue.length < actualResult.length
? actualResult.length - inputValue.length === 1
? backspaced
? actualResult.splice(this.selStart - 1, 1)
: actualResult.splice(inputValue.length - 1, 1)
: actualResult.splice(this.selStart, this.selEnd - this.selStart)
: null
: null
: (actualResult = []);
}
if (this.showMaskTyped) {
if (!this.hiddenInput) {
// eslint-disable-next-line no-param-reassign
inputValue = this.removeMask(inputValue);
}
}
// eslint-enable @typescript-eslint/no-unused-expressions
newInputValue =
this.actualValue.length && actualResult.length <= inputValue.length
? this.shiftTypedSymbols(actualResult.join("" /* MaskExpression.EMPTY_STRING */))
: inputValue;
}
if (justPasted && (this.hiddenInput || !this.hiddenInput)) {
newInputValue = inputValue;
}
if (backspaced &&
this.specialCharacters.indexOf(this.maskExpression[position] ?? "" /* MaskExpression.EMPTY_STRING */) !== -1 &&
this.showMaskTyped &&
!this.prefix) {
newInputValue = this._currentValue;
}
if (this.deletedSpecialCharacter && position) {
if (this.specialCharacters.includes(this.actualValue.slice(position, position + 1))) {
// eslint-disable-next-line no-param-reassign
position = position + 1;
}
else if (maskExpression.slice(position - 1, position + 1) !== "M0" /* MaskExpression.MONTHS */) {
// eslint-disable-next-line no-param-reassign
position = position - 2;
}
// eslint-disable-next-line no-param-reassign
this.deletedSpecialCharacter = false;
}
if (this.showMaskTyped &&
this.placeHolderCharacter.length === 1 &&
!this.leadZeroDateTime) {
// eslint-disable-next-line no-param-reassign
inputValue = this.removeMask(inputValue);
}
if (this.maskChanged) {
newInputValue = inputValue;
}
else {
newInputValue =
Boolean(newInputValue) && newInputValue.length ? newInputValue : inputValue;
}
if (this.showMaskTyped && this.keepCharacterPositions && this.actualValue && !justPasted) {
const value = this.dropSpecialCharacters
? this.removeMask(this.actualValue)
: this.actualValue;
this.formControlResult(value);
return this.actualValue
? this.actualValue
: `${this.prefix}${this.maskIsShown}${this.suffix}`;
}
const result = super.applyMask(newInputValue, maskExpression, position, justPasted, backspaced, cb);
this.actualValue = this.getActualValue(result);
// handle some separator implications:
// a.) adjust decimalMarker default (. -> ,) if thousandSeparator is a dot
if (this.thousandSeparator === "." /* MaskExpression.DOT */ &&
this.decimalMarker === "." /* MaskExpression.DOT */) {
this.decimalMarker = "," /* MaskExpression.COMMA */;
}
// b) remove decimal marker from list of special characters to mask
if (this.maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */) &&
this.dropSpecialCharacters === true) {
this.specialCharacters = this.specialCharacters.filter((item) => !this._compareOrIncludes(item, this.decimalMarker, this.thousandSeparator) //item !== this.decimalMarker, // !
);
}
if (result || result === '') {
this._previousValue = this._currentValue;
this._currentValue = result;
this._emitValue =
this._previousValue !== this._currentValue ||
this.maskChanged ||
(this._previousValue === this._currentValue && justPasted);
}
this._emitValue
? this.writingValue
? requestAnimationFrame(() => this.formControlResult(result))
: this.formControlResult(result)
: '';
if (!this.showMaskTyped || (this.showMaskTyped && this.hiddenInput)) {
if (this.hiddenInput) {
if (backspaced) {
return this.hideInput(result, this.maskExpression);
}
return `${this.hideInput(result, this.maskExpression)}${this.maskIsShown.slice(result.length)}`;
}
return result;
}
const resLen = result.length;
const prefNmask = `${this.prefix}${this.maskIsShown}${this.suffix}`;
if (this.maskExpression.includes("H" /* MaskExpression.HOURS */)) {
const countSkipedSymbol = this._numberSkipedSymbols(result);
return `${result}${prefNmask.slice(resLen + countSkipedSymbol)}`;
}
else if (this.maskExpression === "IP" /* MaskExpression.IP */ ||
this.maskExpression === "CPF_CNPJ" /* MaskExpression.CPF_CNPJ */) {
return `${result}${prefNmask}`;
}
return `${result}${prefNmask.slice(resLen)}`;
}
// get the number of characters that were shifted
_numberSkipedSymbols(value) {
const regex = /(^|\D)(\d\D)/g;
let match = regex.exec(value);
let countSkipedSymbol = 0;
while (match != null) {
countSkipedSymbol += 1;
match = regex.exec(value);
}
return countSkipedSymbol;
}
applyValueChanges(position, justPasted, backspaced,
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-explicit-any
cb = () => { }) {
const formElement = this._elementRef?.nativeElement;
if (!formElement) {
return;
}
formElement.value = this.applyMask(formElement.value, this.maskExpression, position, justPasted, backspaced, cb);
if (formElement === this._getActiveElement()) {
return;
}
this.clearIfNotMatchFn();
}
hideInput(inputValue, maskExpression) {
return inputValue
.split("" /* MaskExpression.EMPTY_STRING */)
.map((curr, index) => {
if (this.patterns &&
this.patterns[maskExpression[index] ?? "" /* MaskExpression.EMPTY_STRING */] &&
this.patterns[maskExpression[index] ?? "" /* MaskExpression.EMPTY_STRING */]?.symbol) {
return this.patterns[maskExpression[index] ?? "" /* MaskExpression.EMPTY_STRING */]
?.symbol;
}
return curr;
})
.join("" /* MaskExpression.EMPTY_STRING */);
}
// this function is not necessary, it checks result against maskExpression
getActualValue(res) {
const compare = res
.split("" /* MaskExpression.EMPTY_STRING */)
.filter((symbol, i) => {
const maskChar = this.maskExpression[i] ?? "" /* MaskExpression.EMPTY_STRING */;
return (this._checkSymbolMask(symbol, maskChar) ||
(this.specialCharacters.includes(maskChar) && symbol === maskChar));
});
if (compare.join("" /* MaskExpression.EMPTY_STRING */) === res) {
return compare.join("" /* MaskExpression.EMPTY_STRING */);
}
return res;
}
shiftTypedSymbols(inputValue) {
let symbolToReplace = '';
const newInputValue = (inputValue &&
inputValue
.split("" /* MaskExpression.EMPTY_STRING */)
.map((currSymbol, index) => {
if (this.specialCharacters.includes(inputValue[index + 1] ?? "" /* MaskExpression.EMPTY_STRING */) &&
inputValue[index + 1] !== this.maskExpression[index + 1]) {
symbolToReplace = currSymbol;
return inputValue[index + 1];
}
if (symbolToReplace.length) {
const replaceSymbol = symbolToReplace;
symbolToReplace = "" /* MaskExpression.EMPTY_STRING */;
return replaceSymbol;
}
return currSymbol;
})) ||
[];
return newInputValue.join("" /* MaskExpression.EMPTY_STRING */);
}
/**
* Convert number value to string
* 3.1415 -> '3.1415'
* 1e-7 -> '0.0000001'
*/
numberToString(value) {
if ((!value && value !== 0) ||
(this.maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */) &&
(this.leadZero || !this.dropSpecialCharacters)) ||
(this.maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */) &&
this.separatorLimit.length > 14 &&
String(value).length > 14)) {
return String(value);
}
return Number(value)
.toLocaleString('fullwide', {
useGrouping: false,
maximumFractionDigits: 20,
})
.replace(`/${"-" /* MaskExpression.MINUS */}/`, "-" /* MaskExpression.MINUS */);
}
showMaskInInput(inputVal) {
if (this.showMaskTyped && !!this.shownMaskExpression) {
if (this.maskExpression.length !== this.shownMaskExpression.length) {
throw new Error('Mask expression must match mask placeholder length');
}
else {
return this.shownMaskExpression;
}
}
else if (this.showMaskTyped) {
if (inputVal) {
if (this.maskExpression === "IP" /* MaskExpression.IP */) {
return this._checkForIp(inputVal);
}
if (this.maskExpression === "CPF_CNPJ" /* MaskExpression.CPF_CNPJ */) {
return this._checkForCpfCnpj(inputVal);
}
}
if (this.placeHolderCharacter.length === this.maskExpression.length) {
return this.placeHolderCharacter;
}
return this.maskExpression.replace(/\w/g, this.placeHolderCharacter);
}
return '';
}
clearIfNotMatchFn() {
const formElement = this._elementRef?.nativeElement;
if (!formElement) {
return;
}
if (this.clearIfNotMatch &&
this.prefix.length + this.maskExpression.length + this.suffix.length !==
formElement.value.replace(this.placeHolderCharacter, "" /* MaskExpression.EMPTY_STRING */)
.length) {
this.formElementProperty = ['value', "" /* MaskExpression.EMPTY_STRING */];
this.applyMask('', this.maskExpression);
}
}
set formElementProperty([name, value]) {
if (!this._renderer || !this._elementRef) {
return;
}
//[TODO]: andriikamaldinov1 find better solution
Promise.resolve().then(() => this._renderer?.setProperty(this._elementRef?.nativeElement, name, value));
}
checkDropSpecialCharAmount(mask) {
const chars = mask
.split("" /* MaskExpression.EMPTY_STRING */)
.filter((item) => this._findDropSpecialChar(item));
return chars.length;
}
removeMask(inputValue) {
return this._removeMask(this._removeSuffix(this._removePrefix(inputValue)), this.specialCharacters.concat('_').concat(this.placeHolderCharacter));
}
_checkForIp(inputVal) {
if (inputVal === "#" /* MaskExpression.HASH */) {
return `${this.placeHolderCharacter}.${this.placeHolderCharacter}.${this.placeHolderCharacter}.${this.placeHolderCharacter}`;
}
const arr = [];
for (let i = 0; i < inputVal.length; i++) {
const value = inputVal[i] ?? "" /* MaskExpression.EMPTY_STRING */;
if (!value) {
continue;
}
if (value.match('\\d')) {
arr.push(value);
}
}
if (arr.length <= 3) {
return `${this.placeHolderCharacter}.${this.placeHolderCharacter}.${this.placeHolderCharacter}`;
}
if (arr.length > 3 && arr.length <= 6) {
return `${this.placeHolderCharacter}.${this.placeHolderCharacter}`;
}
if (arr.length > 6 && arr.length <= 9) {
return this.placeHolderCharacter;
}
if (arr.length > 9 && arr.length <= 12) {
return '';
}
return '';
}
_checkForCpfCnpj(inputVal) {
const cpf = `${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`.${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`.${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`-${this.placeHolderCharacter}${this.placeHolderCharacter}`;
const cnpj = `${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`.${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`.${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`/${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}${this.placeHolderCharacter}` +
`-${this.placeHolderCharacter}${this.placeHolderCharacter}`;
if (inputVal === "#" /* MaskExpression.HASH */) {
return cpf;
}
const arr = [];
for (let i = 0; i < inputVal.length; i++) {
const value = inputVal[i] ?? "" /* MaskExpression.EMPTY_STRING */;
if (!value) {
continue;
}
if (value.match('\\d')) {
arr.push(value);
}
}
if (arr.length <= 3) {
return cpf.slice(arr.length, cpf.length);
}
if (arr.length > 3 && arr.length <= 6) {
return cpf.slice(arr.length + 1, cpf.length);
}
if (arr.length > 6 && arr.length <= 9) {
return cpf.slice(arr.length + 2, cpf.length);
}
if (arr.length > 9 && arr.length < 11) {
return cpf.slice(arr.length + 3, cpf.length);
}
if (arr.length === 11) {
return '';
}
if (arr.length === 12) {
if (inputVal.length === 17) {
return cnpj.slice(16, cnpj.length);
}
return cnpj.slice(15, cnpj.length);
}
if (arr.length > 12 && arr.length <= 14) {
return cnpj.slice(arr.length + 4, cnpj.length);
}
return '';
}
/**
* Recursively determine the current active element by navigating the Shadow DOM until the Active Element is found.
*/
_getActiveElement(document = this.document) {
const shadowRootEl = document?.activeElement?.shadowRoot;
if (!shadowRootEl?.activeElement) {
return document.activeElement;
}
else {
return this._getActiveElement(shadowRootEl);
}
}
/**
* Propogates the input value back to the Angular model by triggering the onChange function. It won't do this if writingValue
* is true. If that is true it means we are currently in the writeValue function, which is supposed to only update the actual
* DOM element based on the Angular model value. It should be a one way process, i.e. writeValue should not be modifying the Angular
* model value too. Therefore, we don't trigger onChange in this scenario.
* @param inputValue the current form input value
*/
formControlResult(inputValue) {
if (this.writingValue || (!this.triggerOnMaskChange && this.maskChanged)) {
this.maskChanged
? this.onChange(this.outputTransformFn(this._toNumber(this._checkSymbols(this._removeSuffix(this._removePrefix(inputValue))))))
: '';
this.maskChanged = false;
return;
}
if (Array.isArray(this.dropSpecialCharacters)) {
this.onChange(this.outputTransformFn(this._toNumber(this._checkSymbols(this._removeMask(this._removeSuffix(this._removePrefix(inputValue)), this.dropSpecialCharacters)))));
}
else if (this.dropSpecialCharacters ||
(!this.dropSpecialCharacters && this.prefix === inputValue)) {
this.onChange(this.outputTransformFn(this._toNumber(this._checkSymbols(this._removeSuffix(this._removePrefix(inputValue))))));
}
else {
this.onChange(this.outputTransformFn(this._toNumber(inputValue)));
}
}
_toNumber(value) {
if (!this.isNumberValue || value === "" /* MaskExpression.EMPTY_STRING */) {
return value;
}
if (this.maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */) &&
(this.leadZero || !this.dropSpecialCharacters)) {
return value;
}
if (String(value).length > 16 && this.separatorLimit.length > 14) {
return String(value);
}
const num = Number(value);
if (this.maskExpression.startsWith("separator" /* MaskExpression.SEPARATOR */) && Number.isNaN(num)) {
const val = String(value).replace(',', '.');
return Number(val);
}
return Number.isNaN(num) ? value : num;
}
_removeMask(value, specialCharactersForRemove) {
if (this.maskExpression.startsWith("percent" /* MaskExpression.PERCENT */) &&
value.includes("." /* MaskExpression.DOT */)) {
return value;
}
return value
? value.replace(this._regExpForRemove(specialCharactersForRemove), "" /* MaskExpression.EMPTY_STRING */)
: value;
}
_removePrefix(value) {
if (!this.prefix) {
return value;
}
return value ? value.replace(this.prefix, "" /* MaskExpression.EMPTY_STRING */) : value;
}
_removeSuffix(value) {
if (!this.suffix) {
return value;
}
return value ? value.replace(this.suffix, "" /* MaskExpression.EMPTY_STRING */) : value;
}
_retrieveSeparatorValue(result) {
let specialCharacters = Array.isArray(this.dropSpecialCharacters)
? this.specialCharacters.filter((v) => {
return this.dropSpecialCharacters.includes(v);
})
: this.specialCharacters;
if (!this.deletedSpecialCharacter &&
this._checkPatternForSpace() &&
result.includes(" " /* MaskExpression.WHITE_SPACE */) &&
this.maskExpression.includes("*" /* MaskExpression.SYMBOL_STAR */)) {
specialCharacters = specialCharacters.filter((char) => char !== " " /* MaskExpression.WHITE_SPACE */);
}
return this._removeMask(result, specialCharacters);
}
_regExpForRemove(specialCharactersForRemove) {
return new RegExp(specialCharactersForRemove.map((item) => `\\${item}`).join('|'), 'gi');
}
_replaceDecimalMarkerToDot(value) {
const markers = Array.isArray(this.decimalMarker)
? this.decimalMarker
: [this.decimalMarker];
return value.replace(this._regExpForRemove(markers), "." /* MaskExpression.DOT */);
}
_checkSymbols(result) {
if (result === "" /* MaskExpression.EMPTY_STRING */) {
return result;
}
if (this.maskExpression.startsWith("percent" /* MaskExpression.PERCENT */) &&
this.decimalMarker === "," /* MaskExpression.COMMA */) {
// eslint-disable-next-line no-param-reassign
result = result.replace("," /* MaskExpression.COMMA */, "." /* MaskExpression.DOT */);
}
const separatorPrecision = this._retrieveSeparatorPrecision(this.maskExpression);
const separatorValue = this._replaceDecimalMarkerToDot(this._retrieveSeparatorValue(result));
if (!this.isNumberValue) {
return separatorValue;
}
if (separatorPrecision) {
if (result === this.decimalMarker) {
return null;
}
if (this.separatorLimit.length > 14) {
return String(separatorValue);
}
return this._checkPrecision(this.maskExpression, separatorValue);
}
else {
return separatorValue;
}
}
_checkPatternForSpace() {
for (const key in this.patterns) {
// eslint-disable-next-line no-prototype-builtins
if (this.patterns[key] && this.patterns[key]?.hasOwnProperty('pattern')) {
const patternString = this.patterns[key]?.pattern.toString();
const pattern = this.patterns[key]?.pattern;
if (patternString?.includes(" " /* MaskExpression.WHITE_SPACE */) &&
pattern?.test(this.maskExpression)) {
return true;
}
}
}
return false;
}
// TODO should think about helpers or separting decimal precision to own property
_retrieveSeparatorPrecision(maskExpretion) {
const matcher = maskExpretion.match(new RegExp(`^separator\\.([^d]*)`));
return matcher ? Number(matcher[1]) : null;
}
_checkPrecision(separatorExpression, separatorValue) {
const separatorPrecision = separatorExpression.slice(10, 11);
if (separatorExpression.indexOf('2') > 0 ||
(this.leadZero && Number(separatorPrecision) > 0)) {
if (this.decimalMarker === "," /* MaskExpression.COMMA */ && this.leadZero) {
// eslint-disable-next-line no-param-reassign
separatorValue = separatorValue.replace(',', '.');
}
return this.leadZero
? Number(separatorValue).toFixed(Number(separatorPrecision))
: Number(separatorValue).toFixed(2);
}
return this.numberToString(separatorValue);
}
_repeatPatternSymbols(maskExp) {
return ((maskExp.match(/{[0-9]+}/) &&
maskExp
.split("" /* MaskExpression.EMPTY_STRING */)
.reduce((accum, currVal, index) => {
this._start =
currVal === "{" /* MaskExpression.CURLY_BRACKETS_LEFT */ ? index : this._start;
if (currVal !== "}" /* MaskExpression.CURLY_BRACKETS_RIGHT */) {
return this._findSpecialChar(currVal) ? accum + currVal : accum;
}
this._end = index;
const repeatNumber = Number(maskExp.slice(this._start + 1, this._end));
const replaceWith = new Array(repeatNumber + 1).join(maskExp[this._start - 1]);
if (maskExp.slice(0, this._start).length > 1 &&
maskExp.includes("S" /* MaskExpression.LETTER_S */)) {
const symbols = maskExp.slice(0, this._start - 1);
return symbols.includes("{" /* MaskExpression.CURLY_BRACKETS_LEFT */)
? accum + replaceWith
: symbols + accum + replaceWith;
}
else {
return accum + replaceWith;
}
}, '')) ||
maskExp);
}
currentLocaleDecimalMarker() {
return (1.1).toLocaleString().substring(1, 2);
}
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskService }); }
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskService, decorators: [{
type: Injectable
}] });
/**
* @internal
*/
function _configFactory() {
const initConfig = inject(INITIAL_CONFIG);
const configValue = inject(NEW_CONFIG);
return configValue instanceof Function
? { ...initConfig, ...configValue() }
: { ...initConfig, ...configValue };
}
function provideNgxMask(configValue) {
return [
{
provide: NEW_CONFIG,
useValue: configValue,
},
{
provide: INITIAL_CONFIG,
useValue: initialConfig,
},
{
provide: NGX_MASK_CONFIG,
useFactory: _configFactory,
},
NgxMaskService,
];
}
function provideEnvironmentNgxMask(configValue) {
return makeEnvironmentProviders(provideNgxMask(configValue));
}
class NgxMaskDirective {
constructor() {
// eslint-disable-next-line @angular-eslint/no-input-rename
this.maskExpression = '';
this.specialCharacters = [];
this.patterns = {};
this.prefix = '';
this.suffix = '';
this.thousandSeparator = ' ';
this.decimalMarker = '.';
this.dropSpecialCharacters = null;
this.hiddenInput = null;
this.showMaskTyped = null;
this.placeHolderCharacter = null;
this.shownMaskExpression = null;
this.showTemplate = null;
this.clearIfNotMatch = null;
this.validation = null;
this.separatorLimit = null;
this.allowNegativeNumbers = null;
this.leadZeroDateTime = null;
this.leadZero = null;
this.triggerOnMaskChange = null;
this.apm = null;
this.inputTransformFn = null;
this.outputTransformFn = null;
this.keepCharacterPositions = null;
this.maskFilled = new EventEmitter();
this._maskValue = '';
this._position = null;
this._maskExpressionArray = [];
this._justPasted = false;
this._isFocused = false;
/**For IME composition event */
this._isComposing = false;
this.document = inject(DOCUMENT);
this._maskService = inject(NgxMaskService, { self: true });
this._config = inject(NGX_MASK_CONFIG);
// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-explicit-any
this.onChange = (_) => { };
// eslint-disable-next-line @typescript-eslint/no-empty-function
this.onTouch = () => { };
}
ngOnChanges(changes) {
const { maskExpression, specialCharacters, patterns, prefix, suffix, thousandSeparator, decimalMarker, dropSpecialCharacters, hiddenInput, showMaskTyped, placeHolderCharacter, shownMaskExpression, showTemplate, clearIfNotMatch, validation, separatorLimit, allowNegativeNumbers, leadZeroDateTime, leadZero, triggerOnMaskChange, apm, inputTransformFn, outputTransformFn, keepCharacterPositions, } = changes;
if (maskExpression) {
if (maskExpression.currentValue !== maskExpression.previousValue &&
!maskExpression.firstChange) {
this._maskService.maskChanged = true;
}
if (maskExpression.currentValue &&
maskExpression.currentValue.split("||" /* MaskExpression.OR */).length > 1) {
this._maskExpressionArray = maskExpression.currentValue
.split("||" /* MaskExpression.OR */)
.sort((a, b) => {
return a.length - b.length;
});
this._setMask();
}
else {
this._maskExpressionArray = [];
this._maskValue = maskExpression.currentValue || "" /* MaskExpression.EMPTY_STRING */;
this._maskService.maskExpression = this._maskValue;
}
}
if (specialCharacters) {
if (!specialCharacters.currentValue || !Array.isArray(specialCharacters.currentValue)) {
return;
}
else {
this._maskService.specialCharacters = specialCharacters.currentValue || [];
}
}
if (allowNegativeNumbers) {
this._maskService.allowNegativeNumbers = allowNegativeNumbers.currentValue;
if (this._maskService.allowNegativeNumbers) {
this._maskService.specialCharacters = this._maskService.specialCharacters.filter((c) => c !== "-" /* MaskExpression.MINUS */);
}
}
// Only overwrite the mask available patterns if a pattern has actually been passed in
if (patterns && patterns.currentValue) {
this._maskService.patterns = patterns.currentValue;
}
if (apm && apm.currentValue) {
this._maskService.apm = apm.currentValue;
}
if (prefix) {
this._maskService.prefix = prefix.currentValue;
}
if (suffix) {
this._maskService.suffix = suffix.currentValue;
}
if (thousandSeparator) {
this._maskService.thousandSeparator = thousandSeparator.currentValue;
}
if (decimalMarker) {
this._maskService.decimalMarker = decimalMarker.currentValue;
}
if (dropSpecialCharacters) {
this._maskService.dropSpecialCharacters = dropSpecialCharacters.currentValue;
}
if (hiddenInput) {
this._maskService.hiddenInput = hiddenInput.currentValue;
}
if (showMaskTyped) {
this._maskService.showMaskTyped = showMaskTyped.currentValue;
if (showMaskTyped.previousValue === false &&
showMaskTyped.currentValue === true &&
this._isFocused) {
requestAnimationFrame(() => {
this._maskService._elementRef?.nativeElement.click();
});
}
}
if (placeHolderCharacter) {
this._maskService.placeHolderCharacter = placeHolderCharacter.currentValue;
}
if (shownMaskExpression) {
this._maskService.shownMaskExpression = shownMaskExpression.currentValue;
}
if (showTemplate) {
this._maskService.showTemplate = showTemplate.currentValue;
}
if (clearIfNotMatch) {
this._maskService.clearIfNotMatch = clearIfNotMatch.currentValue;
}
if (validation) {
this._maskService.validation = validation.currentValue;
}
if (separatorLimit) {
this._maskService.separatorLimit = separatorLimit.currentValue;
}
if (leadZeroDateTime) {
this._maskService.leadZeroDateTime = leadZeroDateTime.currentValue;
}
if (leadZero) {
this._maskService.leadZero = leadZero.currentValue;
}
if (triggerOnMaskChange) {
this._maskService.triggerOnMaskChange = triggerOnMaskChange.currentValue;
}
if (inputTransformFn) {
this._maskService.inputTransformFn = inputTransformFn.currentValue;
}
if (outputTransformFn) {
this._maskService.outputTransformFn = outputTransformFn.currentValue;
}
if (keepCharacterPositions) {
this._maskService.keepCharacterPositions = keepCharacterPositions.currentValue;
}
this._applyMask();
}
// eslint-disable-next-line complexity
validate({ value }) {
if (!this._maskService.validation || !this._maskValue) {
return null;
}
if (this._maskService.ipError) {
return this._createValidationError(value);
}
if (this._maskService.cpfCnpjError) {
return this._createValidationError(value);
}
if (this._maskValue.startsWith("separator" /* MaskExpression.SEPARATOR */)) {
return null;
}
if (withoutValidation.includes(this._maskValue)) {
return null;
}
if (this._maskService.clearIfNotMatch) {
return null;
}
if (timeMasks.includes(this._maskValue)) {
return this._validateTime(value);
}
if (value && value.toString().length >= 1) {
let counterOfOpt = 0;
if (this._maskValue.startsWith("percent" /* MaskExpression.PERCENT */)) {
return null;
}
for (const key in this._maskService.patterns) {
if (this._maskService.patterns[key]?.optional) {
if (this._maskValue.indexOf(key) !== this._maskValue.lastIndexOf(key)) {
const opt = this._maskValue
.split("" /* MaskExpression.EMPTY_STRING */)
.filter((i) => i === key)
.join("" /* MaskExpression.EMPTY_STRING */);
counterOfOpt += opt.length;
}
else if (this._maskValue.indexOf(key) !== -1) {
counterOfOpt++;
}
if (this._maskValue.indexOf(key) !== -1 &&
value.toString().length >= this._maskValue.indexOf(key)) {
return null;
}
if (counterOfOpt === this._maskValue.length) {
return null;
}
}
}
if (this._maskValue.indexOf("{" /* MaskExpression.CURLY_BRACKETS_LEFT */) === 1 &&
value.toString().length ===
this._maskValue.length +
Number((this._maskValue.split("{" /* MaskExpression.CURLY_BRACKETS_LEFT */)[1] ??
"" /* MaskExpression.EMPTY_STRING */).split("}" /* MaskExpression.CURLY_BRACKETS_RIGHT */)[0]) -
4) {
return null;
}
else if ((this._maskValue.indexOf("*" /* MaskExpression.SYMBOL_STAR */) > 1 &&
value.toString().length <
this._maskValue.indexOf("*" /* MaskExpression.SYMBOL_STAR */)) ||
(this._maskValue.indexOf("?" /* MaskExpression.SYMBOL_QUESTION */) > 1 &&
value.toString().length <
this._maskValue.indexOf("?" /* MaskExpression.SYMBOL_QUESTION */)) ||
this._maskValue.indexOf("{" /* MaskExpression.CURLY_BRACKETS_LEFT */) === 1) {
return this._createValidationError(value);
}
if (this._maskValue.indexOf("*" /* MaskExpression.SYMBOL_STAR */) === -1 ||
this._maskValue.indexOf("?" /* MaskExpression.SYMBOL_QUESTION */) === -1) {
// eslint-disable-next-line no-param-reassign
value = typeof value === 'number' ? String(value) : value;
const array = this._maskValue.split('*');
const length = this._maskService.dropSpecialCharacters
? this._maskValue.length -
this._maskService.checkDropSpecialCharAmount(this._maskValue) -
counterOfOpt
: this.prefix
? this._maskValue.length + this.prefix.length - counterOfOpt
: this._maskValue.length - counterOfOpt;
if (array.length === 1) {
if (value.toString().length < length) {
return this._createValidationError(value);
}
}
if (array.length > 1) {
const lastIndexArray = array[array.length - 1];
if (lastIndexArray &&
this._maskService.specialCharacters.includes(lastIndexArray[0]) &&
String(value).includes(lastIndexArray[0] ?? '') &&
!this.dropSpecialCharacters) {
const special = value.split(lastIndexArray[0]);
return special[special.length - 1].length === lastIndexArray.length - 1
? null
: this._createValidationError(value);
}
else if (((lastIndexArray &&
!this._maskService.specialCharacters.includes(lastIndexArray[0])) ||
!lastIndexArray ||
this._maskService.dropSpecialCharacters) &&
value.length >= length - 1) {
return null;
}
else {
return this._createValidationError(value);
}
}
}
if (this._maskValue.indexOf("*" /* MaskExpression.SYMBOL_STAR */) === 1 ||
this._maskValue.indexOf("?" /* MaskExpression.SYMBOL_QUESTION */) === 1) {
return null;
}
}
if (value) {
this.maskFilled.emit();
return null;
}
return null;
}
onPaste() {
this._justPasted = true;
}
onFocus() {
this._isFocused = true;
}
onModelChange(value) {
// on form reset we need to update the actualValue
if ((value === "" /* MaskExpression.EMPTY_STRING */ || value === null || value === undefined) &&
this._maskService.actualValue) {
this._maskService.actualValue = this._maskService.getActualValue("" /* MaskExpression.EMPTY_STRING */);
}
}
onInput(e) {
// If IME is composing text, we wait for the composed text.
if (this._isComposing)
return;
const el = e.target;
const transformedValue = this._maskService.inputTransformFn(el.value);
if (el.type !== 'number') {
if (typeof transformedValue === 'string' || typeof transformedValue === 'number') {
el.value = transformedValue.toString();
this._inputValue = el.value;
this._setMask();
if (!this._maskValue) {
this.onChange(el.value);
return;
}
let position = el.selectionStart === 1
? el.selectionStart + this._maskService.prefix.length
: el.selectionStart;
if (this.showMaskTyped &&
this.keepCharacterPositions &&
this._maskService.placeHolderCharacter.length === 1) {
const inputSymbol = el.value.slice(position - 1, position);
const prefixLength = this.prefix.length;
const checkSymbols = this._maskService._checkSymbolMask(inputSymbol, this._maskService.maskExpression[position - 1 - prefixLength] ??
"" /* MaskExpression.EMPTY_STRING */);
const checkSpecialCharacter = this._maskService._checkSymbolMask(inputSymbol, this._maskService.maskExpression[position + 1 - prefixLength] ??
"" /* MaskExpression.EMPTY_STRING */);
const selectRangeBackspace = this._maskService.selStart === this._maskService.selEnd;
const selStart = Number(this._maskService.selStart) - prefixLength;
const selEnd = Number(this._maskService.selEnd) - prefixLength;
if (this._code === "Backspace" /* MaskExpression.BACKSPACE */) {
if (!selectRangeBackspace) {
if (this._maskService.selStart === prefixLength) {
this._maskService.actualValue = `${this.prefix}${this._maskService.maskIsShown.slice(0, selEnd)}${this._inputValue.split(this.prefix).join('')}`;
}
else if (this._maskService.selStart ===
this._maskService.maskIsShown.length + prefixLength) {
this._maskService.actualValue = `${this._inputValue}${this._maskService.maskIsShown.slice(selStart, selEnd)}`;
}
else {
this._maskService.actualValue = `${this.prefix}${this._inputValue
.split(this.prefix)
.join('')
.slice(0, selStart)}${this._maskService.maskIsShown.slice(selStart, selEnd)}${this._maskService.actualValue.slice(selEnd + prefixLength, this._maskService.maskIsShown.length + prefixLength)}${this.suffix}`;
}
}
else if (!this._maskService.specialCharacters.includes(this._maskService.maskExpression.slice(position - this.prefix.length, position + 1 - this.prefix.length)) &&
selectRangeBackspace) {
if (selStart === 1 && this.prefix) {
this._maskService.actualValue = `${this.prefix}${this._maskService.placeHolderCharacter}${el.value
.split(this.prefix)
.join('')
.split(this.suffix)
.join('')}${this.suffix}`;
position = position - 1;
}
else {
const part1 = el.value.substring(0, position);
const part2 = el.value.substring(position);
this._maskService.actualValue = `${part1}${this._maskService.placeHolderCharacter}${part2}`;
}
}
}
if (this._code !== "Backspace" /* MaskExpression.BACKSPACE */) {
if (!checkSymbols && !checkSpecialCharacter && selectRangeBackspace) {
position = Number(el.selectionStart) - 1;
}
else if (this._maskService.specialCharacters.includes(el.value.slice(position, position + 1)) &&
checkSpecialCharacter &&
!this._maskService.specialCharacters.includes(el.value.slice(position + 1, position + 2))) {
this._maskService.actualValue = `${el.value.slice(0, position - 1)}${el.value.slice(position, position + 1)}${inputSymbol}${el.value.slice(position + 2)}`;
position = position + 1;
}
else if (checkSymbols) {
if (el.value.length === 1 && position === 1) {
this._maskService.actualValue = `${this.prefix}${inputSymbol}${this._maskService.maskIsShown.slice(1, this._maskService.maskIsShown.length)}${this.suffix}`;
}
else {
this._maskService.actualValue = `${el.value.slice(0, position - 1)}${inputSymbol}${el.value
.slice(position + 1)
.split(this.suffix)
.join('')}${this.suffix}`;
}
}
else if (this.prefix &&
el.value.length === 1 &&
position - prefixLength === 1 &&
this._maskService._checkSymbolMask(el.value, this._maskService.maskExpression[position - 1 - prefixLength] ??
"" /* MaskExpression.EMPTY_STRING */)) {
this._maskService.actualValue = `${this.prefix}${el.value}${this._maskService.maskIsShown.slice(1, this._maskService.maskIsShown.length)}${this.suffix}`;
}
}
}
let caretShift = 0;
let backspaceShift = false;
if (this._code === "Delete" /* MaskExpression.DELETE */ && "separator" /* MaskExpression.SEPARATOR */) {
this._maskService.deletedSpecialCharacter = true;
}
if (this._inputValue.length >= this._maskService.maskExpression.length - 1 &&
this._code !== "Backspace" /* MaskExpression.BACKSPACE */ &&
this._maskService.maskExpression === "d0/M0/0000" /* MaskExpression.DAYS_MONTHS_YEARS */ &&
position < 10) {
const inputSymbol = this._inputValue.slice(position - 1, position);
el.value =
this._inputValue.slice(0, position - 1) +
inputSymbol +
this._inputValue.slice(position + 1);
}
if (this._maskService.maskExpression === "d0/M0/0000" /* MaskExpression.DAYS_MONTHS_YEARS */ &&
this.leadZeroDateTime) {
if ((position < 3 && Number(el.value) > 31 && Number(el.value) < 40) ||
(position === 5 && Number(el.value.slice(3, 5)) > 12)) {
position = position + 2;
}
}
if (this._maskService.maskExpression === "Hh:m0:s0" /* MaskExpression.HOURS_MINUTES_SECONDS */ &&
this.apm) {
if (this._justPasted && el.value.slice(0, 2) === "00" /* MaskExpression.DOUBLE_ZERO */) {
el.value = el.value.slice(1, 2) + el.value.slice(2, el.value.length);
}
el.value =
el.value === "00" /* MaskExpression.DOUBLE_ZERO */
? "0" /* MaskExpression.NUMBER_ZERO */
: el.value;
}
this._maskService.applyValueChanges(position, this._justPasted, this._code === "Backspace" /* MaskExpression.BACKSPACE */ || this._code === "Delete" /* MaskExpression.DELETE */, (shift, _backspaceShift) => {
this._justPasted = false;
caretShift = shift;
backspaceShift = _backspaceShift;
});
// only set the selection if the element is active
if (this._getActiveElement() !== el) {
return;
}
if (this._maskService.plusOnePosition) {
position = position + 1;
this._maskService.plusOnePosition = false;
}
// update position after applyValueChanges to prevent cursor on wrong position when it has an array of maskExpression
if (this._maskExpressionArray.length) {
if (this._code === "Backspace" /* MaskExpression.BACKSPACE */) {
position = this.specialCharacters.includes(this._inputValue.slice(position - 1, position))
? position - 1
: position;
}
else {
position =
el.selectionStart === 1
? el.selectionStart + this._maskService.prefix.length
: el.selectionStart;
}
}
this._position =
this._position === 1 && this._inputValue.length === 1 ? null : this._position;
let positionToApply = this._position
? this._inputValue.length + position + caretShift
: position +
(this._code === "Backspace" /* MaskExpression.BACKSPACE */ && !backspaceShift ? 0 : caretShift);
if (positionToApply > this._getActualInputLength()) {
positionToApply =
el.value === this._maskService.decimalMarker && el.value.length === 1
? this._getActualInputLength() + 1
: this._getActualInputLength();
}
if (positionToApply < 0) {
positionToApply = 0;
}
el.setSelectionRange(positionToApply, positionToApply);
this._position = null;
}
else {
console.warn('Ngx-mask writeValue work with string | number, your current value:', typeof transformedValue);
}
}
else {
if (!this._maskValue) {
this.onChange(el.value);
return;
}
this._maskService.applyValueChanges(el.value.length, this._justPasted, this._code === "Backspace" /* MaskExpression.BACKSPACE */ || this._code === "Delete" /* MaskExpression.DELETE */);
}
}
// IME starts
onCompositionStart() {
this._isComposing = true;
}
// IME completes
onCompositionEnd(e) {
this._isComposing = false;
this._justPasted = true;
this.onInput(e);
}
onBlur(e) {
if (this._maskValue) {
const el = e.target;
if (this.leadZero && el.value.length > 0 && typeof this.decimalMarker === 'string') {
const maskExpression = this._maskService.maskExpression;
const precision = Number(this._maskService.maskExpression.slice(maskExpression.length - 1, maskExpression.length));
if (precision > 0) {
el.value = this.suffix ? el.value.split(this.suffix).join('') : el.value;
const decimalPart = el.value.split(this.decimalMarker)[1];
el.value = el.value.includes(this.decimalMarker)
? el.value +
"0" /* MaskExpression.NUMBER_ZERO */.repeat(precision - decimalPart.length) +
this.suffix
: el.value +
this.decimalMarker +
"0" /* MaskExpression.NUMBER_ZERO */.repeat(precision) +
this.suffix;
this._maskService.actualValue = el.value;
}
}
this._maskService.clearIfNotMatchFn();
}
this._isFocused = false;
this.onTouch();
}
onClick(e) {
if (!this._maskValue) {
return;
}
const el = e.target;
const posStart = 0;
const posEnd = 0;
if (el !== null &&
el.selectionStart !== null &&
el.selectionStart === el.selectionEnd &&
el.selectionStart > this._maskService.prefix.length &&
// eslint-disable-next-line
e.keyCode !== 38) {
if (this._maskService.showMaskTyped && !this.keepCharacterPositions) {
// We are showing the mask in the input
this._maskService.maskIsShown = this._maskService.showMaskInInput();
if (el.setSelectionRange &&
this._maskService.prefix + this._maskService.maskIsShown === el.value) {
// the input ONLY contains the mask, so position the cursor at the start
el.focus();
el.setSelectionRange(posStart, posEnd);
}
else {
// the input contains some characters already
if (el.selectionStart > this._maskService.actualValue.length) {
// if the user clicked beyond our value's length, position the cursor at the end of our value
el.setSelectionRange(this._maskService.actualValue.length, this._maskService.actualValue.length);
}
}
}
}
const nextValue = el &&
(el.value === this._maskService.prefix
? this._maskService.prefix + this._maskService.maskIsShown
: el.value);
/** Fix of cursor position jumping to end in most browsers no matter where cursor is inserted onFocus */
if (el && el.value !== nextValue) {
el.value = nextValue;
}
/** fix of cursor position with prefix when mouse click occur */
if (el &&
el.type !== 'number' &&
(el.selectionStart || el.selectionEnd) <=
this._maskService.prefix.length) {
el.selectionStart = this._maskService.prefix.length;
return;
}
/** select only inserted text */
if (el && el.selectionEnd > this._getActualInputLength()) {
el.selectionEnd = this._getActualInputLength();
}
}
// eslint-disable-next-line complexity
onKeyDown(e) {
if (!this._maskValue) {
return;
}
if (this._isComposing) {
// User finalize their choice from IME composition, so trigger onInput() for the composed text.
if (e.key === 'Enter')
this.onCompositionEnd(e);
return;
}
this._code = e.code ? e.code : e.key;
const el = e.target;
this._inputValue = el.value;
this._setMask();
if (el.type !== 'number') {
if (e.key === "ArrowUp" /* MaskExpression.ARROW_UP */) {
e.preventDefault();
}
if (e.key === "ArrowLeft" /* MaskExpression.ARROW_LEFT */ ||
e.key === "Backspace" /* MaskExpression.BACKSPACE */ ||
e.key === "Delete" /* MaskExpression.DELETE */) {
if (e.key === "Backspace" /* MaskExpression.BACKSPACE */ && el.value.length === 0) {
el.selectionStart = el.selectionEnd;
}
if (e.key === "Backspace" /* MaskExpression.BACKSPACE */ && el.selectionStart !== 0) {
// If specialChars is false, (shouldn't ever happen) then set to the defaults
this.specialCharacters = this.specialCharacters?.length
? this.specialCharacters
: this._config.specialCharacters;
if (this.prefix.length > 1 &&
el.selectionStart <= this.prefix.length) {
el.setSelectionRange(this.prefix.length, el.selectionEnd);
}
else {
if (this._inputValue.length !== el.selectionStart &&
el.selectionStart !== 1) {
while (this.specialCharacters.includes((this._inputValue[el.selectionStart - 1] ??
"" /* MaskExpression.EMPTY_STRING */).toString()) &&
((this.prefix.length >= 1 &&
el.selectionStart > this.prefix.length) ||
this.prefix.length === 0)) {
el.setSelectionRange(el.selectionStart - 1, el.selectionEnd);
}
}
}
}
this.checkSelectionOnDeletion(el);
if (this._maskService.prefix.length &&
el.selectionStart <= this._maskService.prefix.length &&
el.selectionEnd <= this._maskService.prefix.length) {
e.preventDefault();
}
const cursorStart = el.selectionStart;
if (e.key === "Backspace" /* MaskExpression.BACKSPACE */ &&
!el.readOnly &&
cursorStart === 0 &&
el.selectionEnd === el.value.length &&
el.value.length !== 0) {
this._position = this._maskService.prefix ? this._maskService.prefix.length : 0;
this._maskService.applyMask(this._maskService.prefix, this._maskService.maskExpression, this._position);
}
}
if (!!this.suffix &&
this.suffix.length > 1 &&
this._inputValue.length - this.suffix.length < el.selectionStart) {
el.setSelectionRange(this._inputValue.length - this.suffix.length, this._inputValue.length);
}
else if ((e.code === 'KeyA' && e.ctrlKey) ||
(e.code === 'KeyA' && e.metaKey) // Cmd + A (Mac)
) {
el.setSelectionRange(0, this._getActualInputLength());
e.preventDefault();
}
this._maskService.selStart = el.selectionStart;
this._maskService.selEnd = el.selectionEnd;
}
}
/** It writes the value in the input */
async writeValue(controlValue) {
if (typeof controlValue === 'object' && controlValue !== null && 'value' in controlValue) {
if ('disable' in controlValue) {
this.setDisabledState(Boolean(controlValue.disable));
}
// eslint-disable-next-line no-param-reassign
controlValue = controlValue.value;
}
if (controlValue !== null) {
// eslint-disable-next-line no-param-reassign
controlValue = this.inputTransformFn
? this.inputTransformFn(controlValue)
: controlValue;
}
if (typeof controlValue === 'string' ||
typeof controlValue === 'number' ||
controlValue === null ||
controlValue === undefined) {
if (controlValue === null || controlValue === undefined || controlValue === '') {
this._maskService._currentValue = '';
this._maskService._previousValue = '';
}
// eslint-disable-next-line no-param-reassign
let inputValue = controlValue;
if (typeof inputValue === 'number' ||
this._maskValue.startsWith("separator" /* MaskExpression.SEPARATOR */)) {
// eslint-disable-next-line no-param-reassign
inputValue = String(inputValue);
const localeDecimalMarker = this._maskService.currentLocaleDecimalMarker();
if (!Array.isArray(this._maskService.decimalMarker)) {
// eslint-disable-next-line no-param-reassign
inputValue =
this._maskService.decimalMarker !== localeDecimalMarker
? inputValue.replace(localeDecimalMarker, this._maskService.decimalMarker)
: inputValue;
}
if (Array.isArray(this._maskService.decimalMarker) &&
this.decimalMarker === "." /* MaskExpression.DOT */) {
this._maskService.decimalMarker = "," /* MaskExpression.COMMA */;
}
if (this._maskService.leadZero &&
inputValue &&
this.maskExpression &&
this.dropSpecialCharacters !== false) {
// eslint-disable-next-line no-param-reassign
inputValue = this._maskService._checkPrecision(this._maskService.maskExpression, inputValue);
}
if (this._maskService.decimalMarker === "," /* MaskExpression.COMMA */) {
// eslint-disable-next-line no-param-reassign
inputValue = inputValue
.toString()
.replace("." /* MaskExpression.DOT */, "," /* MaskExpression.COMMA */);
}
if (this.maskExpression?.startsWith("separator" /* MaskExpression.SEPARATOR */) && this.leadZero) {
requestAnimationFrame(() => {
this._maskService.applyMask(inputValue?.toString() ?? '', this._maskService.maskExpression);
});
}
this._maskService.isNumberValue = true;
}
if (typeof inputValue !== 'string') {
// eslint-disable-next-line no-param-reassign
inputValue = '';
}
this._inputValue = inputValue;
this._setMask();
if ((inputValue && this._maskService.maskExpression) ||
(this._maskService.maskExpression &&
(this._maskService.prefix || this._maskService.showMaskTyped))) {
// Let the service we know we are writing value so that triggering onChange function won't happen during applyMask
typeof this.inputTransformFn !== 'function'
? (this._maskService.writingValue = true)
: '';
this._maskService.formElementProperty = [
'value',
this._maskService.applyMask(inputValue, this._maskService.maskExpression),
];
// Let the service know we've finished writing value
typeof this.inputTransformFn !== 'function'
? (this._maskService.writingValue = false)
: '';
}
else {
this._maskService.formElementProperty = ['value', inputValue];
}
this._inputValue = inputValue;
}
else {
console.warn('Ngx-mask writeValue work with string | number, your current value:', typeof controlValue);
}
}
registerOnChange(fn) {
this._maskService.onChange = this.onChange = fn;
}
registerOnTouched(fn) {
this.onTouch = fn;
}
_getActiveElement(document = this.document) {
const shadowRootEl = document?.activeElement?.shadowRoot;
if (!shadowRootEl?.activeElement) {
return document.activeElement;
}
else {
return this._getActiveElement(shadowRootEl);
}
}
checkSelectionOnDeletion(el) {
el.selectionStart = Math.min(Math.max(this.prefix.length, el.selectionStart), this._inputValue.length - this.suffix.length);
el.selectionEnd = Math.min(Math.max(this.prefix.length, el.selectionEnd), this._inputValue.length - this.suffix.length);
}
/** It disables the input element */
setDisabledState(isDisabled) {
this._maskService.formElementProperty = ['disabled', isDisabled];
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
_applyMask() {
this._maskService.maskExpression = this._maskService._repeatPatternSymbols(this._maskValue || '');
this._maskService.formElementProperty = [
'value',
this._maskService.applyMask(this._inputValue, this._maskService.maskExpression),
];
}
_validateTime(value) {
const rowMaskLen = this._maskValue
.split("" /* MaskExpression.EMPTY_STRING */)
.filter((s) => s !== ':').length;
if (!value) {
return null; // Don't validate empty values to allow for optional form control
}
if ((+(value[value.length - 1] ?? -1) === 0 && value.length < rowMaskLen) ||
value.length <= rowMaskLen - 2) {
return this._createValidationError(value);
}
return null;
}
_getActualInputLength() {
return (this._maskService.actualValue.length ||
this._maskService.actualValue.length + this._maskService.prefix.length);
}
_createValidationError(actualValue) {
return {
mask: {
requiredMask: this._maskValue,
actualValue,
},
};
}
_setMask() {
this._maskExpressionArray.some((mask) => {
const specialChart = mask
.split("" /* MaskExpression.EMPTY_STRING */)
.some((char) => this._maskService.specialCharacters.includes(char));
if ((specialChart && this._inputValue && !mask.includes("S" /* MaskExpression.LETTER_S */)) ||
mask.includes("{" /* MaskExpression.CURLY_BRACKETS_LEFT */)) {
const test = this._maskService.removeMask(this._inputValue)?.length <=
this._maskService.removeMask(mask)?.length;
if (test) {
this._maskValue =
this.maskExpression =
this._maskService.maskExpression =
mask.includes("{" /* MaskExpression.CURLY_BRACKETS_LEFT */)
? this._maskService._repeatPatternSymbols(mask)
: mask;
return test;
}
else {
const expression = this._maskExpressionArray[this._maskExpressionArray.length - 1] ??
"" /* MaskExpression.EMPTY_STRING */;
this._maskValue =
this.maskExpression =
this._maskService.maskExpression =
expression.includes("{" /* MaskExpression.CURLY_BRACKETS_LEFT */)
? this._maskService._repeatPatternSymbols(expression)
: expression;
}
}
else {
const check = this._maskService
.removeMask(this._inputValue)
?.split("" /* MaskExpression.EMPTY_STRING */)
.every((character, index) => {
const indexMask = mask.charAt(index);
return this._maskService._checkSymbolMask(character, indexMask);
});
if (check) {
this._maskValue = this.maskExpression = this._maskService.maskExpression = mask;
return check;
}
}
});
}
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.8", type: NgxMaskDirective, isStandalone: true, selector: "input[mask], textarea[mask]", inputs: { maskExpression: ["mask", "maskExpression"], specialCharacters: "specialCharacters", patterns: "patterns", prefix: "prefix", suffix: "suffix", thousandSeparator: "thousandSeparator", decimalMarker: "decimalMarker", dropSpecialCharacters: "dropSpecialCharacters", hiddenInput: "hiddenInput", showMaskTyped: "showMaskTyped", placeHolderCharacter: "placeHolderCharacter", shownMaskExpression: "shownMaskExpression", showTemplate: "showTemplate", clearIfNotMatch: "clearIfNotMatch", validation: "validation", separatorLimit: "separatorLimit", allowNegativeNumbers: "allowNegativeNumbers", leadZeroDateTime: "leadZeroDateTime", leadZero: "leadZero", triggerOnMaskChange: "triggerOnMaskChange", apm: "apm", inputTransformFn: "inputTransformFn", outputTransformFn: "outputTransformFn", keepCharacterPositions: "keepCharacterPositions" }, outputs: { maskFilled: "maskFilled" }, host: { listeners: { "paste": "onPaste()", "focus": "onFocus($event)", "ngModelChange": "onModelChange($event)", "input": "onInput($event)", "compositionstart": "onCompositionStart($event)", "compositionend": "onCompositionEnd($event)", "blur": "onBlur($event)", "click": "onClick($event)", "keydown": "onKeyDown($event)" } }, providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: NgxMaskDirective,
multi: true,
},
{
provide: NG_VALIDATORS,
useExisting: NgxMaskDirective,
multi: true,
},
NgxMaskService,
], exportAs: ["mask", "ngxMask"], usesOnChanges: true, ngImport: i0 }); }
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskDirective, decorators: [{
type: Directive,
args: [{
selector: 'input[mask], textarea[mask]',
standalone: true,
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: NgxMaskDirective,
multi: true,
},
{
provide: NG_VALIDATORS,
useExisting: NgxMaskDirective,
multi: true,
},
NgxMaskService,
],
exportAs: 'mask,ngxMask',
}]
}], propDecorators: { maskExpression: [{
type: Input,
args: ['mask']
}], specialCharacters: [{
type: Input
}], patterns: [{
type: Input
}], prefix: [{
type: Input
}], suffix: [{
type: Input
}], thousandSeparator: [{
type: Input
}], decimalMarker: [{
type: Input
}], dropSpecialCharacters: [{
type: Input
}], hiddenInput: [{
type: Input
}], showMaskTyped: [{
type: Input
}], placeHolderCharacter: [{
type: Input
}], shownMaskExpression: [{
type: Input
}], showTemplate: [{
type: Input
}], clearIfNotMatch: [{
type: Input
}], validation: [{
type: Input
}], separatorLimit: [{
type: Input
}], allowNegativeNumbers: [{
type: Input
}], leadZeroDateTime: [{
type: Input
}], leadZero: [{
type: Input
}], triggerOnMaskChange: [{
type: Input
}], apm: [{
type: Input
}], inputTransformFn: [{
type: Input
}], outputTransformFn: [{
type: Input
}], keepCharacterPositions: [{
type: Input
}], maskFilled: [{
type: Output
}], onPaste: [{
type: HostListener,
args: ['paste']
}], onFocus: [{
type: HostListener,
args: ['focus', ['$event']]
}], onModelChange: [{
type: HostListener,
args: ['ngModelChange', ['$event']]
}], onInput: [{
type: HostListener,
args: ['input', ['$event']]
}], onCompositionStart: [{
type: HostListener,
args: ['compositionstart', ['$event']]
}], onCompositionEnd: [{
type: HostListener,
args: ['compositionend', ['$event']]
}], onBlur: [{
type: HostListener,
args: ['blur', ['$event']]
}], onClick: [{
type: HostListener,
args: ['click', ['$event']]
}], onKeyDown: [{
type: HostListener,
args: ['keydown', ['$event']]
}] } });
class NgxMaskPipe {
constructor() {
this.defaultOptions = inject(NGX_MASK_CONFIG);
this._maskService = inject(NgxMaskService);
this._maskExpressionArray = [];
this.mask = '';
}
transform(value, mask, { patterns, ...config } = {}) {
const currentConfig = {
maskExpression: mask,
...this.defaultOptions,
...config,
patterns: {
...this._maskService.patterns,
...patterns,
},
};
Object.entries(currentConfig).forEach(([key, value]) => {
//eslint-disable-next-line @typescript-eslint/no-explicit-any
this._maskService[key] = value;
});
if (mask.includes('||')) {
if (mask.split('||').length > 1) {
this._maskExpressionArray = mask.split('||').sort((a, b) => {
return a.length - b.length;
});
this._setMask(value);
return this._maskService.applyMask(`${value}`, this.mask);
}
else {
this._maskExpressionArray = [];
return this._maskService.applyMask(`${value}`, this.mask);
}
}
if (mask.includes("{" /* MaskExpression.CURLY_BRACKETS_LEFT */)) {
return this._maskService.applyMask(`${value}`, this._maskService._repeatPatternSymbols(mask));
}
if (mask.startsWith("separator" /* MaskExpression.SEPARATOR */)) {
if (config.decimalMarker) {
this._maskService.decimalMarker = config.decimalMarker;
}
if (config.thousandSeparator) {
this._maskService.thousandSeparator = config.thousandSeparator;
}
if (config.leadZero) {
// eslint-disable-next-line no-param-reassign
this._maskService.leadZero = config.leadZero;
}
// eslint-disable-next-line no-param-reassign
value = String(value);
const localeDecimalMarker = this._maskService.currentLocaleDecimalMarker();
if (!Array.isArray(this._maskService.decimalMarker)) {
// eslint-disable-next-line no-param-reassign
value =
this._maskService.decimalMarker !== localeDecimalMarker
? value.replace(localeDecimalMarker, this._maskService.decimalMarker)
: value;
}
if (this._maskService.leadZero &&
value &&
this._maskService.dropSpecialCharacters !== false) {
// eslint-disable-next-line no-param-reassign
value = this._maskService._checkPrecision(mask, value);
}
if (this._maskService.decimalMarker === "," /* MaskExpression.COMMA */) {
// eslint-disable-next-line no-param-reassign
value = value.toString().replace("." /* MaskExpression.DOT */, "," /* MaskExpression.COMMA */);
}
this._maskService.isNumberValue = true;
}
if (value === null || value === undefined) {
return this._maskService.applyMask('', mask);
}
return this._maskService.applyMask(`${value}`, mask);
}
_setMask(value) {
if (this._maskExpressionArray.length > 0) {
this._maskExpressionArray.some((mask) => {
const test = this._maskService.removeMask(value)?.length <=
this._maskService.removeMask(mask)?.length;
if (value && test) {
this.mask = mask;
return test;
}
else {
const expression = this._maskExpressionArray[this._maskExpressionArray.length - 1] ??
"" /* MaskExpression.EMPTY_STRING */;
this.mask = expression;
}
});
}
}
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskPipe, isStandalone: true, name: "mask" }); }
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: NgxMaskPipe, decorators: [{
type: Pipe,
args: [{
name: 'mask',
pure: true,
standalone: true,
}]
}] });
/**
* Generated bundle index. Do not edit.
*/
export { INITIAL_CONFIG, NEW_CONFIG, NGX_MASK_CONFIG, NgxMaskDirective, NgxMaskPipe, NgxMaskService, initialConfig, provideEnvironmentNgxMask, provideNgxMask, timeMasks, withoutValidation };
//# sourceMappingURL=ngx-mask.mjs.map