monkey-front-core 0.0.414 → 0.0.416
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/interfaces/monkeyecx-interface.mjs +1 -1
- package/esm2020/lib/core/interfaces/monkeyecx-store.mjs +1 -1
- package/esm2020/lib/core/services/store/monkeyecx-store.service.mjs +3 -3
- package/esm2020/lib/core/utils/validators.mjs +15 -1
- package/fesm2015/monkey-front-core.mjs +17 -3
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +17 -3
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-interface.d.ts +2 -1
- package/lib/core/services/store/monkeyecx-store.service.d.ts +1 -1
- package/lib/core/utils/validators.d.ts +2 -0
- package/monkey-front-core-0.0.416.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.414.tgz +0 -0
|
@@ -24,7 +24,7 @@ export declare abstract class MonkeyEcxCommonsStoreService<T, K extends MonkeyEc
|
|
|
24
24
|
protected paginationHasDifference(url: string, identifier: string): Promise<{
|
|
25
25
|
hasDifference: any;
|
|
26
26
|
}>;
|
|
27
|
-
protected updateControl(
|
|
27
|
+
protected updateControl(data: MonkeyEcxControlStore): void;
|
|
28
28
|
protected mappingData(args: T | T[], identifier: string): T | T[];
|
|
29
29
|
protected update?(args: T | T[], identifier: string): void;
|
|
30
30
|
protected updatePage?(args: MonkeyEcxPage, identifier: string): void;
|
|
@@ -12,6 +12,7 @@ export declare function documentValidator(control: AbstractControl, country: str
|
|
|
12
12
|
export declare function dateValidator(control: AbstractControl): ValidationErrors | null;
|
|
13
13
|
export declare function valueGreaterThanZero(control: AbstractControl): ValidationErrors | null;
|
|
14
14
|
export declare function requiredWithTrimValidator(control: AbstractControl): ValidationErrors | null;
|
|
15
|
+
export declare function differentFromZero(control: AbstractControl): ValidationErrors | null;
|
|
15
16
|
export declare class Validators {
|
|
16
17
|
static email(control: AbstractControl): ValidationErrors | null;
|
|
17
18
|
static dateRange(control: AbstractControl): ValidationErrors | null;
|
|
@@ -29,4 +30,5 @@ export declare class Validators {
|
|
|
29
30
|
static date(control: AbstractControl): ValidationErrors | null;
|
|
30
31
|
static greaterThanZero(control: AbstractControl): ValidationErrors | null;
|
|
31
32
|
static required(control: AbstractControl): ValidationErrors | null;
|
|
33
|
+
static differentFromZero(control: AbstractControl): ValidationErrors | null;
|
|
32
34
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|