ngx-vector-components 5.17.0 → 5.19.2
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 +14 -0
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/fesm2022/ngx-vector-components.mjs +2 -0
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/models/profile.model.d.ts +3 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare class BadgeComponent implements OnInit {
|
|
|
9
9
|
tooltip?: string;
|
|
10
10
|
constructor();
|
|
11
11
|
ngOnInit(): void;
|
|
12
|
-
getStatusColor(): "
|
|
12
|
+
getStatusColor(): "badge-warning" | "badge-success" | "badge-error" | "badge-info" | "";
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "vector-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "customBackgroundColor": { "alias": "customBackgroundColor"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -413,5 +413,7 @@ export declare enum ProfileModuleActionType {
|
|
|
413
413
|
SHOW_DRIVER_TRIP_INFO_DETAIL = "Show Driver Trip Info Detail",
|
|
414
414
|
MANUAL_CHECKLIST_APPLICATION = "Manual Checklist Application",
|
|
415
415
|
SUPPLIER_UPDATE_CHECKIN_CHECKOUT = "Supplier Update CheckIn CheckOut",
|
|
416
|
-
RETROACTIVE_STEP_ADVANCEMENT = "Retroactive Show"
|
|
416
|
+
RETROACTIVE_STEP_ADVANCEMENT = "Retroactive Show",
|
|
417
|
+
EDIT_CONFIGURATION = "Edit Configuration",
|
|
418
|
+
DELETE_ROTOGRAM = "Delete Rotogram"
|
|
417
419
|
}
|