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.
- package/CHANGELOG.md +18 -0
- package/esm2020/lib/components/fields/data-table/data-table.component.mjs +3 -3
- package/esm2020/lib/models/profile.model.mjs +8 -1
- package/esm2020/lib/services/profile.service.mjs +2 -1
- package/esm2020/lib/utils/cpf-cnpj-validator.util.mjs +116 -0
- package/esm2020/lib/utils/index.mjs +2 -1
- package/esm2020/lib/utils/mask.util.mjs +6 -1
- package/fesm2015/ngx-vector-components.mjs +133 -4
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +133 -4
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/models/profile.model.d.ts +8 -1
- package/lib/utils/cpf-cnpj-validator.util.d.ts +5 -0
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/mask.util.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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
|
}
|
package/lib/utils/index.d.ts
CHANGED
package/lib/utils/mask.util.d.ts
CHANGED
|
@@ -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
|
}
|