ngx-vector-components 5.162.0 → 5.164.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 +12 -0
- package/esm2022/lib/components/menu/menu.component.mjs +4 -5
- package/esm2022/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +3 -4
- package/esm2022/lib/components/top-bar/top-bar.component.mjs +12 -3
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/fesm2022/ngx-vector-components.mjs +52 -41
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/top-bar/top-bar.component.d.ts +3 -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(): "badge-warning" | "badge-success" | "badge-error" | "badge-info"
|
|
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
|
}
|
|
@@ -27,6 +27,7 @@ export declare class TopBarComponent implements OnInit, OnDestroy {
|
|
|
27
27
|
fintech: boolean;
|
|
28
28
|
accountService: any;
|
|
29
29
|
showHelpCentral: boolean;
|
|
30
|
+
showProfile: boolean;
|
|
30
31
|
helpCentralIcons: HelpCentralIconOptionsType[];
|
|
31
32
|
onClick: EventEmitter<string>;
|
|
32
33
|
notificationsList: VectorNotification[];
|
|
@@ -40,9 +41,10 @@ export declare class TopBarComponent implements OnInit, OnDestroy {
|
|
|
40
41
|
changeAccount(newAccount: any): void;
|
|
41
42
|
goToTermsOfUse(): void;
|
|
42
43
|
goToPasswordChange(): void;
|
|
44
|
+
goToProfile(): void;
|
|
43
45
|
goToTariff(): void;
|
|
44
46
|
goToOnboarding(): void;
|
|
45
47
|
handleClick(notification: VectorNotification): void;
|
|
46
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopBarComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TopBarComponent, "vector-top-bar", never, { "fintech": { "alias": "fintech"; "required": false; }; "accountService": { "alias": "accountService"; "required": false; }; "showHelpCentral": { "alias": "showHelpCentral"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopBarComponent, "vector-top-bar", never, { "fintech": { "alias": "fintech"; "required": false; }; "accountService": { "alias": "accountService"; "required": false; }; "showHelpCentral": { "alias": "showHelpCentral"; "required": false; }; "showProfile": { "alias": "showProfile"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
48
50
|
}
|
|
@@ -710,5 +710,7 @@ export declare enum ProfileModuleActionType {
|
|
|
710
710
|
CHARGING_INSTRUCTIONS = "Charging Instructions",
|
|
711
711
|
BYPASS_ADVANCE_PARAMETER_LOTS = "Desconsiderar Par\u00E2metro de Adiantamento Lots",
|
|
712
712
|
BYPASS_ADVANCE_PARAMETER_CARGO = "Desconsiderar Par\u00E2metro de Adiantamento Cargo",
|
|
713
|
-
MANAGE_MY_LOTS = "Manage My Lots"
|
|
713
|
+
MANAGE_MY_LOTS = "Manage My Lots",
|
|
714
|
+
SHOW_SEGMENTS = "Show Segments",
|
|
715
|
+
EDIT_SEGMENTS = "Edit Segments"
|
|
714
716
|
}
|