tango-app-ui-shared 3.7.3-dev2 → 3.7.3-dev21

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.
Files changed (40) hide show
  1. package/esm2022/lib/modules/layout/header/brands-header/brands-header.component.mjs +18 -0
  2. package/esm2022/lib/modules/layout/header/header-banner/header-banner.component.mjs +27 -0
  3. package/esm2022/lib/modules/layout/header/header-menu/header-menu.component.mjs +3 -3
  4. package/esm2022/lib/modules/layout/header/header.component.mjs +216 -11
  5. package/esm2022/lib/modules/layout/header/plano-header/plano-header.component.mjs +12 -0
  6. package/esm2022/lib/modules/layout/header/stores-header/stores-header.component.mjs +61 -0
  7. package/esm2022/lib/modules/layout/layout/layout.component.mjs +69 -24
  8. package/esm2022/lib/modules/layout/layout.module.mjs +27 -4
  9. package/esm2022/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.mjs +6 -8
  10. package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +4 -3
  11. package/esm2022/lib/modules/layout/sidebar/sidebar.component.mjs +3 -3
  12. package/esm2022/lib/modules/layout/toolbar/single-store/single-store.component.mjs +1 -2
  13. package/esm2022/lib/modules/layout/toolbar/toolbar.component.mjs +11 -5
  14. package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +331 -132
  15. package/esm2022/lib/modules/layout/toolbar/traffic-nob/traffic-nob.component.mjs +65 -15
  16. package/esm2022/lib/modules/layout/toolbar/trax-header/trax-header.component.mjs +68 -17
  17. package/esm2022/lib/modules/layout/toolbar/trax-withoutdate/trax-withoutdate.component.mjs +67 -17
  18. package/esm2022/lib/routes/routing.mjs +6 -1
  19. package/esm2022/lib/services/auth.service.mjs +37 -1
  20. package/fesm2022/{tango-app-ui-shared-intro.module-DYh4ZRha.mjs → tango-app-ui-shared-intro.module-DyE2keRn.mjs} +6 -4
  21. package/fesm2022/{tango-app-ui-shared-intro.module-DYh4ZRha.mjs.map → tango-app-ui-shared-intro.module-DyE2keRn.mjs.map} +1 -1
  22. package/fesm2022/{tango-app-ui-shared-notification.module-C5ZmCf8U.mjs → tango-app-ui-shared-notification.module-C1uJuY1m.mjs} +6 -4
  23. package/fesm2022/{tango-app-ui-shared-notification.module-C5ZmCf8U.mjs.map → tango-app-ui-shared-notification.module-C1uJuY1m.mjs.map} +1 -1
  24. package/fesm2022/tango-app-ui-shared.mjs +4454 -3699
  25. package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
  26. package/lib/modules/layout/header/brands-header/brands-header.component.d.ts +8 -0
  27. package/lib/modules/layout/header/header-banner/header-banner.component.d.ts +12 -0
  28. package/lib/modules/layout/header/header.component.d.ts +46 -3
  29. package/lib/modules/layout/header/plano-header/plano-header.component.d.ts +5 -0
  30. package/lib/modules/layout/header/stores-header/stores-header.component.d.ts +17 -0
  31. package/lib/modules/layout/layout/layout.component.d.ts +6 -2
  32. package/lib/modules/layout/layout.module.d.ts +16 -10
  33. package/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.d.ts +2 -1
  34. package/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.d.ts +1 -0
  35. package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts +36 -5
  36. package/lib/modules/layout/toolbar/traffic-nob/traffic-nob.component.d.ts +10 -3
  37. package/lib/modules/layout/toolbar/trax-header/trax-header.component.d.ts +10 -3
  38. package/lib/modules/layout/toolbar/trax-withoutdate/trax-withoutdate.component.d.ts +10 -3
  39. package/lib/services/auth.service.d.ts +6 -0
  40. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ import { GlobalStateService } from 'tango-app-ui-global';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BrandsHeaderComponent {
4
+ gs: GlobalStateService;
5
+ constructor(gs: GlobalStateService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BrandsHeaderComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<BrandsHeaderComponent, "lib-brands-header", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,12 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { AuthService } from '../../../../services/auth.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class HeaderBannerComponent implements OnInit {
5
+ private service;
6
+ showCreateOrder: 'AUTHORIZED' | 'UNAUTHORIZED';
7
+ constructor(service: AuthService);
8
+ users: any;
9
+ ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBannerComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBannerComponent, "lib-header-banner", never, {}, {}, never, never, false, never>;
12
+ }
@@ -1,11 +1,17 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
- import { ILayout, LayoutType } from 'tango-app-ui-global';
3
+ import { Subscription } from 'rxjs';
4
+ import { GlobalStateService, ILayout, LayoutType } from 'tango-app-ui-global';
4
5
  import { LayoutService } from 'tango-app-ui-global';
6
+ import { AuthService } from '../../../services/auth.service';
7
+ import { MatTooltip } from '@angular/material/tooltip';
5
8
  import * as i0 from "@angular/core";
6
9
  export declare class HeaderComponent implements OnInit, OnDestroy {
7
10
  private layout;
11
+ private cd;
8
12
  private router;
13
+ gs: GlobalStateService;
14
+ private service;
9
15
  private unsubscribe;
10
16
  currentLayoutType: LayoutType | null;
11
17
  appHeaderDisplay: boolean;
@@ -20,11 +26,48 @@ export declare class HeaderComponent implements OnInit, OnDestroy {
20
26
  appHeaderDefaultContent: string;
21
27
  appHeaderDefaulMenuDisplay: boolean;
22
28
  appPageTitleDisplay: boolean;
23
- constructor(layout: LayoutService, router: Router);
29
+ storeDetails: any;
30
+ storeAppId: any;
31
+ storeProfileData: any;
32
+ storeSpocDetails: any;
33
+ constructor(layout: LayoutService, cd: ChangeDetectorRef, router: Router, gs: GlobalStateService, service: AuthService);
34
+ appPageTitleBreadcrumb: boolean;
35
+ appPageTitleDescription: boolean;
36
+ appPageTitleCSSClass: string;
24
37
  updateProps(config: ILayout): void;
38
+ headerFilter: any;
39
+ users: any;
40
+ storeIdarray: any;
41
+ routerSubscription: Subscription;
42
+ url: any[];
43
+ private readonly destroy$;
44
+ appPageTitleDirection: string;
25
45
  ngOnInit(): void;
26
46
  routingChanges(): void;
47
+ getClientValue: any;
48
+ getClientInfo(): void;
49
+ dataStoreMap: any;
50
+ getStoreMap(): void;
27
51
  ngOnDestroy(): void;
52
+ showClientInfo: boolean;
53
+ toggleClientInfo(): void;
54
+ toggleClientInfoStores(): void;
55
+ onClickOutside(event: MouseEvent): void;
56
+ mainUrl: any;
57
+ initializeComponent(): void;
58
+ get headerType(): 'brands' | 'stores' | 'manage' | undefined;
59
+ isCopied: boolean;
60
+ clipboard: any;
61
+ tooltip: MatTooltip;
62
+ copyButton: ElementRef;
63
+ copyText(text: any): void;
64
+ storeName: any;
65
+ getStoresInfo(id: any): void;
66
+ getAllClientValue: any;
67
+ showClient: boolean;
68
+ toggleClient(): void;
69
+ get storeInitials(): string;
70
+ get csmInitials(): string;
28
71
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
29
72
  static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, {}, {}, never, never, false, never>;
30
73
  }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PlanoHeaderComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlanoHeaderComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<PlanoHeaderComponent, "lib-plano-header", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,17 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { GlobalStateService } from 'tango-app-ui-global';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StoresHeaderComponent implements OnInit {
5
+ gs: GlobalStateService;
6
+ private cd;
7
+ users: any;
8
+ storeId: any;
9
+ headerData: any;
10
+ storeIdarray: any;
11
+ dataStoreMap: any;
12
+ private destroy$;
13
+ constructor(gs: GlobalStateService, cd: ChangeDetectorRef);
14
+ ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<StoresHeaderComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<StoresHeaderComponent, "lib-stores-header", never, {}, {}, never, never, false, never>;
17
+ }
@@ -62,21 +62,25 @@ export declare class LayoutComponent implements OnInit, OnDestroy {
62
62
  appFooterContainerCSSClass: string;
63
63
  appFooterFixedDesktop: boolean;
64
64
  appFooterFixedMobile: boolean;
65
+ appHeaderBannerDisplay: boolean;
66
+ appHeaderBannerCSSClass: string;
65
67
  scrolltopDisplay: boolean;
66
68
  ktAside: ElementRef;
67
69
  ktHeaderMobile: ElementRef;
68
70
  ktHeader: ElementRef;
69
71
  constructor(initService: LayoutInitService, layout: LayoutService, router: Router, activatedRoute: ActivatedRoute, authService: AuthService, toastService: ToastService, gs: GlobalStateService);
72
+ routerSubscription: any;
70
73
  ngOnInit(): void;
74
+ url: any;
75
+ initializeComponent(): void;
71
76
  updateProps(config: ILayout): void;
72
77
  updateSidebar(config: ILayout): void;
73
78
  updateHeader(config: ILayout): void;
74
79
  updateFooter(config: ILayout): void;
75
80
  updateToolbar(config: ILayout): void;
76
81
  ngOnDestroy(): void;
82
+ get headerType(): 'trax' | 'manage' | 'plano' | 'stores' | null;
77
83
  previousScroll: number;
78
- isToolbarFixed: boolean;
79
- onScroll(): void;
80
84
  static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
81
85
  static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "lib-layout", never, {}, {}, never, never, false, never>;
82
86
  }
@@ -33,17 +33,23 @@ import * as i31 from "./toolbar/trax-withoutdate/trax-withoutdate.component";
33
33
  import * as i32 from "./toolbar/traffic-nob/traffic-nob.component";
34
34
  import * as i33 from "./toolbar/metrics-header/metrics-header.component";
35
35
  import * as i34 from "./toolbar/single-clientstore-date/single-clientstore-date.component";
36
- import * as i35 from "@angular/common";
37
- import * as i36 from "@angular/router";
38
- import * as i37 from "../../i18n/translation.module";
39
- import * as i38 from "ng-inline-svg-2";
40
- import * as i39 from "@ng-bootstrap/ng-bootstrap";
41
- import * as i40 from "@ngx-translate/core";
42
- import * as i41 from "../common/common-shared.module";
43
- import * as i42 from "@angular/forms";
44
- import * as i43 from "ngx-daterangepicker-material";
36
+ import * as i35 from "./header/header-banner/header-banner.component";
37
+ import * as i36 from "./header/brands-header/brands-header.component";
38
+ import * as i37 from "./header/plano-header/plano-header.component";
39
+ import * as i38 from "./header/stores-header/stores-header.component";
40
+ import * as i39 from "@angular/common";
41
+ import * as i40 from "@angular/router";
42
+ import * as i41 from "../../i18n/translation.module";
43
+ import * as i42 from "ng-inline-svg-2";
44
+ import * as i43 from "@ng-bootstrap/ng-bootstrap";
45
+ import * as i44 from "@angular/material/tooltip";
46
+ import * as i45 from "ngx-clipboard";
47
+ import * as i46 from "@ngx-translate/core";
48
+ import * as i47 from "../common/common-shared.module";
49
+ import * as i48 from "@angular/forms";
50
+ import * as i49 from "ngx-daterangepicker-material";
45
51
  export declare class LayoutModule {
46
52
  static ɵfac: i0.ɵɵFactoryDeclaration<LayoutModule, never>;
47
- static ɵmod: i0.ɵɵNgModuleDeclaration<LayoutModule, [typeof i1.LayoutComponent, typeof i2.HeaderComponent, typeof i3.ContentComponent, typeof i4.FooterComponent, typeof i5.ScriptsInitComponent, typeof i6.ToolbarComponent, typeof i7.PageTitleComponent, typeof i8.HeaderMenuComponent, typeof i9.SidebarComponent, typeof i10.SidebarLogoComponent, typeof i11.SidebarMenuComponent, typeof i12.SidebarFooterComponent, typeof i13.NavbarComponent, typeof i14.AccountingComponent, typeof i15.ClassicComponent, typeof i16.ExtendedComponent, typeof i17.ReportsComponent, typeof i18.SaasComponent, typeof i19.KeeniconComponent, typeof i20.LayoutScrollTopComponent, typeof i21.ClientSettingsComponent, typeof i22.DatepickerComponent, typeof i23.DateSingleSelectComponent, typeof i24.SingleStoreComponent, typeof i25.NotificationsInnerComponent, typeof i26.CsmAssignConfirmationComponent, typeof i27.TrafficHeaderComponent, typeof i28.TraxHeaderComponent, typeof i29.SingleStoredateComponent, typeof i30.StoresingleComponent, typeof i31.TraxWithoutdateComponent, typeof i32.TrafficNobComponent, typeof i33.MetricsHeaderComponent, typeof i34.SingleClientstoreDateComponent], [typeof i35.CommonModule, typeof i36.RouterModule, typeof i37.TranslationModule, typeof i38.InlineSVGModule, typeof i39.NgbDropdownModule, typeof i39.NgbProgressbarModule, typeof i39.NgbTooltipModule, typeof i40.TranslateModule, typeof i41.CommonSharedModule, typeof i42.FormsModule, typeof i43.NgxDaterangepickerMd], [typeof i36.RouterModule]>;
53
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LayoutModule, [typeof i1.LayoutComponent, typeof i2.HeaderComponent, typeof i3.ContentComponent, typeof i4.FooterComponent, typeof i5.ScriptsInitComponent, typeof i6.ToolbarComponent, typeof i7.PageTitleComponent, typeof i8.HeaderMenuComponent, typeof i9.SidebarComponent, typeof i10.SidebarLogoComponent, typeof i11.SidebarMenuComponent, typeof i12.SidebarFooterComponent, typeof i13.NavbarComponent, typeof i14.AccountingComponent, typeof i15.ClassicComponent, typeof i16.ExtendedComponent, typeof i17.ReportsComponent, typeof i18.SaasComponent, typeof i19.KeeniconComponent, typeof i20.LayoutScrollTopComponent, typeof i21.ClientSettingsComponent, typeof i22.DatepickerComponent, typeof i23.DateSingleSelectComponent, typeof i24.SingleStoreComponent, typeof i25.NotificationsInnerComponent, typeof i26.CsmAssignConfirmationComponent, typeof i27.TrafficHeaderComponent, typeof i28.TraxHeaderComponent, typeof i29.SingleStoredateComponent, typeof i30.StoresingleComponent, typeof i31.TraxWithoutdateComponent, typeof i32.TrafficNobComponent, typeof i33.MetricsHeaderComponent, typeof i34.SingleClientstoreDateComponent, typeof i35.HeaderBannerComponent, typeof i36.BrandsHeaderComponent, typeof i37.PlanoHeaderComponent, typeof i38.StoresHeaderComponent], [typeof i39.CommonModule, typeof i40.RouterModule, typeof i41.TranslationModule, typeof i42.InlineSVGModule, typeof i43.NgbDropdownModule, typeof i43.NgbProgressbarModule, typeof i43.NgbAccordionModule, typeof i43.NgbCollapseModule, typeof i44.MatTooltipModule, typeof i45.ClipboardModule, typeof i43.NgbTooltipModule, typeof i46.TranslateModule, typeof i47.CommonSharedModule, typeof i48.FormsModule, typeof i49.NgxDaterangepickerMd], [typeof i40.RouterModule]>;
48
54
  static ɵinj: i0.ɵɵInjectorDeclaration<LayoutModule>;
49
55
  }
@@ -36,7 +36,8 @@ export declare class SidebarFooterComponent implements OnInit, OnDestroy {
36
36
  profileUrl(): void;
37
37
  closeMenu(): void;
38
38
  logout(): void;
39
- private cleanUpAndRedirect;
39
+ captchaToken: string | null;
40
+ cleanUpAndRedirect(): void;
40
41
  ngOnDestroy(): void;
41
42
  getProfile(): void;
42
43
  static ɵfac: i0.ɵɵFactoryDeclaration<SidebarFooterComponent, never>;
@@ -13,6 +13,7 @@ export declare class SidebarMenuComponent implements OnInit {
13
13
  clientData: any;
14
14
  headerFilters: any;
15
15
  showPlano: string;
16
+ showEyetest: boolean;
16
17
  constructor(authService: AuthService, gs: GlobalStateService, router: Router);
17
18
  private readonly destroy$;
18
19
  previousClientId: any;
@@ -19,10 +19,10 @@ export declare class TrafficHeaderComponent implements OnInit {
19
19
  searchLocationText: string;
20
20
  searchGroupText: string;
21
21
  locations: any[];
22
- filteredLocations: any[];
22
+ filteredLocations: any;
23
23
  groupsData: any[];
24
- filteredGroups: any[];
25
- filteredStores: any[];
24
+ filteredGroups: any;
25
+ filteredStores: any;
26
26
  stores: any[];
27
27
  searchStoreText: string;
28
28
  clientList: any;
@@ -31,7 +31,7 @@ export declare class TrafficHeaderComponent implements OnInit {
31
31
  groupLabel: any[];
32
32
  users: any;
33
33
  url: any;
34
- filteredCountries: any[];
34
+ filteredCountries: any;
35
35
  countryLabel: any[];
36
36
  searchCountryText: string;
37
37
  countries: any[];
@@ -55,18 +55,22 @@ export declare class TrafficHeaderComponent implements OnInit {
55
55
  getLocations(): void;
56
56
  isAllLocationsSelected(): boolean;
57
57
  selectedLocationsLabel(): string;
58
+ selectedLocationsLabel1(): string;
58
59
  removeLocation(): void;
59
60
  getGroups(): void;
60
- toggleDropdown(type: 'country' | 'location' | 'group' | 'store'): void;
61
+ toggleDropdown(type: 'country' | 'location' | 'group' | 'store' | 'status'): void;
61
62
  handleGroupDropdownClick(): void;
62
63
  resetSelectedGroups(): void;
63
64
  selectedGroupsLabel(): string;
65
+ selectedGroupsLabel1(): string;
64
66
  removeGroup(): void;
65
67
  isAllGroupsSelected(): boolean;
66
68
  getStore(): void;
69
+ private areArraysEqual;
67
70
  private clearStoresState;
68
71
  resetSelectedStores(): void;
69
72
  selectedStoresLabel(): string;
73
+ selectedStoresLabel1(): string;
70
74
  isAllStoresSelected(): boolean;
71
75
  updateSelectedStores(): void;
72
76
  toggleSelectAllLocations(event: any): void;
@@ -82,12 +86,39 @@ export declare class TrafficHeaderComponent implements OnInit {
82
86
  clickOutside(event: MouseEvent): void;
83
87
  getCountry(): void;
84
88
  selectedCountriesLabel(): string;
89
+ selectedCountriesLabel1(): string;
85
90
  filterCountries(): void;
86
91
  isAllCountriesSelected(): boolean;
87
92
  toggleSelectAllCountries(event: any): void;
88
93
  updateSelectedCountries(): void;
89
94
  removeCountry(): void;
90
95
  Apply(): void;
96
+ getSelectedCount(type: string): string;
97
+ activeDropdown: string;
98
+ showDropdown(type: string): void;
99
+ showClick(type: any, e: MouseEvent): void;
100
+ downtimeOptions: {
101
+ label: string;
102
+ value: string;
103
+ checked: boolean;
104
+ }[];
105
+ selectedDowntimeValues: any[];
106
+ isAllDowntimeSelected(): boolean;
107
+ toggleSelectAllDowntime(event: any): void;
108
+ updateSelectedDowntime(): void;
109
+ downtimeData: any[];
110
+ downtimeApi(): void;
111
+ restoreDowntimeFromStorage(): void;
112
+ statusVal: any;
113
+ searchStatusText: any;
114
+ filteredStatus: any;
115
+ getStatus(): void;
116
+ selectedStatusLabel(): string;
117
+ selectedStatusLabel1(): string;
118
+ filterStatus(): void;
119
+ isAllStatusSelected(): boolean;
120
+ toggleSelectAllStatus(event: any): void;
121
+ updateSelectedStatus(): void;
91
122
  static ɵfac: i0.ɵɵFactoryDeclaration<TrafficHeaderComponent, never>;
92
123
  static ɵcmp: i0.ɵɵComponentDeclaration<TrafficHeaderComponent, "lib-traffic-header", never, {}, {}, never, never, false, never>;
93
124
  }
@@ -19,10 +19,10 @@ export declare class TrafficNobComponent implements OnInit {
19
19
  searchLocationText: string;
20
20
  searchGroupText: string;
21
21
  locations: any[];
22
- filteredLocations: any[];
22
+ filteredLocations: any;
23
23
  groupsData: any[];
24
- filteredGroups: any[];
25
- filteredStores: any[];
24
+ filteredGroups: any;
25
+ filteredStores: any;
26
26
  stores: any[];
27
27
  searchStoreText: string;
28
28
  clientList: any;
@@ -75,6 +75,13 @@ export declare class TrafficNobComponent implements OnInit {
75
75
  filterStores(): void;
76
76
  closeDropdown(): void;
77
77
  clickOutside(event: MouseEvent): void;
78
+ selectedLocationsLabel1(): string;
79
+ selectedGroupsLabel1(): string;
80
+ selectedStoresLabel1(): string;
81
+ getSelectedCount(type: string): string;
82
+ activeDropdown: string;
83
+ showDropdown(type: string): void;
84
+ showClick(type: any, e: MouseEvent): void;
78
85
  static ɵfac: i0.ɵɵFactoryDeclaration<TrafficNobComponent, never>;
79
86
  static ɵcmp: i0.ɵɵComponentDeclaration<TrafficNobComponent, "lib-traffic-nob", never, {}, {}, never, never, false, never>;
80
87
  }
@@ -19,10 +19,10 @@ export declare class TraxHeaderComponent implements OnInit {
19
19
  searchLocationText: string;
20
20
  searchGroupText: string;
21
21
  locations: any[];
22
- filteredLocations: any[];
22
+ filteredLocations: any;
23
23
  groupsData: any[];
24
- filteredGroups: any[];
25
- filteredStores: any[];
24
+ filteredGroups: any;
25
+ filteredStores: any;
26
26
  stores: any[];
27
27
  searchStoreText: string;
28
28
  clientList: any;
@@ -53,17 +53,20 @@ export declare class TraxHeaderComponent implements OnInit {
53
53
  getLocations(): void;
54
54
  isAllLocationsSelected(): boolean;
55
55
  selectedLocationsLabel(): string;
56
+ selectedLocationsLabel1(): string;
56
57
  removeLocation(): void;
57
58
  getGroups(): void;
58
59
  toggleDropdown(type: 'location' | 'group' | 'store'): void;
59
60
  handleGroupDropdownClick(): void;
60
61
  resetSelectedGroups(): void;
61
62
  selectedGroupsLabel(): string;
63
+ selectedGroupsLabel1(): string;
62
64
  removeGroup(): void;
63
65
  isAllGroupsSelected(): boolean;
64
66
  getStore(): void;
65
67
  resetSelectedStores(): void;
66
68
  selectedStoresLabel(): string;
69
+ selectedStoresLabel1(): string;
67
70
  isAllStoresSelected(): boolean;
68
71
  updateSelectedStores(): void;
69
72
  toggleSelectAllLocations(event: any): void;
@@ -76,8 +79,12 @@ export declare class TraxHeaderComponent implements OnInit {
76
79
  filterLocations(): void;
77
80
  filterGroups(): void;
78
81
  filterStores(): void;
82
+ showClick(type: any, e: MouseEvent): void;
79
83
  closeDropdown(): void;
80
84
  clickOutside(event: MouseEvent): void;
85
+ getSelectedCount(type: string): string;
86
+ activeDropdown: string;
87
+ showDropdown(type: string): void;
81
88
  static ɵfac: i0.ɵɵFactoryDeclaration<TraxHeaderComponent, never>;
82
89
  static ɵcmp: i0.ɵɵComponentDeclaration<TraxHeaderComponent, "lib-trax-header", never, {}, {}, never, never, false, never>;
83
90
  }
@@ -19,10 +19,10 @@ export declare class TraxWithoutdateComponent implements OnInit {
19
19
  searchLocationText: string;
20
20
  searchGroupText: string;
21
21
  locations: any[];
22
- filteredLocations: any[];
22
+ filteredLocations: any;
23
23
  groupsData: any[];
24
- filteredGroups: any[];
25
- filteredStores: any[];
24
+ filteredGroups: any;
25
+ filteredStores: any;
26
26
  stores: any[];
27
27
  searchStoreText: string;
28
28
  clientList: any;
@@ -69,6 +69,13 @@ export declare class TraxWithoutdateComponent implements OnInit {
69
69
  filterStores(): void;
70
70
  closeDropdown(): void;
71
71
  clickOutside(event: MouseEvent): void;
72
+ selectedLocationsLabel1(): string;
73
+ selectedGroupsLabel1(): string;
74
+ selectedStoresLabel1(): string;
75
+ getSelectedCount(type: string): string;
76
+ activeDropdown: string;
77
+ showDropdown(type: string): void;
78
+ showClick(type: any, e: MouseEvent): void;
72
79
  static ɵfac: i0.ɵɵFactoryDeclaration<TraxWithoutdateComponent, never>;
73
80
  static ɵcmp: i0.ɵɵComponentDeclaration<TraxWithoutdateComponent, "lib-trax-withoutdate", never, {}, {}, never, never, false, never>;
74
81
  }
@@ -44,6 +44,12 @@ export declare class AuthService {
44
44
  getCountry(data: any): Observable<any>;
45
45
  getPlanoUsers(): Observable<Object>;
46
46
  getHeaderZone(data: any): Observable<any>;
47
+ getClientInfo(client?: any): Observable<any>;
48
+ getStoreMapData(params: any): Observable<any>;
49
+ getStoreLogData(data: any, id: any): Observable<Object>;
50
+ getAllClientInfo(): Observable<any>;
51
+ getDowntimeHeader(data: any): Observable<any>;
52
+ isLocusAuthorized(): Observable<Object>;
47
53
  static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
48
54
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
49
55
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-shared",
3
- "version": "3.7.3-dev2",
3
+ "version": "3.7.3-dev21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"