Comparing version 15.2.1 to 15.2.2
@@ -28,2 +28,3 @@ import { IConfig } from './ngx-mask.config'; | ||
private _shift; | ||
plusOnePosition: boolean; | ||
maskExpression: string; | ||
@@ -38,2 +39,3 @@ actualValue: string; | ||
applyMask(inputValue: string | object | boolean | null | undefined, maskExpression: string, position?: number, justPasted?: boolean, backspaced?: boolean, cb?: (...args: any[]) => any): string; | ||
_findDropSpecialChar(inputSymbol: string): undefined | string; | ||
_findSpecialChar(inputSymbol: string): undefined | string; | ||
@@ -40,0 +42,0 @@ _checkSymbolMask(inputSymbol: string, maskSymbol: string): boolean; |
@@ -39,2 +39,3 @@ import { OnChanges, SimpleChanges } from '@angular/core'; | ||
private _justPasted; | ||
private _isFocused; | ||
/**For IME composition event */ | ||
@@ -50,2 +51,3 @@ private _isComposing; | ||
onPaste(): void; | ||
onFocus(): void; | ||
onModelChange(value: string | undefined | null | number): void; | ||
@@ -52,0 +54,0 @@ onInput(e: CustomKeyboardEvent): void; |
@@ -0,1 +1,2 @@ | ||
import { ElementRef } from '@angular/core'; | ||
import { IConfig } from './ngx-mask.config'; | ||
@@ -17,11 +18,11 @@ import { NgxMaskApplierService } from './ngx-mask-applier.service'; | ||
triggerOnMaskChange: boolean; | ||
_previousValue: string; | ||
_currentValue: string; | ||
private _emitValue; | ||
private _start; | ||
private _end; | ||
private _emitValue; | ||
private _previousValue; | ||
private _currentValue; | ||
onChange: (_: any) => void; | ||
readonly _elementRef: ElementRef<any> | null; | ||
private readonly document; | ||
protected _config: IConfig; | ||
private readonly _elementRef; | ||
private readonly _renderer; | ||
@@ -43,3 +44,3 @@ applyMask(inputValue: string, maskExpression: string, position?: number, justPasted?: boolean, backspaced?: boolean, cb?: (...args: any[]) => any): string; | ||
set formElementProperty([name, value]: [string, string | boolean]); | ||
checkSpecialCharAmount(mask: string): number; | ||
checkDropSpecialCharAmount(mask: string): number; | ||
removeMask(inputValue: string): string; | ||
@@ -68,2 +69,3 @@ private _checkForIp; | ||
_checkSymbols(result: string): string | number | undefined | null; | ||
private _checkPatternForSpace; | ||
private _retrieveSeparatorPrecision; | ||
@@ -70,0 +72,0 @@ _checkPrecision(separatorExpression: string, separatorValue: string): number | string; |
{ | ||
"name": "ngx-mask", | ||
"version": "15.2.1", | ||
"version": "15.2.2", | ||
"description": "awesome ngx mask", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1174524
7885