monkey-front-core 0.0.404 → 0.0.406
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.
- package/esm2020/lib/core/utils/validate-utils.mjs +14 -15
- package/esm2020/lib/core/utils/validators.mjs +14 -1
- package/fesm2015/monkey-front-core.mjs +27 -15
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +27 -15
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/utils/validators.d.ts +2 -0
- package/monkey-front-core-0.0.406.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-core-0.0.404.tgz +0 -0
|
@@ -11,6 +11,7 @@ export declare function zipCodeValidator(control: AbstractControl, country?: str
|
|
|
11
11
|
export declare function documentValidator(control: AbstractControl, country: string): ValidationErrors | null;
|
|
12
12
|
export declare function dateValidator(control: AbstractControl): ValidationErrors | null;
|
|
13
13
|
export declare function valueGreaterThanZero(control: AbstractControl): ValidationErrors | null;
|
|
14
|
+
export declare function requiredWithTrimValidator(control: AbstractControl): ValidationErrors | null;
|
|
14
15
|
export declare class Validators {
|
|
15
16
|
static email(control: AbstractControl): ValidationErrors | null;
|
|
16
17
|
static dateRange(control: AbstractControl): ValidationErrors | null;
|
|
@@ -27,4 +28,5 @@ export declare class Validators {
|
|
|
27
28
|
static documentCL(control: AbstractControl): ValidationErrors | null;
|
|
28
29
|
static date(control: AbstractControl): ValidationErrors | null;
|
|
29
30
|
static greaterThanZero(control: AbstractControl): ValidationErrors | null;
|
|
31
|
+
static required(control: AbstractControl): ValidationErrors | null;
|
|
30
32
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monkey-front-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.406",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^13.1.1",
|
|
6
6
|
"@angular/common": "^13.1.1",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"@ngx-translate/http-loader": "^6.0.0",
|
|
19
19
|
"launchdarkly-js-client-sdk": "3.0.0",
|
|
20
20
|
"moment": "^2.29.4",
|
|
21
|
-
"monkey-style-guide": "^2.0.
|
|
21
|
+
"monkey-style-guide": "^2.0.177",
|
|
22
22
|
"ngx-cookie-service": "^13.1.1",
|
|
23
23
|
"ngx-mask": "^12.0.0",
|
|
24
24
|
"rxjs": "^6.6.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"monkey-style-guide": "^2.0.
|
|
27
|
+
"monkey-style-guide": "^2.0.177",
|
|
28
28
|
"tslib": "^2.3.0"
|
|
29
29
|
},
|
|
30
30
|
"module": "fesm2015/monkey-front-core.mjs",
|
|
Binary file
|