ngx-vector-components 4.20.1 → 4.22.1

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.
@@ -144,5 +144,12 @@ export declare enum ProfileModuleActionType {
144
144
  ADD_LOCATION_SHIPPER = "Add LocationShipper",
145
145
  EDIT_LOCATION_SHIPPER = "Edit LocationShipper",
146
146
  SHOW_LOCATION_SHIPPER = "Show LocationShipper",
147
- DELETE_LOCATION_SHIPPER = "Delete LocationShipper"
147
+ DELETE_LOCATION_SHIPPER = "Delete LocationShipper",
148
+ ADD_SCHEDULE = "Add Schedule",
149
+ EDIT_SCHEDULE = "Edit Schedule",
150
+ SHOW_SCHEDULE = "Show Schedule",
151
+ ADD_VACANCIES_LOGISTIC = "Add Vacancies Logistic",
152
+ ADD_VACANCIES_COMMERCIAL = "Add Vacancies Commercial",
153
+ SHOW_VACANCIES_COMPLETE = "Show Vacancies Complete",
154
+ ADD_SCHEDULE_OFF = "Add Schedule Off"
148
155
  }
@@ -0,0 +1,5 @@
1
+ export declare class CpfCnpjValidator {
2
+ static validateCpfOrCnpj(taxId: string): boolean;
3
+ static validateCpf(cpf: string): boolean;
4
+ static validateCnpj(cnpj: string): boolean;
5
+ }
@@ -1,3 +1,4 @@
1
+ export * from './cpf-cnpj-validator.util';
1
2
  export * from './file.util';
2
3
  export * from './mask.util';
3
4
  export * from './object.util';
@@ -5,9 +5,11 @@ export declare class MaskUtil {
5
5
  static CELLPHONE_TEXT_FIELD_PATTERN: string;
6
6
  static PHONE_TEXT_FIELD_PATTERN: string;
7
7
  static POSTALCODE_TEXT_FIELD_PATTERN: string;
8
+ static PLATE_FIELD_PATTERN: string;
8
9
  static formatDocument(stringValue: string): string;
9
10
  static formatPostalCode(stringValue: string): string;
10
11
  static formatBoleto(stringValue: string): string;
11
12
  static formatPhone(stringValue: string): string;
13
+ static formatPlate(stringValue: string): string;
12
14
  static doMaskString(str: string, pattern?: string): string;
13
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "4.20.1",
3
+ "version": "4.22.1",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~13.2.3",
6
6
  "@angular/cdk": "^13.3.9",