keevo-components 1.8.258 → 1.8.260

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.
@@ -8,6 +8,7 @@ export declare class KeevoValidators {
8
8
  static email(erroMessage?: string): ValidatorFn;
9
9
  static maxLengthArray(max: number): ValidatorFn;
10
10
  static maxLength(max: number, erroMessage?: string): ValidatorFn;
11
+ static minLength(min: number, erroMessage?: string): ValidatorFn;
11
12
  static nome(): ValidatorFn;
12
13
  static cpfCnpjValido(erroMessage?: string): ValidatorFn;
13
14
  }
@@ -9,6 +9,7 @@ export interface QuestionConfig {
9
9
  export interface DialogConfig {
10
10
  type: 'info' | 'alert' | 'error';
11
11
  message: string;
12
+ accept?: Function;
12
13
  }
13
14
  export declare class NotificationService {
14
15
  private readonly confirmationService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.258",
3
+ "version": "1.8.260",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",