ngx-vector-components 4.70.3 → 4.71.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 +13 -0
- package/esm2020/lib/components/top-bar/top-bar.component.mjs +25 -3
- package/esm2020/lib/models/profile.model.mjs +3 -1
- package/esm2020/lib/models/topbar.model.mjs +2 -0
- package/fesm2015/ngx-vector-components.mjs +26 -2
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +26 -2
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/components/top-bar/top-bar.component.d.ts +2 -0
- package/lib/models/profile.model.d.ts +3 -1
- package/lib/models/topbar.model.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { VectorNotification } from '../../models';
|
|
4
|
+
import { HelpCentralIconOptionsType } from '../../models/topbar.model';
|
|
4
5
|
import { AuthService, ProfileService, StorageService } from '../../services';
|
|
5
6
|
import { MenuService } from '../../services/menu.service';
|
|
6
7
|
import { NotificationsService } from '../../services/notifications.service';
|
|
@@ -26,6 +27,7 @@ export declare class TopBarComponent implements OnInit, OnDestroy {
|
|
|
26
27
|
fintech: boolean;
|
|
27
28
|
accountService: any;
|
|
28
29
|
showHelpCentral: boolean;
|
|
30
|
+
helpCentralIcons: HelpCentralIconOptionsType[];
|
|
29
31
|
onClick: EventEmitter<string>;
|
|
30
32
|
notificationsList: VectorNotification[];
|
|
31
33
|
private subscription;
|
|
@@ -254,5 +254,7 @@ export declare enum ProfileModuleActionType {
|
|
|
254
254
|
DELETE_MESSAGE_CUSTOM = "Delete Messages Custom",
|
|
255
255
|
ADD_MESSAGE_CUSTOM = "Add Messages Custom",
|
|
256
256
|
EDIT_MESSAGE_CUSTOM = "Edit Messages Custom",
|
|
257
|
-
RECEPTION_WITHOUT_SCHEDULING = "Reception Without Scheduling"
|
|
257
|
+
RECEPTION_WITHOUT_SCHEDULING = "Reception Without Scheduling",
|
|
258
|
+
BANK_EDIT = "Edit",
|
|
259
|
+
BANK_REGISTER_FULL = "Cadastro Full"
|
|
258
260
|
}
|