tango-app-ui-ticket-user 3.0.2-dev → 3.0.4-dev

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 (25) hide show
  1. package/esm2022/lib/components/contact-details/contact-details.component.mjs +8 -7
  2. package/esm2022/lib/components/edge-cameraview/edge-cameraview.component.mjs +13 -10
  3. package/esm2022/lib/components/edgeapp-log/edgeapp-log.component.mjs +35 -9
  4. package/esm2022/lib/components/edit-details/edit-details.component.mjs +3 -3
  5. package/esm2022/lib/components/infratickets/infratickets.component.mjs +8 -7
  6. package/esm2022/lib/components/store-activity/store-activity.component.mjs +45 -58
  7. package/esm2022/lib/components/store-info/store-info.component.mjs +8 -6
  8. package/esm2022/lib/components/takeremote/takeremote.component.mjs +6 -6
  9. package/esm2022/lib/components/tango-ticket-users/tango-ticket-users.component.mjs +5 -5
  10. package/esm2022/lib/components/tickets/tickets.component.mjs +27 -18
  11. package/esm2022/lib/services/data.service.mjs +3 -3
  12. package/esm2022/lib/services/ticket-infra.service.mjs +5 -5
  13. package/esm2022/lib/tango-ticket-users-routing.module.mjs +4 -4
  14. package/esm2022/lib/tango-ticket-users.module.mjs +4 -4
  15. package/fesm2022/tango-app-ui-ticket-user.mjs +157 -132
  16. package/fesm2022/tango-app-ui-ticket-user.mjs.map +1 -1
  17. package/lib/components/contact-details/contact-details.component.d.ts +2 -2
  18. package/lib/components/edge-cameraview/edge-cameraview.component.d.ts +5 -4
  19. package/lib/components/edgeapp-log/edgeapp-log.component.d.ts +5 -0
  20. package/lib/components/infratickets/infratickets.component.d.ts +1 -1
  21. package/lib/components/store-activity/store-activity.component.d.ts +4 -8
  22. package/lib/components/tango-ticket-users/tango-ticket-users.component.d.ts +1 -1
  23. package/lib/components/tickets/tickets.component.d.ts +3 -1
  24. package/lib/services/ticket-infra.service.d.ts +1 -1
  25. package/package.json +1 -1
