monkey-front-core 0.0.599 → 0.0.601
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/services/config/monkeyecx-config.service.mjs +4 -4
- package/esm2020/lib/core/services/config/monkeyecx-gtm-config.service.mjs +5 -17
- package/esm2020/lib/core/utils/validators.mjs +11 -2
- package/fesm2015/monkey-front-core.mjs +19 -19
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +18 -19
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/services/config/monkeyecx-gtm-config.service.d.ts +2 -4
- package/lib/core/utils/validators.d.ts +2 -0
- package/monkey-front-core-0.0.601.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.599.tgz +0 -0
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MonkeyEcxConfig } from '../../interfaces';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class MonkeyEcxGTMConfigService {
|
|
4
|
-
private config;
|
|
5
|
-
constructor(config: MonkeyEcxConfigService);
|
|
6
4
|
private handleCode;
|
|
7
|
-
apply(environment: any): Promise<void>;
|
|
5
|
+
apply(config: MonkeyEcxConfig, environment: any): Promise<void>;
|
|
8
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxGTMConfigService, never>;
|
|
9
7
|
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxGTMConfigService>;
|
|
10
8
|
}
|
|
@@ -16,6 +16,7 @@ export declare function requiredWithTrimValidator(control: AbstractControl): Val
|
|
|
16
16
|
export declare function differentFromZero(control: AbstractControl): ValidationErrors | null;
|
|
17
17
|
export declare function documentValidatorByType(type: string, control: AbstractControl): ValidationErrors | null;
|
|
18
18
|
export declare function validateFullName(control: AbstractControl): ValidationErrors | null;
|
|
19
|
+
export declare function containsNumber(control: AbstractControl): ValidationErrors | null;
|
|
19
20
|
export declare class Validators {
|
|
20
21
|
static email(control: AbstractControl): ValidationErrors | null;
|
|
21
22
|
static dateRange(control: AbstractControl): ValidationErrors | null;
|
|
@@ -38,4 +39,5 @@ export declare class Validators {
|
|
|
38
39
|
static differentFromZero(control: AbstractControl): ValidationErrors | null;
|
|
39
40
|
static documentValidatorByType(type: string): (control: AbstractControl) => ValidationErrors | null;
|
|
40
41
|
static validateFullName(control: AbstractControl): ValidationErrors | null;
|
|
42
|
+
static containsNumber(control: AbstractControl): ValidationErrors | null;
|
|
41
43
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|