tango-app-ui-auth 3.1.7-dev → 3.3.0-alpha.0
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/components/tango-auth/tango-auth.component.mjs +4 -4
- package/esm2022/lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component.mjs +4 -4
- package/esm2022/lib/components/tango-auth-login/tango-auth-login.component.mjs +5 -5
- package/esm2022/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.mjs +4 -4
- package/esm2022/lib/components/tango-auth-signup/step/modal-content/modal-content.component.mjs +5 -5
- package/esm2022/lib/components/tango-auth-signup/step/services/conversion.service.mjs +4 -4
- package/esm2022/lib/components/tango-auth-signup/step/step1/step1.component.mjs +11 -5
- package/esm2022/lib/components/tango-auth-signup/step/step2/step2.component.mjs +26 -10
- package/esm2022/lib/components/tango-auth-signup/step/step3/step3.component.mjs +29 -9
- package/esm2022/lib/components/tango-auth-signup/tango-auth-signup.component.mjs +4 -4
- package/esm2022/lib/components/tango-auth-signup/vertical/vertical.component.mjs +4 -4
- package/esm2022/lib/guards/auth.guard.mjs +4 -4
- package/esm2022/lib/services/auth.service.mjs +4 -4
- package/esm2022/lib/tango-auth-routing.module.mjs +5 -5
- package/esm2022/lib/tango-auth.module.mjs +5 -5
- package/fesm2022/tango-app-ui-auth.mjs +101 -60
- package/fesm2022/tango-app-ui-auth.mjs.map +1 -1
- package/lib/components/tango-auth-signup/step/step2/step2.component.d.ts +1 -0
- package/lib/components/tango-auth-signup/step/step3/step3.component.d.ts +7 -1
- package/package.json +1 -1
@@ -57,6 +57,7 @@ export declare class Step2Component implements OnDestroy, OnInit {
|
|
57
57
|
getPricingData(): void;
|
58
58
|
getTrueKeys(obj: any): string[];
|
59
59
|
onPriceChange(): void;
|
60
|
+
checkIfAtleastOneSelected(product: string): boolean;
|
60
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<Step2Component, never>;
|
61
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<Step2Component, "lib-step2", never, {}, {}, never, never, false, never>;
|
62
63
|
}
|
@@ -5,6 +5,7 @@ import { AuthService } from '../../../../services/auth.service';
|
|
5
5
|
import { ActivatedRoute, Router } from '@angular/router';
|
6
6
|
import { GlobalStateService } from 'tango-app-ui-global';
|
7
7
|
import { ToastService } from 'tango-app-ui-shared';
|
8
|
+
import { ConversionService } from '../services/conversion.service';
|
8
9
|
import * as i0 from "@angular/core";
|
9
10
|
interface InputStyles {
|
10
11
|
[key: string]: string;
|
@@ -17,11 +18,13 @@ export declare class Step3Component implements OnInit, OnDestroy {
|
|
17
18
|
private cd;
|
18
19
|
private gs;
|
19
20
|
private toastService;
|
21
|
+
private setterservice;
|
20
22
|
inputValue: string;
|
21
23
|
isActive: boolean;
|
22
24
|
isHovered: boolean;
|
23
25
|
isDisabled: boolean;
|
24
26
|
authlocalStorageToken: string;
|
27
|
+
enableAgree: boolean;
|
25
28
|
onMouseEnter(): void;
|
26
29
|
onMouseLeave(): void;
|
27
30
|
onInputChange(value: string): void;
|
@@ -45,7 +48,7 @@ export declare class Step3Component implements OnInit, OnDestroy {
|
|
45
48
|
returnUrl: any;
|
46
49
|
invalidOtp: boolean;
|
47
50
|
subscriptions: Subscription[];
|
48
|
-
constructor(modalService: NgbModal, authService: AuthService, router: Router, route: ActivatedRoute, cd: ChangeDetectorRef, gs: GlobalStateService, toastService: ToastService);
|
51
|
+
constructor(modalService: NgbModal, authService: AuthService, router: Router, route: ActivatedRoute, cd: ChangeDetectorRef, gs: GlobalStateService, toastService: ToastService, setterservice: ConversionService);
|
49
52
|
ngOnDestroy(): void;
|
50
53
|
ngOnInit(): void;
|
51
54
|
updateterms(evt: any): void;
|
@@ -55,6 +58,9 @@ export declare class Step3Component implements OnInit, OnDestroy {
|
|
55
58
|
onOtpChange(event: any): void;
|
56
59
|
getTrueKeys(obj: any): string[];
|
57
60
|
userProfile(): void;
|
61
|
+
prevStep(): void;
|
62
|
+
onScroll(event: any): void;
|
63
|
+
closeModal(): void;
|
58
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<Step3Component, never>;
|
59
65
|
static ɵcmp: i0.ɵɵComponentDeclaration<Step3Component, "lib-step3", never, {}, {}, never, never, false, never>;
|
60
66
|
}
|