tango-app-ui-auth 3.0.2 → 3.0.3

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.
@@ -1,9 +1,10 @@
1
- import { ChangeDetectorRef } from '@angular/core';
1
+ import { ChangeDetectorRef, OnDestroy } from '@angular/core';
2
2
  import { ConversionService } from '../services/conversion.service';
3
3
  import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
4
4
  import { AuthService } from '../../../../services/auth.service';
5
+ import { Subscription } from 'rxjs';
5
6
  import * as i0 from "@angular/core";
6
- export declare class Step1Component {
7
+ export declare class Step1Component implements OnDestroy {
7
8
  private setterservice;
8
9
  private fb;
9
10
  private authService;
@@ -14,7 +15,9 @@ export declare class Step1Component {
14
15
  isClientNameTaken: any;
15
16
  isEmailTaken: any;
16
17
  isMobileTaken: any;
18
+ subscriptions: Subscription[];
17
19
  constructor(setterservice: ConversionService, fb: FormBuilder, authService: AuthService, cd: ChangeDetectorRef);
20
+ ngOnDestroy(): void;
18
21
  initForm(): void;
19
22
  validateAreEqual(fieldControl: AbstractControl<any>): {
20
23
  NotEqual: boolean;
@@ -22,6 +25,7 @@ export declare class Step1Component {
22
25
  checkPasswordStrength(val: string): Promise<string>;
23
26
  onPasswordChange(event: any): Promise<void>;
24
27
  onConfirmPasswordChange(event: any): Promise<void>;
28
+ reinitializePasswordValidation(password: string, confirmPassword: string): Promise<void>;
25
29
  onClientNameBlur(): void;
26
30
  onEmailBlur(): void;
27
31
  onMobileNumberBlur(): void;
@@ -1,10 +1,11 @@
1
- import { ChangeDetectorRef } from '@angular/core';
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
3
3
  import { ConversionService } from '../services/conversion.service';
4
4
  import { AuthService } from '../../../../services/auth.service';
5
5
  import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
6
+ import { Subscription } from 'rxjs';
6
7
  import * as i0 from "@angular/core";
7
- export declare class Step2Component {
8
+ export declare class Step2Component implements OnDestroy, OnInit {
8
9
  modalService: NgbModal;
9
10
  private setterservice;
10
11
  private authservice;
@@ -32,7 +33,11 @@ export declare class Step2Component {
32
33
  callbackDescription: FormControl<any>;
33
34
  aboutFormData: any;
34
35
  pricingFormData: any;
36
+ subscriptions: Subscription[];
37
+ selectedFeetArea: any;
35
38
  constructor(modalService: NgbModal, setterservice: ConversionService, authservice: AuthService, fb: FormBuilder, cd: ChangeDetectorRef);
39
+ ngOnInit(): void;
40
+ ngOnDestroy(): void;
36
41
  initForm(): void;
37
42
  activeStoreCount(data: any): void;
38
43
  activefeatArea(data: any): void;
@@ -44,7 +49,6 @@ export declare class Step2Component {
44
49
  submitvalue(): void;
45
50
  close(): void;
46
51
  continuesignup(): void;
47
- getTrueKeys(obj: any): string[];
48
52
  static ɵfac: i0.ɵɵFactoryDeclaration<Step2Component, never>;
49
53
  static ɵcmp: i0.ɵɵComponentDeclaration<Step2Component, "lib-step2", never, {}, {}, never, never, false, never>;
50
54
  }
@@ -1,9 +1,10 @@
1
- import { ChangeDetectorRef, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
3
+ import { Subscription } from 'rxjs';
3
4
  import { AuthService } from '../../../../services/auth.service';
4
5
  import { ActivatedRoute, Router } from '@angular/router';
5
6
  import * as i0 from "@angular/core";
6
- export declare class Step3Component implements OnInit {
7
+ export declare class Step3Component implements OnInit, OnDestroy {
7
8
  modalService: NgbModal;
8
9
  private authService;
9
10
  private router;
@@ -27,13 +28,16 @@ export declare class Step3Component implements OnInit {
27
28
  pricingFormData: any;
28
29
  returnUrl: any;
29
30
  invalidOtp: boolean;
31
+ subscriptions: Subscription[];
30
32
  constructor(modalService: NgbModal, authService: AuthService, router: Router, route: ActivatedRoute, cd: ChangeDetectorRef);
33
+ ngOnDestroy(): void;
31
34
  ngOnInit(): void;
32
35
  updateterms(evt: any): void;
33
36
  enterpriseactivate(): void;
34
37
  resendOTP(): void;
35
38
  otpsubmit(): void;
36
39
  onOtpChange(event: any): void;
40
+ getTrueKeys(obj: any): string[];
37
41
  static ɵfac: i0.ɵɵFactoryDeclaration<Step3Component, never>;
38
42
  static ɵcmp: i0.ɵɵComponentDeclaration<Step3Component, "lib-step3", never, {}, {}, never, never, false, never>;
39
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-auth",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"