ngx-vector-components 5.138.0 → 5.139.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.
- package/CHANGELOG.md +13 -0
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/esm2022/lib/utils/cpf-cnpj-validator.util.mjs +36 -26
- package/esm2022/lib/utils/mask.util.mjs +9 -9
- package/esm2022/lib/utils/validation.util.mjs +29 -26
- package/fesm2022/ngx-vector-components.mjs +75 -60
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/models/profile.model.d.ts +3 -1
- package/lib/utils/cpf-cnpj-validator.util.d.ts +1 -0
- package/lib/utils/mask.util.d.ts +1 -1
- package/lib/utils/validation.util.d.ts +1 -0
- package/package.json +1 -1
|
@@ -682,5 +682,7 @@ export declare enum ProfileModuleActionType {
|
|
|
682
682
|
SHOW_SCHEDULE_OFF_PRODUCTS = "Show Schedule Off Products",
|
|
683
683
|
GR_VECTOR_CENTRAL = "Gr Vector Central",
|
|
684
684
|
GR_VECTOR_BACKOFFICE = "Gr Vector Backoffice",
|
|
685
|
-
GR_VECTOR_ADMIN = "Gr Vector Admin"
|
|
685
|
+
GR_VECTOR_ADMIN = "Gr Vector Admin",
|
|
686
|
+
REPROCESS_GR_REGISTRATION_PENDING = "Reprocess GR Registration Pending",
|
|
687
|
+
REPROCESS_GR_ANALYSIS_REQUIRED = "Reprocess GR Analysis Required"
|
|
686
688
|
}
|
package/lib/utils/mask.util.d.ts
CHANGED
|
@@ -9,8 +9,8 @@ export declare class MaskUtil {
|
|
|
9
9
|
static HOURS_MINUTES_FIELD_PATTERN: string;
|
|
10
10
|
static DNI_FIELD_PATTERN: string;
|
|
11
11
|
static CUIT_FIELD_PATTERN: string;
|
|
12
|
+
static stripDocumentFormatting(value: string): string;
|
|
12
13
|
static formatDocument(stringValue: string): string;
|
|
13
|
-
static removerSpecialChars(text: string): string;
|
|
14
14
|
static formatPostalCode(stringValue: string): string;
|
|
15
15
|
static formatBoleto(stringValue: string): string;
|
|
16
16
|
static formatPhone(stringValue: string): string;
|
|
@@ -5,6 +5,7 @@ export declare class ValidationUtil {
|
|
|
5
5
|
static noMultipleWhitespace(control: AbstractControl): ValidationErrors | null;
|
|
6
6
|
static isValidTaxId(control: AbstractControl): ValidationErrors | null;
|
|
7
7
|
static isValidCpf(control: AbstractControl): ValidationErrors | null;
|
|
8
|
+
private static charToValue;
|
|
8
9
|
static isValidCnpj(control: AbstractControl): ValidationErrors | null;
|
|
9
10
|
static majorAge(control: AbstractControl): ValidationErrors | null;
|
|
10
11
|
static matchField(anotherField: AbstractControl | null): ValidatorFn;
|