chrv-components 1.10.55 → 1.10.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export interface IMaskConfig {
|
|
2
|
+
mask: string | null;
|
|
3
|
+
showMaskTyped: boolean | null;
|
|
4
|
+
dropSpecialCharacters: boolean | string[] | readonly string[] | null;
|
|
5
|
+
placeHolderCharacter: string | null;
|
|
6
|
+
clearIfNotMatch: boolean | null;
|
|
7
|
+
validation: boolean | null;
|
|
8
|
+
specialCharacters: string[] | readonly string[];
|
|
9
|
+
patterns: {
|
|
10
|
+
[key: string]: {
|
|
11
|
+
pattern: RegExp;
|
|
12
|
+
optional?: boolean;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
prefix: string;
|
|
16
|
+
suffix: string;
|
|
17
|
+
thousandSeparator: string;
|
|
18
|
+
decimalMarker: '.' | ',' | ['.', ','];
|
|
19
|
+
decimalLimit: number | null;
|
|
20
|
+
separatorLimit: string | null;
|
|
21
|
+
hiddenInput: boolean | null;
|
|
22
|
+
leadZeroDateTime: boolean | null;
|
|
23
|
+
allowNegativeNumbers: boolean | null;
|
|
24
|
+
}
|
|
25
|
+
export declare class MaskConfig implements IMaskConfig {
|
|
26
|
+
mask: string | null;
|
|
27
|
+
showMaskTyped: boolean | null;
|
|
28
|
+
dropSpecialCharacters: boolean | string[] | readonly string[] | null;
|
|
29
|
+
placeHolderCharacter: string | null;
|
|
30
|
+
clearIfNotMatch: boolean | null;
|
|
31
|
+
validation: boolean | null;
|
|
32
|
+
specialCharacters: string[] | readonly string[];
|
|
33
|
+
patterns: {
|
|
34
|
+
[key: string]: {
|
|
35
|
+
pattern: RegExp;
|
|
36
|
+
optional?: boolean;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
prefix: string;
|
|
40
|
+
suffix: string;
|
|
41
|
+
thousandSeparator: string;
|
|
42
|
+
decimalMarker: '.' | ',' | ['.', ','];
|
|
43
|
+
decimalLimit: number | null;
|
|
44
|
+
separatorLimit: string | null;
|
|
45
|
+
hiddenInput: boolean | null;
|
|
46
|
+
leadZeroDateTime: boolean | null;
|
|
47
|
+
allowNegativeNumbers: boolean | null;
|
|
48
|
+
constructor(config?: IMaskConfig | null);
|
|
49
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrv-components",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.57",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=17.3.0",
|
|
6
6
|
"@angular/core": ">=17.3.0",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"tailwindcss": ">=3.2.4",
|
|
10
10
|
"ngx-pagination": ">=6.0.3",
|
|
11
11
|
"chrv-pipes": ">=1.3.3",
|
|
12
|
-
"@microsoft/signalr": ">=8.0.7"
|
|
12
|
+
"@microsoft/signalr": ">=8.0.7",
|
|
13
|
+
"ngx-mask": "^19.0.7"
|
|
13
14
|
},
|
|
14
15
|
"dependencies": {
|
|
15
16
|
"tslib": ">=2.3.0"
|
|
Binary file
|