monkey-front-core 0.0.48 → 0.0.49

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.
@@ -10,6 +10,7 @@ export declare function comboValidator(control: AbstractControl): ValidationErro
10
10
  export declare function zipCodeValidator(control: AbstractControl): ValidationErrors | null;
11
11
  export declare function documentValidator(control: AbstractControl, country: string): ValidationErrors | null;
12
12
  export declare function dateValidator(control: AbstractControl): ValidationErrors | null;
13
+ export declare function valueGreaterThanZero(control: AbstractControl): ValidationErrors | null;
13
14
  export declare class Validators {
14
15
  static email(control: AbstractControl): ValidationErrors | null;
15
16
  static dateRange(control: AbstractControl): ValidationErrors | null;
@@ -24,4 +25,5 @@ export declare class Validators {
24
25
  static documentBR(control: AbstractControl): ValidationErrors | null;
25
26
  static documentCL(control: AbstractControl): ValidationErrors | null;
26
27
  static date(control: AbstractControl): ValidationErrors | null;
28
+ static greaterThanZero(control: AbstractControl): ValidationErrors | null;
27
29
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~13.1.1",
6
6
  "@angular/core": "~13.1.1",
Binary file