ngx-vector-components 4.98.0 → 4.100.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 +20 -1
- package/esm2020/lib/components/fields/filters/filters.component.mjs +6 -5
- package/esm2020/lib/components/top-bar/top-bar.component.mjs +9 -4
- package/esm2020/lib/models/profile.model.mjs +8 -1
- package/fesm2015/ngx-vector-components.mjs +17 -5
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +17 -5
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/components/fields/filters/filters.component.d.ts +1 -0
- package/lib/components/top-bar/top-bar.component.d.ts +3 -2
- package/lib/models/profile.model.d.ts +9 -2
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ export declare type FilterField = {
|
|
|
37
37
|
size?: 'small' | 'medium' | 'large' | 'largest' | 'full';
|
|
38
38
|
minLengthToService?: number;
|
|
39
39
|
initiateValue?: boolean;
|
|
40
|
+
tooltip?: string;
|
|
40
41
|
};
|
|
41
42
|
export declare class FiltersComponent implements OnInit, OnDestroy {
|
|
42
43
|
private activatedRoute;
|
|
@@ -2,7 +2,7 @@ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { VectorNotification } from '../../models';
|
|
4
4
|
import { HelpCentralIconOptionsType } from '../../models/topbar.model';
|
|
5
|
-
import { AuthService, ProfileService, StorageService } from '../../services';
|
|
5
|
+
import { AuthService, ErrorMessageService, ProfileService, StorageService } from '../../services';
|
|
6
6
|
import { MenuService } from '../../services/menu.service';
|
|
7
7
|
import { NotificationsService } from '../../services/notifications.service';
|
|
8
8
|
import { MaskUtil } from '../../utils';
|
|
@@ -14,6 +14,7 @@ export declare class TopBarComponent implements OnInit, OnDestroy {
|
|
|
14
14
|
private profileService;
|
|
15
15
|
private storageService;
|
|
16
16
|
private notificationsService;
|
|
17
|
+
private errorMessageService;
|
|
17
18
|
hideElements: boolean;
|
|
18
19
|
openedMenu: boolean;
|
|
19
20
|
openedChangeAccountMenu: boolean;
|
|
@@ -31,7 +32,7 @@ export declare class TopBarComponent implements OnInit, OnDestroy {
|
|
|
31
32
|
onClick: EventEmitter<string>;
|
|
32
33
|
notificationsList: VectorNotification[];
|
|
33
34
|
private subscription;
|
|
34
|
-
constructor(menuService: MenuService, authService: AuthService, router: Router, profileService: ProfileService, storageService: StorageService, notificationsService: NotificationsService);
|
|
35
|
+
constructor(menuService: MenuService, authService: AuthService, router: Router, profileService: ProfileService, storageService: StorageService, notificationsService: NotificationsService, errorMessageService: ErrorMessageService);
|
|
35
36
|
ngOnInit(): void;
|
|
36
37
|
ngOnDestroy(): void;
|
|
37
38
|
toggleMenu(): void;
|
|
@@ -28,7 +28,8 @@ export declare enum ProfileModuleType {
|
|
|
28
28
|
DIGITAL_DISCHARGE = "Quita\u00E7\u00E3o Digital",
|
|
29
29
|
REGISTER_OPERATION = "RegisterOperation",
|
|
30
30
|
REGISTER_PRODUCTS = "RegisterProduct",
|
|
31
|
-
ADMIN_NPS = "NPS"
|
|
31
|
+
ADMIN_NPS = "NPS",
|
|
32
|
+
COCKPIT = "Cockpit"
|
|
32
33
|
}
|
|
33
34
|
export declare enum ProfileModuleActionType {
|
|
34
35
|
ADD_VEHICLE = "Add Vehicle",
|
|
@@ -293,5 +294,11 @@ export declare enum ProfileModuleActionType {
|
|
|
293
294
|
SHOW_SHIPPING_COMBINED = "Show Shipping Combined",
|
|
294
295
|
SHOW_SHIPPING_CONTINUOUS = "Show Shipping Continuous",
|
|
295
296
|
SHOW_LOYALTY = "Show Loyalty",
|
|
296
|
-
SHOW_PAYMENT_PARAMETERS = "Show Payment Parameters"
|
|
297
|
+
SHOW_PAYMENT_PARAMETERS = "Show Payment Parameters",
|
|
298
|
+
COCKPIT_SUMMARY = "Cockpit Summary",
|
|
299
|
+
COCKPIT_REGISTRATION = "Cockpit Registration",
|
|
300
|
+
COCKPIT_BANK = "Cockpit Bank",
|
|
301
|
+
COCKPIT_CREDIT = "Cockpit Credit",
|
|
302
|
+
COCKPIT_PA = "Cockpit PA",
|
|
303
|
+
COCKPIT_LOG = "Cockpit Log"
|
|
297
304
|
}
|