ngx-vector-components 4.55.0 → 4.57.0

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.
@@ -4,6 +4,8 @@ export declare class TextareaFieldComponent implements OnInit {
4
4
  isRequired: boolean | undefined;
5
5
  label: string | undefined;
6
6
  maxlength: string;
7
+ rows: number;
8
+ cols: number;
7
9
  control: any;
8
10
  blurEvent: EventEmitter<any>;
9
11
  enterKeyPress: EventEmitter<any>;
@@ -16,5 +18,5 @@ export declare class TextareaFieldComponent implements OnInit {
16
18
  onEnterPress(): void;
17
19
  onFocus($event: Event): void;
18
20
  static ɵfac: i0.ɵɵFactoryDeclaration<TextareaFieldComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFieldComponent, "vector-textarea-field", never, { "isRequired": "isRequired"; "label": "label"; "maxlength": "maxlength"; "control": "control"; }, { "blurEvent": "blurEvent"; "enterKeyPress": "enterKeyPress"; "focusEvent": "focusEvent"; }, never, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFieldComponent, "vector-textarea-field", never, { "isRequired": "isRequired"; "label": "label"; "maxlength": "maxlength"; "rows": "rows"; "cols": "cols"; "control": "control"; }, { "blurEvent": "blurEvent"; "enterKeyPress": "enterKeyPress"; "focusEvent": "focusEvent"; }, never, never>;
20
22
  }
@@ -7,11 +7,13 @@ export declare class MaskUtil {
7
7
  static POSTALCODE_TEXT_FIELD_PATTERN: string;
8
8
  static PLATE_FIELD_PATTERN: string;
9
9
  static HOURS_MINUTES_FIELD_PATTERN: string;
10
+ static DNI_FIELD_PATTERN: string;
10
11
  static formatDocument(stringValue: string): string;
11
12
  static formatPostalCode(stringValue: string): string;
12
13
  static formatBoleto(stringValue: string): string;
13
14
  static formatPhone(stringValue: string): string;
14
15
  static formatHoursMinutes(stringValue: string): string;
15
16
  static formatPlate(stringValue: string): string;
17
+ static formatDni(stringValue: string): string;
16
18
  static doMaskString(str: string, pattern?: string): string;
17
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "4.55.0",
3
+ "version": "4.57.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~13.2.3",
6
6
  "@angular/cdk": "^13.3.9",