ngx-vector-components 4.31.0 → 4.32.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 +6 -0
- package/esm2020/lib/components/fields/button/button.component.mjs +1 -1
- package/esm2020/lib/components/fields/calendar-field/calendar-field.component.mjs +1 -1
- package/esm2020/lib/components/fields/currency-field/currency-field.component.mjs +1 -1
- package/esm2020/lib/components/fields/dropdown-field/dropdown-field.component.mjs +1 -1
- package/esm2020/lib/components/fields/input-number-field/input-number-field.component.mjs +1 -1
- package/esm2020/lib/components/fields/multiselect-field/multiselect-field.component.mjs +1 -1
- package/esm2020/lib/components/fields/percentage-field/percentage-field.component.mjs +1 -1
- package/esm2020/lib/components/fields/text-field/text-field.component.mjs +1 -1
- package/esm2020/lib/components/panel/panel.component.mjs +1 -1
- package/esm2020/lib/models/profile.model.mjs +33 -4
- package/fesm2015/ngx-vector-components.mjs +41 -12
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +41 -12
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/models/profile.model.d.ts +34 -5
- package/package.json +1 -1
|
@@ -24,7 +24,9 @@ export declare type ProfileModuleBase = {
|
|
|
24
24
|
export declare enum ProfileModuleType {
|
|
25
25
|
OPERATIONAL_EVALUATION = "OperationalEvaluation",
|
|
26
26
|
ADMIN_SURVEYS = "AdminSurveys",
|
|
27
|
-
DIGITAL_DISCHARGE = "Quita\u00E7\u00E3o Digital"
|
|
27
|
+
DIGITAL_DISCHARGE = "Quita\u00E7\u00E3o Digital",
|
|
28
|
+
REGISTER_OPERATION = "RegisterOperation",
|
|
29
|
+
REGISTER_PRODUCTS = "RegisterProduct"
|
|
28
30
|
}
|
|
29
31
|
export declare enum ProfileModuleActionType {
|
|
30
32
|
ADD_VEHICLE = "Add Vehicle",
|
|
@@ -167,12 +169,39 @@ export declare enum ProfileModuleActionType {
|
|
|
167
169
|
DELETE_DISTRIBUTION_CENTER_COMPANY_CREDIT_UNIT = "Delete DistributionCentersCompanyUnitCredit",
|
|
168
170
|
APPROVE_VECTOR = "Approve Vector",
|
|
169
171
|
APPROVE_ETCD = "Approve ETCD",
|
|
170
|
-
SHOW_PARAMETERS_ETCD = "Show Parameters",
|
|
171
|
-
EDIT_PARAMETERS_ETCD = "Edit Parameters",
|
|
172
172
|
DELETE_PARAMETERS_ETCD = "Delete Parameters",
|
|
173
|
-
ADD_PARAMETERS_ETCD = "Add Parameters",
|
|
174
173
|
SHOW_RECEPTION_PRODUCT = "Show Reception Product",
|
|
175
174
|
EDIT_RECEPTION_PRODUCT = "Edit Reception Product",
|
|
176
175
|
DELETE_RECEPTION_PRODUCT = "Delete Reception Product",
|
|
177
|
-
ADD_RECEPTION_PRODUCT = "Add Reception Product"
|
|
176
|
+
ADD_RECEPTION_PRODUCT = "Add Reception Product",
|
|
177
|
+
SHOW_DIGITAL_DISCHARGE = "Show Digital Discharge",
|
|
178
|
+
SHOW_DIGITAL_DISCHARGE_FILES = "Show Digital Discharge Files",
|
|
179
|
+
SHOW_ETCD = "Show ETCD",
|
|
180
|
+
EDIT_ETCD = "Edit ETCD",
|
|
181
|
+
DELETE_ETCD = "Delete ETCD",
|
|
182
|
+
ADD_ETCD = "Add ETCD",
|
|
183
|
+
SHOW_REGIONAL_ETCD = "Show Regional ETCD",
|
|
184
|
+
SHOW_BRANCH = "Show Branch",
|
|
185
|
+
EDIT_BRANCH = "Edit Branch",
|
|
186
|
+
ADD_BRANCH = "Add Branch",
|
|
187
|
+
DELETE_BRANCH = "Delete Branch",
|
|
188
|
+
SHOW_MONITORING_ETCD = "Show Monitoring ETCD",
|
|
189
|
+
ADD_PRODUCT_ETCD = "Add Product ETCD",
|
|
190
|
+
EDIT_PRODUCT_ETCD = "Edit Product ETCD",
|
|
191
|
+
SHOW_PRODUCT_ETCD = "Show Product ETCD",
|
|
192
|
+
DELETE_PRODUCT_ETCD = "Delete Product ETCD",
|
|
193
|
+
ADD_PARAMETERS_ETCD = "Add Parameters ETCD",
|
|
194
|
+
EDIT_PARAMETERS_ETCD = "Edit Parameters ETCD",
|
|
195
|
+
SHOW_PARAMETERS_ETCD = "Show Parameters ETCD",
|
|
196
|
+
ADD_FREIGHT_ETCD = "Add Freight ETCD",
|
|
197
|
+
SHOW_FREIGHT_ETCD = "Show Freight ETCD",
|
|
198
|
+
APPROVE_ADJUSMENT_ETCD = "Approve Adjusment ETCD",
|
|
199
|
+
REPROVE_ADJUSMENT_ETCD = "Reprove Adjusment ETCD",
|
|
200
|
+
ADD_JUSTIFICATIVE_ETCD = "Add Justificative ETCD",
|
|
201
|
+
EDIT_JUSTIFICATIVE_ETCD = "Edit Justificative ETCD",
|
|
202
|
+
DELETE_JUSTIFICATIVE_ETCD = "Delete Justificative ETCD",
|
|
203
|
+
APPROVE_RELEASE_ETCD = "Approve Release ETCD",
|
|
204
|
+
REPROVE_RELEASE_ETCD = "Reprove Release ETCD",
|
|
205
|
+
SHOW_ADVANCE_ETCD = "Show Advance ETCD",
|
|
206
|
+
APPROVE_REQUESTS_ETCD = "Approve Requests ETCD"
|
|
178
207
|
}
|