@@ -14,7 +14,7 @@ export declare class ContactDetailsComponent implements OnInit {
14
14
  spocDetials: any;
15
15
  limit: number;
16
16
  offset: number;
17
- data: any;
17
+ value: any;
18
18
  constructor(modalService: NgbModal, activeModal: NgbActiveModal, service: TicketsService, cd: ChangeDetectorRef, toast: ToastService);
19
19
  ngOnInit(): void;
20
20
  getSpocLog(): void;
@@ -24,5 +24,5 @@ export declare class ContactDetailsComponent implements OnInit {
24
24
  deleteContact(data: any): void;
25
25
  closeModal(): void;
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "lib-contact-details", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "lib-contact-details", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
28
28
  }
@@ -1,16 +1,17 @@
1
- import { ChangeDetectorRef } from '@angular/core';
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
2
  import { TicketsService } from '../../services/ticket-infra.service';
3
3
  import * as i0 from "@angular/core";
4
- export declare class EdgeCameraviewComponent {
4
+ export declare class EdgeCameraviewComponent implements OnInit {
5
5
  private infraService;
6
6
  private cd;
7
7
  loading: boolean;
8
8
  noData: boolean;
9
9
  viewEdgeAppLogList: any;
10
10
  currentDate: Date;
11
- data: any;
11
+ value: any;
12
12
  constructor(infraService: TicketsService, cd: ChangeDetectorRef);
13
+ ngOnInit(): void;
13
14
  getViewEdgeAppLog(): void;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<EdgeCameraviewComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<EdgeCameraviewComponent, "lib-edge-cameraview", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<EdgeCameraviewComponent, "lib-edge-cameraview", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
16
17
  }
@@ -2,6 +2,8 @@ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
2
  import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
3
3
  import { TicketsService } from '../../services/ticket-infra.service';
4
4
  import { DataService } from '../../services/data.service';
5
+ import dayjs from 'dayjs';
6
+ import 'dayjs/locale/en';
5
7
  import * as i0 from "@angular/core";
6
8
  export declare class EdgeappLogComponent implements OnInit {
7
9
  private modalService;
@@ -12,9 +14,12 @@ export declare class EdgeappLogComponent implements OnInit {
12
14
  loading: boolean;
13
15
  getEdgeAppLoveValue: any;
14
16
  storeId: any;
17
+ selectedDateRange: any;
18
+ dayjs: typeof dayjs;
15
19
  constructor(modalService: NgbModal, infraService: TicketsService, cd: ChangeDetectorRef, dataservice: DataService);
16
20
  ngOnInit(): void;
17
21
  getEdgeAppLogTable(): void;
22
+ datechange(event: any): void;
18
23
  edgeAppExportasXlsx(): void;
19
24
  openCameraView(data: any): void;
20
25
  static ɵfac: i0.ɵɵFactoryDeclaration<EdgeappLogComponent, never>;
@@ -4,7 +4,7 @@ import { Router } from '@angular/router';
4
4
  import { TicketsService } from '../../services/ticket-infra.service';
5
5
  import { DataService } from '../../services/data.service';
6
6
  import { ToastService } from 'tango-app-ui-shared';
7
- import { GlobalStateService } from 'tango-app-ui-shared';
7
+ import { GlobalStateService } from 'tango-app-ui-global';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class InfraticketsComponent implements OnInit, OnDestroy {
10
10
  private route;
@@ -1,10 +1,8 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { ChangeDetectorRef } from '@angular/core';
3
- import dayjs from 'dayjs';
4
- import 'dayjs/locale/en';
5
3
  import { DataService } from '../../services/data.service';
6
4
  import { TicketsService } from '../../services/ticket-infra.service';
7
- import { GlobalStateService } from 'tango-app-ui-shared';
5
+ import { GlobalStateService } from 'tango-app-ui-global';
8
6
  import * as i0 from "@angular/core";
9
7
  export declare class StoreActivityComponent implements OnInit, OnDestroy {
10
8
  private service;
@@ -19,7 +17,7 @@ export declare class StoreActivityComponent implements OnInit, OnDestroy {
19
17
  noData: boolean;
20
18
  loading: boolean;
21
19
  storeTicket: any;
22
- viewTickets: any;
20
+ ticketInfo: any;
23
21
  resolvedIssue: boolean;
24
22
  issueObject: any[];
25
23
  dropDown: boolean;
@@ -28,12 +26,11 @@ export declare class StoreActivityComponent implements OnInit, OnDestroy {
28
26
  ticketId: any;
29
27
  dateRangeFilter: any;
30
28
  ticketCard: any;
31
- viewTicketList: any;
29
+ viewTicketData: any;
32
30
  headerFilter: any;
33
31
  user: any;
34
32
  private readonly destroy$;
35
33
  storeId: any;
36
- dayjs: typeof dayjs;
37
34
  constructor(service: TicketsService, dataservice: DataService, cd: ChangeDetectorRef, gs: GlobalStateService);
38
35
  onClick(event: MouseEvent): void;
39
36
  ngOnInit(): void;
@@ -41,13 +38,12 @@ export declare class StoreActivityComponent implements OnInit, OnDestroy {
41
38
  storeTicketcard(): void;
42
39
  storeTicketList(): void;
43
40
  viewTicket(): void;
41
+ getRelativeTime(timestamp: string): string;
44
42
  exportStoreListasXlsx(): void;
45
43
  ShowTicket(index: any, value: any): void;
46
44
  FilterIssue(value: any): void;
47
45
  selectItem(value: any): void;
48
46
  openDropdown(event: MouseEvent): void;
49
- ranges: any;
50
- datechange(event: any): void;
51
47
  static ɵfac: i0.ɵɵFactoryDeclaration<StoreActivityComponent, never>;
52
48
  static ɵcmp: i0.ɵɵComponentDeclaration<StoreActivityComponent, "lib-store-activity", never, { "storeId": { "alias": "storeId"; "required": false; }; }, {}, never, never, false, never>;
53
49
  }
@@ -1,6 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ActivatedRoute } from '@angular/router';
3
- import { PageInfoService } from 'tango-app-ui-metronics';
3
+ import { PageInfoService } from 'tango-app-ui-global';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class TangoTicketUsersComponent implements OnInit {
6
6
  private pageInfo;
@@ -4,7 +4,7 @@ import { Router } from '@angular/router';
4
4
  import { ActivatedRoute } from '@angular/router';
5
5
  import { ToastService } from 'tango-app-ui-shared';
6
6
  import { TicketsService } from '../../services/ticket-infra.service';
7
- import { GlobalStateService } from 'tango-app-ui-shared';
7
+ import { GlobalStateService } from 'tango-app-ui-global';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class TicketsComponent implements OnInit, OnDestroy {
10
10
  private modalService;
@@ -57,6 +57,7 @@ export declare class TicketsComponent implements OnInit, OnDestroy {
57
57
  storeDropDown: boolean;
58
58
  selectedOption: any;
59
59
  Hibernation: any;
60
+ clientId: any;
60
61
  constructor(modalService: NgbModal, router: Router, service: TicketsService, cd: ChangeDetectorRef, route: ActivatedRoute, toastService: ToastService, gs: GlobalStateService);
61
62
  onClick(event: MouseEvent): void;
62
63
  ngOnInit(): void;
@@ -77,6 +78,7 @@ export declare class TicketsComponent implements OnInit, OnDestroy {
77
78
  proceddImage(value: any): void;
78
79
  SelectedTabs(value: any): void;
79
80
  toggleCheckbox(index: number): void;
81
+ toggleRadiobox(others: any): void;
80
82
  decreseCount(): any;
81
83
  increaseCount(): any;
82
84
  openContact(): void;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { GlobalStateService } from 'tango-app-ui-shared';
3
+ import { GlobalStateService } from 'tango-app-ui-global';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class TicketsService {
6
6
  private http;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-ticket-user",
3
- "version": "3.0.2-dev",
3
+ "version": "3.0.4-dev",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"