tango-app-ui-shared 3.3.1-beta.7 → 3.3.1-beta.70
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/esm2022/lib/guards/stores.guard.mjs +5 -5
- package/esm2022/lib/guards/tickets.guard.mjs +5 -5
- package/esm2022/lib/modules/common/filters/filters.component.mjs +2 -2
- package/esm2022/lib/modules/intro/lead-intro/lead-intro.component.mjs +13 -8
- package/esm2022/lib/modules/layout/header/navbar/navbar.component.mjs +6 -3
- package/esm2022/lib/modules/layout/header/page-title/page-title.component.mjs +14 -8
- package/esm2022/lib/modules/layout/layout.module.mjs +6 -3
- package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +26 -14
- package/esm2022/lib/modules/layout/toolbar/client-settings/client-settings.component.mjs +3 -2
- package/esm2022/lib/modules/layout/toolbar/date-single-select/date-single-select.component.mjs +28 -9
- package/esm2022/lib/modules/layout/toolbar/datepicker/datepicker.component.mjs +11 -6
- package/esm2022/lib/modules/layout/toolbar/single-store/single-store.component.mjs +36 -12
- package/esm2022/lib/modules/layout/toolbar/toolbar.component.mjs +59 -22
- package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +195 -89
- package/esm2022/lib/modules/layout/toolbar/trax-header/trax-header.component.mjs +812 -0
- package/esm2022/lib/modules/notification/conformation/conformation.component.mjs +22 -0
- package/esm2022/lib/modules/notification/notification/notification.component.mjs +161 -22
- package/esm2022/lib/modules/notification/notification-routing.module.mjs +5 -1
- package/esm2022/lib/modules/notification/notification.module.mjs +6 -3
- package/esm2022/lib/routes/routing.mjs +6 -1
- package/esm2022/lib/services/auth.service.mjs +8 -6
- package/esm2022/lib/services/notification.service.mjs +9 -1
- package/fesm2022/tango-app-ui-shared-edge-wrapper.module-CFDk0tvS.mjs.map +1 -1
- package/fesm2022/{tango-app-ui-shared-intro.module-CAPPEqzI.mjs → tango-app-ui-shared-intro.module-DYh4ZRha.mjs} +14 -9
- package/fesm2022/tango-app-ui-shared-intro.module-DYh4ZRha.mjs.map +1 -0
- package/fesm2022/tango-app-ui-shared-manage-wrapper.module-BHyh4Njw.mjs.map +1 -1
- package/fesm2022/tango-app-ui-shared-notification.module-CMmM6CAt.mjs +400 -0
- package/fesm2022/tango-app-ui-shared-notification.module-CMmM6CAt.mjs.map +1 -0
- package/fesm2022/tango-app-ui-shared-profile-wrapper.module-BNC1AGOk.mjs.map +1 -1
- package/fesm2022/tango-app-ui-shared-store-wrapper.module-DdaCYHdv.mjs.map +1 -1
- package/fesm2022/tango-app-ui-shared-ticket-wrapper.module-r32uKkDO.mjs.map +1 -1
- package/fesm2022/tango-app-ui-shared.mjs +1345 -319
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/modules/intro/lead-intro/lead-intro.component.d.ts +4 -1
- package/lib/modules/layout/header/navbar/navbar.component.d.ts +1 -0
- package/lib/modules/layout/header/page-title/page-title.component.d.ts +4 -1
- package/lib/modules/layout/layout.module.d.ts +11 -10
- package/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.d.ts +1 -0
- package/lib/modules/layout/toolbar/single-store/single-store.component.d.ts +11 -4
- package/lib/modules/layout/toolbar/toolbar.component.d.ts +4 -1
- package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts +4 -1
- package/lib/modules/layout/toolbar/trax-header/trax-header.component.d.ts +81 -0
- package/lib/modules/notification/conformation/conformation.component.d.ts +10 -0
- package/lib/modules/notification/notification/notification.component.d.ts +21 -3
- package/lib/modules/notification/notification.module.d.ts +5 -4
- package/lib/services/auth.service.d.ts +1 -0
- package/lib/services/notification.service.d.ts +3 -0
- package/package.json +1 -1
- package/fesm2022/tango-app-ui-shared-intro.module-CAPPEqzI.mjs.map +0 -1
- package/fesm2022/tango-app-ui-shared-notification.module-Bj0oBem1.mjs +0 -238
- package/fesm2022/tango-app-ui-shared-notification.module-Bj0oBem1.mjs.map +0 -1
|
@@ -3,17 +3,19 @@ import { GlobalStateService, PageInfoService } from 'tango-app-ui-global';
|
|
|
3
3
|
import { NgbCarouselConfig, NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
4
|
import { AuthService } from '../../../services/auth.service';
|
|
5
5
|
import dayjs from "dayjs";
|
|
6
|
+
import { Router } from '@angular/router';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class LeadIntroComponent implements OnDestroy, OnInit {
|
|
8
9
|
private pageInfo;
|
|
9
10
|
gs: GlobalStateService;
|
|
10
11
|
private modalService;
|
|
11
12
|
private authService;
|
|
13
|
+
private router;
|
|
12
14
|
productList: any;
|
|
13
15
|
private readonly destroy$;
|
|
14
16
|
trialDetails: any;
|
|
15
17
|
dayjs: typeof dayjs;
|
|
16
|
-
constructor(pageInfo: PageInfoService, gs: GlobalStateService, config: NgbCarouselConfig, modalService: NgbModal, authService: AuthService);
|
|
18
|
+
constructor(pageInfo: PageInfoService, gs: GlobalStateService, config: NgbCarouselConfig, modalService: NgbModal, authService: AuthService, router: Router);
|
|
17
19
|
daysWithin14(date: string): {
|
|
18
20
|
daysRemaining: number;
|
|
19
21
|
percentageRemaining: number;
|
|
@@ -23,6 +25,7 @@ export declare class LeadIntroComponent implements OnDestroy, OnInit {
|
|
|
23
25
|
setPageData(): void;
|
|
24
26
|
contactSupport(): void;
|
|
25
27
|
updateCircleChart(percentage: number): void;
|
|
28
|
+
reDirectionUrl(): void;
|
|
26
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<LeadIntroComponent, never>;
|
|
27
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<LeadIntroComponent, "lib-lead-intro", never, {}, {}, never, never, false, never>;
|
|
28
31
|
}
|
|
@@ -38,6 +38,7 @@ export declare class NavbarComponent implements OnInit, OnDestroy {
|
|
|
38
38
|
updateNotification(data: any, btnDetails: any): void;
|
|
39
39
|
handleNotification(): void;
|
|
40
40
|
viewAll(type: any): void;
|
|
41
|
+
redirecttonotification(): void;
|
|
41
42
|
onClick(event: MouseEvent): void;
|
|
42
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
|
|
43
44
|
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "lib-navbar", never, { "appHeaderDefaulMenuDisplay": { "alias": "appHeaderDefaulMenuDisplay"; "required": false; }; "isRtl": { "alias": "isRtl"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
2
3
|
import { Observable } from 'rxjs';
|
|
3
4
|
import { PageInfoService, PageLink } from 'tango-app-ui-global';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class PageTitleComponent implements OnInit, OnDestroy {
|
|
6
7
|
private pageInfo;
|
|
7
8
|
private cd;
|
|
9
|
+
private router;
|
|
8
10
|
private unsubscribe;
|
|
9
11
|
appPageTitleDirection: string;
|
|
10
12
|
appPageTitleBreadcrumb: boolean;
|
|
@@ -12,9 +14,10 @@ export declare class PageTitleComponent implements OnInit, OnDestroy {
|
|
|
12
14
|
title$: Observable<string>;
|
|
13
15
|
description$: Observable<string>;
|
|
14
16
|
bc$: Observable<Array<PageLink>>;
|
|
15
|
-
constructor(pageInfo: PageInfoService, cd: ChangeDetectorRef);
|
|
17
|
+
constructor(pageInfo: PageInfoService, cd: ChangeDetectorRef, router: Router);
|
|
16
18
|
ngOnInit(): void;
|
|
17
19
|
ngOnDestroy(): void;
|
|
20
|
+
redirectFunction(path: any): void;
|
|
18
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageTitleComponent, never>;
|
|
19
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<PageTitleComponent, "lib-page-title", never, { "appPageTitleDirection": { "alias": "appPageTitleDirection"; "required": false; }; "appPageTitleBreadcrumb": { "alias": "appPageTitleBreadcrumb"; "required": false; }; "appPageTitleDescription": { "alias": "appPageTitleDescription"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
23
|
}
|
|
@@ -26,17 +26,18 @@ import * as i24 from "./toolbar/single-store/single-store.component";
|
|
|
26
26
|
import * as i25 from "./header/notifications-inner/notifications-inner.component";
|
|
27
27
|
import * as i26 from "./components/csm-assign-confirmation/csm-assign-confirmation.component";
|
|
28
28
|
import * as i27 from "./toolbar/traffic-header/traffic-header/traffic-header.component";
|
|
29
|
-
import * as i28 from "
|
|
30
|
-
import * as i29 from "@angular/
|
|
31
|
-
import * as i30 from "
|
|
32
|
-
import * as i31 from "
|
|
33
|
-
import * as i32 from "
|
|
34
|
-
import * as i33 from "@
|
|
35
|
-
import * as i34 from "
|
|
36
|
-
import * as i35 from "
|
|
37
|
-
import * as i36 from "
|
|
29
|
+
import * as i28 from "./toolbar/trax-header/trax-header.component";
|
|
30
|
+
import * as i29 from "@angular/common";
|
|
31
|
+
import * as i30 from "@angular/router";
|
|
32
|
+
import * as i31 from "../../i18n/translation.module";
|
|
33
|
+
import * as i32 from "ng-inline-svg-2";
|
|
34
|
+
import * as i33 from "@ng-bootstrap/ng-bootstrap";
|
|
35
|
+
import * as i34 from "@ngx-translate/core";
|
|
36
|
+
import * as i35 from "../common/common-shared.module";
|
|
37
|
+
import * as i36 from "@angular/forms";
|
|
38
|
+
import * as i37 from "ngx-daterangepicker-material";
|
|
38
39
|
export declare class LayoutModule {
|
|
39
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutModule, never>;
|
|
40
|
-
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
|
|
41
|
+
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.CommonModule, typeof i30.RouterModule, typeof i31.TranslationModule, typeof i32.InlineSVGModule, typeof i33.NgbDropdownModule, typeof i33.NgbProgressbarModule, typeof i33.NgbTooltipModule, typeof i34.TranslateModule, typeof i35.CommonSharedModule, typeof i36.FormsModule, typeof i37.NgxDaterangepickerMd], [typeof i30.RouterModule]>;
|
|
41
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<LayoutModule>;
|
|
42
43
|
}
|
|
@@ -11,6 +11,7 @@ export declare class SidebarMenuComponent implements OnInit {
|
|
|
11
11
|
authlocalStorageToken: string;
|
|
12
12
|
oldDashboardRoutingUrl: any;
|
|
13
13
|
clientData: any;
|
|
14
|
+
headerFilters: any;
|
|
14
15
|
constructor(authService: AuthService, gs: GlobalStateService, router: Router);
|
|
15
16
|
private readonly destroy$;
|
|
16
17
|
ngOnInit(): void;
|
|
@@ -1,26 +1,33 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
import 'dayjs/locale/en';
|
|
4
4
|
import { AuthService } from '../../../../services/auth.service';
|
|
5
5
|
import { GlobalStateService } from 'tango-app-ui-global';
|
|
6
|
+
import { Router } from '@angular/router';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class SingleStoreComponent implements OnInit {
|
|
8
|
+
export declare class SingleStoreComponent implements OnInit, OnChanges {
|
|
8
9
|
private auth;
|
|
9
10
|
private gs;
|
|
10
11
|
private cd;
|
|
12
|
+
private router;
|
|
13
|
+
urlString: any;
|
|
11
14
|
dayjs: typeof dayjs;
|
|
12
15
|
isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
|
|
13
16
|
selectedDateRange: any;
|
|
14
17
|
storeList: any;
|
|
15
18
|
selectedClient: any;
|
|
16
19
|
selectedFilters: any;
|
|
17
|
-
|
|
20
|
+
URL: any;
|
|
21
|
+
baseurl: any;
|
|
22
|
+
constructor(auth: AuthService, gs: GlobalStateService, cd: ChangeDetectorRef, router: Router);
|
|
18
23
|
ngOnInit(): void;
|
|
19
24
|
onClientSelect(event: any): void;
|
|
20
25
|
ranges: any;
|
|
21
26
|
onStartDateChange(event: any): void;
|
|
22
27
|
datechange(event: any): void;
|
|
23
28
|
Apply(): void;
|
|
29
|
+
queryString: any;
|
|
30
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
24
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleStoreComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SingleStoreComponent, "lib-single-store", never, {}, {}, never, never, false, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SingleStoreComponent, "lib-single-store", never, { "urlString": { "alias": "urlString"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
33
|
}
|
|
@@ -32,12 +32,15 @@ export declare class ToolbarComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
users: any;
|
|
33
33
|
selectedFilters: any;
|
|
34
34
|
trafficdatepicker: boolean;
|
|
35
|
+
traxdatepicker: boolean;
|
|
36
|
+
urlString: any;
|
|
35
37
|
constructor(layout: LayoutService, router: Router, route: ActivatedRoute, gs: GlobalStateService);
|
|
36
38
|
ngOnInit(): void;
|
|
37
39
|
updateProps(config: ILayout): void;
|
|
40
|
+
private readonly destroy$;
|
|
38
41
|
ngOnDestroy(): void;
|
|
39
42
|
showPageTitle(): boolean;
|
|
40
|
-
setUIProperties(singleSelect: boolean, multiSelect: boolean, datepicker: boolean, singleStore: boolean, singleSelectdatepicker: boolean, trafficdatepicker: boolean): void;
|
|
43
|
+
setUIProperties(singleSelect: boolean, multiSelect: boolean, datepicker: boolean, singleStore: boolean, singleSelectdatepicker: boolean, trafficdatepicker: boolean, traxdatepicker: boolean): void;
|
|
41
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
42
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "lib-toolbar", never, { "currentLayoutType": { "alias": "currentLayoutType"; "required": false; }; "appToolbarLayout": { "alias": "appToolbarLayout"; "required": false; }; }, {}, never, never, false, never>;
|
|
43
46
|
}
|
package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts
CHANGED
|
@@ -3,9 +3,11 @@ import dayjs from "dayjs";
|
|
|
3
3
|
import "dayjs/locale/en";
|
|
4
4
|
import { AuthService } from "../../../../../services/auth.service";
|
|
5
5
|
import { GlobalStateService } from "tango-app-ui-global";
|
|
6
|
+
import { Router } from "@angular/router";
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TrafficHeaderComponent implements OnInit {
|
|
8
9
|
private auth;
|
|
10
|
+
private router;
|
|
9
11
|
gs: GlobalStateService;
|
|
10
12
|
private cd;
|
|
11
13
|
dayjs: typeof dayjs;
|
|
@@ -28,7 +30,8 @@ export declare class TrafficHeaderComponent implements OnInit {
|
|
|
28
30
|
locationLabel: any[];
|
|
29
31
|
groupLabel: any[];
|
|
30
32
|
users: any;
|
|
31
|
-
|
|
33
|
+
url: any;
|
|
34
|
+
constructor(auth: AuthService, router: Router, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
32
35
|
onClick(event: MouseEvent): void;
|
|
33
36
|
closeDropdown1(): void;
|
|
34
37
|
ngOnInit(): void;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from "@angular/core";
|
|
2
|
+
import dayjs from "dayjs";
|
|
3
|
+
import "dayjs/locale/en";
|
|
4
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
5
|
+
import { Router } from "@angular/router";
|
|
6
|
+
import { AuthService } from "../../../../services/auth.service";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TraxHeaderComponent implements OnInit {
|
|
9
|
+
private auth;
|
|
10
|
+
private router;
|
|
11
|
+
gs: GlobalStateService;
|
|
12
|
+
private cd;
|
|
13
|
+
dayjs: typeof dayjs;
|
|
14
|
+
isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
|
|
15
|
+
selectedDateRange: any;
|
|
16
|
+
selectedFilters: any;
|
|
17
|
+
Opendropdown: boolean;
|
|
18
|
+
dropdownOpen: string | null;
|
|
19
|
+
searchLocationText: string;
|
|
20
|
+
searchGroupText: string;
|
|
21
|
+
locations: any[];
|
|
22
|
+
filteredLocations: any[];
|
|
23
|
+
groupsData: any[];
|
|
24
|
+
filteredGroups: any[];
|
|
25
|
+
filteredStores: any[];
|
|
26
|
+
stores: any[];
|
|
27
|
+
searchStoreText: string;
|
|
28
|
+
clientList: any;
|
|
29
|
+
selectedClient: any;
|
|
30
|
+
locationLabel: any[];
|
|
31
|
+
groupLabel: any[];
|
|
32
|
+
users: any;
|
|
33
|
+
url: any;
|
|
34
|
+
constructor(auth: AuthService, router: Router, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
35
|
+
onClick(event: MouseEvent): void;
|
|
36
|
+
closeDropdown1(): void;
|
|
37
|
+
ngOnInit(): void;
|
|
38
|
+
private syncWithLocalStorage;
|
|
39
|
+
private emitAndStoreFilters;
|
|
40
|
+
/**
|
|
41
|
+
* Reset selectedFilters and all related arrays to empty states
|
|
42
|
+
*/
|
|
43
|
+
private resetFilters;
|
|
44
|
+
getClient(): void;
|
|
45
|
+
onClientSelect(event: any): void;
|
|
46
|
+
ranges: any;
|
|
47
|
+
resetValidation(): void;
|
|
48
|
+
onStartDateChange(event: any): void;
|
|
49
|
+
datechange(event: any): void;
|
|
50
|
+
opendropdown(e: MouseEvent): void;
|
|
51
|
+
getLocations(): void;
|
|
52
|
+
isAllLocationsSelected(): boolean;
|
|
53
|
+
selectedLocationsLabel(): string;
|
|
54
|
+
removeLocation(): void;
|
|
55
|
+
getGroups(): void;
|
|
56
|
+
toggleDropdown(type: 'location' | 'group' | 'store'): void;
|
|
57
|
+
handleGroupDropdownClick(): void;
|
|
58
|
+
resetSelectedGroups(): void;
|
|
59
|
+
selectedGroupsLabel(): string;
|
|
60
|
+
removeGroup(): void;
|
|
61
|
+
isAllGroupsSelected(): boolean;
|
|
62
|
+
getStore(): void;
|
|
63
|
+
resetSelectedStores(): void;
|
|
64
|
+
selectedStoresLabel(): string;
|
|
65
|
+
isAllStoresSelected(): boolean;
|
|
66
|
+
updateSelectedStores(): void;
|
|
67
|
+
toggleSelectAllLocations(event: any): void;
|
|
68
|
+
toggleSelectAllStores(event: Event): void;
|
|
69
|
+
updateSelectedLocations(): void;
|
|
70
|
+
toggleSelectAllGroups(event: any): void;
|
|
71
|
+
updateSelectedGroups(): void;
|
|
72
|
+
Reset(): void;
|
|
73
|
+
Apply(): void;
|
|
74
|
+
filterLocations(): void;
|
|
75
|
+
filterGroups(): void;
|
|
76
|
+
filterStores(): void;
|
|
77
|
+
closeDropdown(): void;
|
|
78
|
+
clickOutside(event: MouseEvent): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TraxHeaderComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TraxHeaderComponent, "lib-trax-header", never, {}, {}, never, never, false, never>;
|
|
81
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ConformationComponent {
|
|
4
|
+
private activeModal;
|
|
5
|
+
constructor(activeModal: NgbActiveModal);
|
|
6
|
+
cancel(): void;
|
|
7
|
+
onSubmit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConformationComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConformationComponent, "lib-conformation", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { GlobalStateService, PageInfoService } from 'tango-app-ui-global';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { NotificationService } from '../../../services/notification.service';
|
|
5
5
|
import { ToastService } from '../../../services/toast.service';
|
|
6
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class NotificationComponent implements OnInit {
|
|
8
|
+
export declare class NotificationComponent implements OnInit, OnDestroy {
|
|
8
9
|
private pageInfo;
|
|
9
10
|
gs: GlobalStateService;
|
|
10
11
|
private route;
|
|
@@ -12,10 +13,13 @@ export declare class NotificationComponent implements OnInit {
|
|
|
12
13
|
private cd;
|
|
13
14
|
private toast;
|
|
14
15
|
private router;
|
|
16
|
+
private modalService;
|
|
15
17
|
showalert: boolean;
|
|
16
18
|
showdownload: boolean;
|
|
17
19
|
loading: boolean;
|
|
18
20
|
noData: boolean;
|
|
21
|
+
downloadloading: boolean;
|
|
22
|
+
downloadnoData: boolean;
|
|
19
23
|
itemsPerPage: number;
|
|
20
24
|
currentPage: number;
|
|
21
25
|
totalItems: number;
|
|
@@ -31,15 +35,29 @@ export declare class NotificationComponent implements OnInit {
|
|
|
31
35
|
private readonly destroy$;
|
|
32
36
|
notification: any;
|
|
33
37
|
total: any;
|
|
34
|
-
|
|
38
|
+
downloads: any[];
|
|
39
|
+
headerData: any;
|
|
40
|
+
searchInput: any;
|
|
41
|
+
sortColumName: string;
|
|
42
|
+
sortDirection: any;
|
|
43
|
+
searchValue: string;
|
|
44
|
+
tabtype: any;
|
|
45
|
+
user_id: any;
|
|
46
|
+
private reloadInterval;
|
|
47
|
+
constructor(pageInfo: PageInfoService, gs: GlobalStateService, route: ActivatedRoute, service: NotificationService, cd: ChangeDetectorRef, toast: ToastService, router: Router, modalService: NgbModal);
|
|
35
48
|
ngOnInit(): void;
|
|
49
|
+
cancelDownload(data: any): void;
|
|
50
|
+
ngOnDestroy(): void;
|
|
36
51
|
setPageData(): void;
|
|
37
52
|
notificationList(): void;
|
|
38
53
|
updateNotification(data: any, btnDetails: any): void;
|
|
39
54
|
chooseManager(type: any): void;
|
|
55
|
+
setPaginationSizes(): void;
|
|
40
56
|
onPageChange(pageOffset: number): void;
|
|
41
57
|
onPageSizeChange(pageSize: number): void;
|
|
42
58
|
paginationSize(): number;
|
|
59
|
+
downloadmanagerList(): void;
|
|
60
|
+
downloadFile(record: any): void;
|
|
43
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
|
|
44
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "lib-notification", never, {}, {}, never, never, false, never>;
|
|
45
63
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./notification/notification.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
3
|
+
import * as i2 from "./conformation/conformation.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "./notification-routing.module";
|
|
6
|
+
import * as i5 from "../common/common-shared.module";
|
|
6
7
|
export declare class NotificationModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationModule, [typeof i1.NotificationComponent], [typeof
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationModule, [typeof i1.NotificationComponent, typeof i2.ConformationComponent], [typeof i3.CommonModule, typeof i4.NotificationRoutingModule, typeof i5.CommonSharedModule], never>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationModule>;
|
|
10
11
|
}
|
|
@@ -15,6 +15,7 @@ export declare class AuthService {
|
|
|
15
15
|
oldDashboardUrl: string;
|
|
16
16
|
dropDownTrigger: BehaviorSubject<null>;
|
|
17
17
|
trafficApiUrl: any;
|
|
18
|
+
traxUrl: any;
|
|
18
19
|
constructor(router: Router, gs: GlobalStateService, http: HttpClient);
|
|
19
20
|
handleError(res: any): Observable<never>;
|
|
20
21
|
getHeaders(): {
|
|
@@ -7,6 +7,7 @@ export declare class NotificationService {
|
|
|
7
7
|
private gs;
|
|
8
8
|
paymentSubscriptionApiUrl: any;
|
|
9
9
|
clientApiUrl: string;
|
|
10
|
+
traxUrl: any;
|
|
10
11
|
private reloadDataSubject;
|
|
11
12
|
reloadData$: Observable<boolean>;
|
|
12
13
|
clientId: BehaviorSubject<string>;
|
|
@@ -22,6 +23,8 @@ export declare class NotificationService {
|
|
|
22
23
|
updateRemind(_id: any): Observable<any>;
|
|
23
24
|
updateSubscription(data: any): Observable<any>;
|
|
24
25
|
trialApproved(data: any): Observable<any>;
|
|
26
|
+
getdownloadlist(data: any): Observable<any>;
|
|
27
|
+
cancelDownload(data: any): Observable<any>;
|
|
25
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
26
29
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
27
30
|
}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tango-app-ui-shared-intro.module-CAPPEqzI.mjs","sources":["../../../projects/tango-app-shared/src/lib/modules/intro/contact-support/contact-support.component.ts","../../../projects/tango-app-shared/src/lib/modules/intro/contact-support/contact-support.component.html","../../../projects/tango-app-shared/src/lib/modules/intro/lead-intro/lead-intro.component.ts","../../../projects/tango-app-shared/src/lib/modules/intro/lead-intro/lead-intro.component.html","../../../projects/tango-app-shared/src/lib/modules/intro/intro-routing.module.ts","../../../projects/tango-app-shared/src/lib/modules/intro/intro.module.ts"],"sourcesContent":["import { Component } from '@angular/core';\r\nimport { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';\r\n\r\n@Component({\r\n selector: 'lib-contact-support',\r\n templateUrl: './contact-support.component.html',\r\n styleUrl: './contact-support.component.scss'\r\n})\r\nexport class ContactSupportComponent {\r\n constructor(\r\n private activeModal: NgbActiveModal,\r\n ) {}\r\n\r\n accept(){\r\n this.activeModal.close('submit');\r\n }\r\n}\r\n","<div class=\"card p-0\">\r\n <div class=\"card-header border-0 pt-3\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"card-label ellipse1 header mb-2\">Contact Support</span>\r\n </h3>\r\n <div class=\"card-toolbar\">\r\n </div>\r\n </div>\r\n <div class=\"card-body pt-0 mh-60vh\">\r\n <div class=\"d-flex justify-content-between align-items-center pt-5\" >\r\n <div class=\"d-flex\">\r\n <div class=\"position-relative\">\r\n <div class=\"rounded-5 profile fw-semibold d-flex align-items-center justify-content-center\">CU</div>\r\n </div>\r\n <div class=\"d-grid mx-3\">\r\n <span class=\"headingtext fw-bold-600\"> Customer support </span>\r\n <span class=\"sub-header ellipse fw-bold-400\">hello@tangotech.co.in</span>\r\n </div>\r\n </div>\r\n <div class=\"contact fw-semibold\">\r\n <span>+91 6380909115</span>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"card-body pt-0\">\r\n <button (click)=\"accept()\" class=\"btn btn-default btn-primary mt-5 w-100\">\r\n Okay\r\n </button>\r\n </div>\r\n</div>","import { Component, OnDestroy, OnInit } from '@angular/core';\r\nimport { GlobalStateService, PageInfoService } from 'tango-app-ui-global';\r\nimport { Subject, takeUntil } from \"rxjs\";\r\nimport { NgbCarouselConfig, NgbModal } from '@ng-bootstrap/ng-bootstrap';\r\nimport { AuthService } from '../../../services/auth.service';\r\nimport { ContactSupportComponent } from '../contact-support/contact-support.component';\r\nimport dayjs from \"dayjs\";\r\n\r\n@Component({\r\n selector: 'lib-lead-intro',\r\n templateUrl: './lead-intro.component.html',\r\n styleUrl: './lead-intro.component.scss',\r\n providers: [NgbCarouselConfig],\r\n})\r\nexport class LeadIntroComponent implements OnDestroy, OnInit {\r\n productList: any = [];\r\n private readonly destroy$ = new Subject();\r\n trialDetails:any\r\n dayjs = dayjs\r\n\r\n\r\n\r\n constructor(private pageInfo: PageInfoService, public gs: GlobalStateService, config: NgbCarouselConfig, private modalService: NgbModal, private authService: AuthService) {\r\n this.gs.userAccess.pipe(takeUntil(this.destroy$)).subscribe((e) => {\r\n if (e && e?.userType === \"lead\") {\r\n const user = JSON.parse(localStorage.getItem('user-info') as string)\r\n this.authService.getLeadProducts(user.email).pipe(takeUntil(this.destroy$)).subscribe({\r\n next: (e) => {\r\n if(e?.data){\r\n this.productList = e.data?.planDetails?.product\r\n }\r\n\r\n }\r\n })\r\n } else if (e && e?.userType === \"client\") {\r\n const user = JSON.parse(localStorage.getItem('user-info') as string)\r\n\r\n this.authService.getClientProducts(user.clientId).pipe(takeUntil(this.destroy$)).subscribe({\r\n next: (e) => {\r\n if(e?.data){\r\n this.productList = e.data?.planDetails?.product?.map((product:any)=> product.productName) \r\n\r\n this.trialDetails = this.daysWithin14(e.data?.planDetails?.product[0]?.trialEndDate)\r\n }\r\n\r\n }\r\n })\r\n \r\n }\r\n })\r\n }\r\n\r\n daysWithin14(date: string) {\r\n const currentDate = dayjs();\r\n const givenDate = dayjs(date).add(2, 'day');\r\n \r\n let diff = givenDate.diff(currentDate, 'day');\r\n \r\n if (diff < 0) {\r\n diff = 0;\r\n }\r\n \r\n const percentageRemaining = Math.round(((14 - diff) / 14) * 100);\r\n \r\n return {\r\n daysRemaining: diff <= 14 ? diff : 0,\r\n percentageRemaining: diff <= 14 ? percentageRemaining : 100\r\n };\r\n }\r\n \r\n\r\n ngOnDestroy(): void {\r\n this.destroy$.next(true);\r\n this.destroy$.complete();\r\n }\r\n ngOnInit(): void {\r\n this.setPageData()\r\n }\r\n\r\n\r\n setPageData() {\r\n this.pageInfo.setTitle('Explore')\r\n this.pageInfo.setDescription('Explore your products while waiting for admin approval')\r\n this.pageInfo.setBreadcrumbs([\r\n { title: 'Explore', path: '/explore', isActive: false, isSeparator: false },\r\n { title: 'Explore', path: '/explore', isActive: false, isSeparator: true },\r\n ])\r\n }\r\n \r\n\r\n contactSupport() {\r\n this.modalService.open(ContactSupportComponent, {\r\n centered: true,\r\n size: \"md\",\r\n });\r\n }\r\n\r\n updateCircleChart(percentage: number): void {\r\n let id = 'progress-circle';\r\n let text = 'percentage-text';\r\n const progressCircle = document.getElementById(id);\r\n const percentageText = document.getElementById(text);\r\n if (progressCircle && percentageText) {\r\n const circumference = Math.PI * 2 * parseFloat(progressCircle.getAttribute('r')!);\r\n const dasharray = circumference;\r\n const dashoffset = circumference - (percentage / 100) * circumference;\r\n\r\n progressCircle.setAttribute('stroke-dasharray', dasharray.toString());\r\n progressCircle.setAttribute('stroke-dashoffset', dashoffset.toString());\r\n\r\n percentageText.textContent = `${percentage}%`;\r\n }\r\n }\r\n}","<div *ngIf=\"(gs.userAccess | async)?.userType === 'lead'\" class=\"approvalcard mt-4 mb-5\">\r\n <div class=\"d-flex align-items-center justify-content-between\">\r\n <div class=\"d-flex align-items-center\">\r\n <div class=\"symbol symbol-30px me-5\"><span>\r\n <img src=\"./assets/tango/custompopup-Icons/danger-icon.svg\" alt=\"\">\r\n </span>\r\n </div>\r\n <div class=\"approvaltext align-items-start justify-content-between\">\r\n Your Approval is in pending !\r\n <div class=\"approvesub d-block\">Can’t find the answer you’re looking for? Please chat to our friendly\r\n team.</div>\r\n </div>\r\n </div>\r\n <div class=\"d-flex align-items-center\">\r\n <a (click)=\"contactSupport()\" type=\"button\" tabindex=\"0\"\r\n class=\"btn btn-primary px-4 ng-star-inserted\"><span>Contact Us\r\n </span></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"(gs.userAccess | async)?.userType === 'client'\" class=\"toastcard mb-5\">\r\n <div class=\"d-flex align-items-center justify-content-between\">\r\n <div class=\"d-flex align-items-center\">\r\n <div class=\"symbol symbol-30px me-5\"><span>\r\n <img src=\"./assets/tango/custompopup-Icons/danger-alert-primary.svg\" alt=\"\">\r\n </span>\r\n </div>\r\n <span class=\"toasttext d-block\">Your trial has started. You have {{trialDetails?.daysRemaining}} days left\r\n on your free trial</span>\r\n </div>\r\n <div class=\"row mt-1\">\r\n <div class=\"d-flex align-items-center\">\r\n <div><svg id=\"circle-chart\" width=\"94\" height=\"70\" viewBox=\"0 0 100 100\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n\r\n <circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"none\" stroke=\"#f0f0f0\" stroke-width=\"8\">\r\n </circle>\r\n\r\n <circle id=\"progress-circle\" cx=\"50\" cy=\"50\" r=\"40\" fill=\"none\" stroke=\"#007bff\"\r\n stroke-width=\"8\" stroke-dasharray=\"251.2\"\r\n [attr.stroke-dashoffset]=\"updateCircleChart(trialDetails?.percentageRemaining)\">\r\n </circle>\r\n\r\n <text id=\"percentage-text\" x=\"50\" y=\"54\" class=\"producttext\" text-anchor=\"middle\"\r\n fill=\"#333333\">{{trialDetails?.percentageRemaining}}%</text>\r\n </svg></div>\r\n <div class=\"align-items-start justify-content-between daysleft my-2\">\r\n {{trialDetails?.daysRemaining}} Days Left\r\n <div class=\"align-items-start trail\">\r\n Free trial</div>\r\n </div>\r\n </div>\r\n <div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<ngb-carousel #carousel [interval]=\"4000\" [pauseOnHover]=\"true\">\r\n <ng-container *ngFor=\"let item of productList\">\r\n <ng-container *ngIf=\"item === 'tangoTrax'\">\r\n <ng-template ngbSlide>\r\n <div class=\"card w-100\">\r\n <div class=\"row p-20\">\r\n <div class=\"col-lg-4 col-sm-12\">\r\n <img class=\"cardimg\" src=\"./assets/tango/Images/tangoTrax.png\" alt=\"Tango logo\" />\r\n </div>\r\n <div class=\"col-lg-1\">\r\n </div>\r\n <div class=\"col-lg-7\">\r\n <div class=\"heading mb-2\">Welcome to Trax! 👋\r\n </div>\r\n <span class=\"sub\">\r\n Revolutionising Operations with AI powered SOPs\r\n </span>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Onboard Stores\r\n </span>\r\n <div class=\"align-items-start card-sub mx-14\">Effortlessly add and manage your\r\n stores,ensuring a smooth onboarding process.\r\n </div>\r\n </h3>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Customize SOP Checklists</span>\r\n <div class=\"align-items-start card-sub mx-14\">Easily create and configure SOP\r\n checklists\r\n tailored to your specific needs.</div>\r\n </h3>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Gain Insights Dashboard </span>\r\n <div class=\"align-items-start card-sub mx-14\">Generate detailed reports and\r\n visualize\r\n checklist compliance data through an intuitive dashboard, enabling you to make\r\n informed decisions cand enhance operational efficiency.\r\n </div>\r\n </h3>\r\n </div>\r\n <a *ngIf=\"(gs.userAccess | async)?.userType === 'client'\" routerLink=\"/manage\" type=\"button\"\r\n tabindex=\"0\" class=\"btn btn-primary px-4 mt-2 cursor-pointer ng-star-inserted\"><span>Get\r\n Started\r\n </span></a>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"item === 'tangoZone'\">\r\n <ng-template ngbSlide>\r\n <div class=\"card w-100\">\r\n <div class=\"row p-20\">\r\n <div class=\"col-lg-4 col-sm-12\">\r\n <img class=\"cardimg\" src=\"./assets/tango/Images/tangoZone.png\" alt=\"Tango logo\" />\r\n </div>\r\n <div class=\"col-lg-1\">\r\n </div>\r\n <div class=\"col-lg-7\">\r\n <div class=\"heading mb-2\">Welcome to Zone! 👋\r\n </div>\r\n <span class=\"sub\">\r\n Identify Hot Spots & Dead Zones of the store\r\n </span>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Choose Stores\r\n </span>\r\n <div class=\"align-items-start card-sub mx-14\">Select Stores where you want to\r\n identify\r\n the\r\n hot spots and dead zones\r\n </div>\r\n </h3>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Tag Zones </span>\r\n <div class=\"align-items-start card-sub mx-14\">Tag different sections or zones within\r\n each\r\n store and label them according to your operational needs.</div>\r\n </h3>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Gain Insights </span>\r\n <div class=\"align-items-start card-sub mx-14\">Generate detailed reports and\r\n visualize\r\n zone-specific data such as traffic, dwell time, demographics, and heatmaps.\r\n </div>\r\n </h3>\r\n </div>\r\n <a *ngIf=\"(gs.userAccess | async)?.userType === 'client'\" type=\"button\" routerLink=\"/manage\"\r\n tabindex=\"0\" class=\"btn btn-primary px-4 mt-2 cursor-pointer ng-star-inserted\"><span>Get\r\n Started\r\n </span></a>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"item === 'tangoTraffic'\">\r\n <ng-template ngbSlide>\r\n <div class=\"card w-100\">\r\n <div class=\"row p-20\">\r\n <div class=\"col-lg-4 col-sm-12\">\r\n <img class=\"cardimg\" src=\"./assets/tango/Images/tangoTraffic.png\" alt=\"Tango logo\" />\r\n </div>\r\n <div class=\"col-lg-1\">\r\n </div>\r\n <div class=\"col-lg-7\">\r\n <div class=\"heading mb-2\">Welcome to Traffic! 👋\r\n </div>\r\n <span class=\"sub\">\r\n Measure In-Store Traffic & Shopper Insights\r\n </span>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Onboard Stores\r\n </span>\r\n <div class=\"align-items-start card-sub mx-14\">Easily add and manage stores with just\r\n a\r\n few\r\n clicks on the dashboard\r\n </div>\r\n </h3>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Visualise Data </span>\r\n <div class=\"align-items-start card-sub mx-14\">View intelligent insights including\r\n traffic\r\n patterns, dwell times, demographics enabling you to make informed decisions.\r\n </div>\r\n </h3>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h3 class=\"card-title align-items-start flex-column mb-4\">\r\n <span><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\"\r\n stroke-width=\"4\" />\r\n <path\r\n d=\"M18.6667 11.334L12 19.334H18L17.3333 24.6673L24 16.6673H18L18.6667 11.334Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <span class=\"card-label mx-3\">Manage Tickets </span>\r\n <div class=\"align-items-start card-sub mx-14\">Easily track and resolve your support\r\n tickets\r\n for prompt and efficient service.\r\n </div>\r\n </h3>\r\n </div>\r\n <a *ngIf=\"(gs.userAccess | async)?.userType === 'client'\" type=\"button\" routerLink=\"/manage\"\r\n tabindex=\"0\" class=\"btn btn-primary px-4 mt-2 cursor-pointer ng-star-inserted\"><span>Get\r\n Started\r\n </span></a>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </ng-container>\r\n\r\n </ng-container>\r\n\r\n\r\n</ngb-carousel>","import { NgModule } from '@angular/core';\r\nimport { RouterModule, Routes } from '@angular/router';\r\nimport { LeadIntroComponent } from './lead-intro/lead-intro.component';\r\n\r\nconst routes: Routes = [\r\n {\r\n path:'',\r\n component:LeadIntroComponent\r\n }\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forChild(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class IntroRoutingModule { }\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n\r\nimport { IntroRoutingModule } from './intro-routing.module';\r\nimport { LeadIntroComponent } from './lead-intro/lead-intro.component';\r\nimport {NgbCarouselModule } from '@ng-bootstrap/ng-bootstrap';\r\nimport { ContactSupportComponent } from './contact-support/contact-support.component';\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n LeadIntroComponent,\r\n ContactSupportComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n IntroRoutingModule,\r\n NgbCarouselModule\r\n ]\r\n})\r\nexport class IntroModule { }\r\n"],"names":["i1","i3.AuthService","i4","i5"],"mappings":"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"}
|