tango-app-ui-auth 3.0.13-dev → 3.0.14-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.
@@ -8,10 +8,11 @@ declare global {
8
8
  }
9
9
  export declare class CalendlyModalComponent implements OnInit, OnDestroy {
10
10
  private modalRef;
11
+ userData: any;
11
12
  constructor(modalRef: NgbActiveModal);
12
13
  ngOnInit(): void;
13
14
  ngOnDestroy(): void;
14
15
  messageHandler(event: MessageEvent): void;
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendlyModalComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<CalendlyModalComponent, "lib-calendly-modal", never, {}, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendlyModalComponent, "lib-calendly-modal", never, { "userData": { "alias": "userData"; "required": false; }; }, {}, never, never, false, never>;
17
18
  }
@@ -3,6 +3,7 @@ import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
3
3
  import { Subscription } from 'rxjs';
4
4
  import { AuthService } from '../../../../services/auth.service';
5
5
  import { ActivatedRoute, Router } from '@angular/router';
6
+ import { GlobalStateService, ToastService } from 'tango-app-ui-shared';
6
7
  import * as i0 from "@angular/core";
7
8
  interface InputStyles {
8
9
  [key: string]: string;
@@ -13,10 +14,13 @@ export declare class Step3Component implements OnInit, OnDestroy {
13
14
  private router;
14
15
  private route;
15
16
  private cd;
17
+ private gs;
18
+ private toastService;
16
19
  inputValue: string;
17
20
  isActive: boolean;
18
21
  isHovered: boolean;
19
22
  isDisabled: boolean;
23
+ authlocalStorageToken: string;
20
24
  onMouseEnter(): void;
21
25
  onMouseLeave(): void;
22
26
  onInputChange(value: string): void;
@@ -40,7 +44,7 @@ export declare class Step3Component implements OnInit, OnDestroy {
40
44
  returnUrl: any;
41
45
  invalidOtp: boolean;
42
46
  subscriptions: Subscription[];
43
- constructor(modalService: NgbModal, authService: AuthService, router: Router, route: ActivatedRoute, cd: ChangeDetectorRef);
47
+ constructor(modalService: NgbModal, authService: AuthService, router: Router, route: ActivatedRoute, cd: ChangeDetectorRef, gs: GlobalStateService, toastService: ToastService);
44
48
  ngOnDestroy(): void;
45
49
  ngOnInit(): void;
46
50
  updateterms(evt: any): void;
@@ -49,6 +53,7 @@ export declare class Step3Component implements OnInit, OnDestroy {
49
53
  otpsubmit(): void;
50
54
  onOtpChange(event: any): void;
51
55
  getTrueKeys(obj: any): string[];
56
+ userProfile(): void;
52
57
  static ɵfac: i0.ɵɵFactoryDeclaration<Step3Component, never>;
53
58
  static ɵcmp: i0.ɵɵComponentDeclaration<Step3Component, "lib-step3", never, {}, {}, never, never, false, never>;
54
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-auth",
3
- "version": "3.0.13-dev",
3
+ "version": "3.0.14-dev",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"