tango-app-ui-auth 3.0.8 → 3.0.10-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.
- package/esm2022/lib/components/tango-auth-login/tango-auth-login.component.mjs +15 -9
- package/esm2022/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.mjs +17 -0
- package/esm2022/lib/components/tango-auth-signup/step/step1/step1.component.mjs +6 -6
- package/esm2022/lib/components/tango-auth-signup/step/step2/step2.component.mjs +17 -4
- package/esm2022/lib/components/tango-auth-signup/step/step3/step3.component.mjs +34 -5
- package/esm2022/lib/services/auth.service.mjs +4 -1
- package/esm2022/lib/tango-auth.module.mjs +5 -2
- package/fesm2022/tango-app-ui-auth.mjs +88 -21
- package/fesm2022/tango-app-ui-auth.mjs.map +1 -1
- package/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.d.ts +13 -0
- package/lib/components/tango-auth-signup/step/step2/step2.component.d.ts +1 -0
- package/lib/services/auth.service.d.ts +1 -0
- package/lib/tango-auth.module.d.ts +6 -5
- package/package.json +1 -1
@@ -0,0 +1,13 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export {};
|
4
|
+
declare global {
|
5
|
+
interface Window {
|
6
|
+
Calendly: any;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
export declare class CalendlyModalComponent implements OnInit {
|
10
|
+
ngOnInit(): void;
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendlyModalComponent, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendlyModalComponent, "lib-calendly-modal", never, {}, {}, never, never, false, never>;
|
13
|
+
}
|
@@ -49,6 +49,7 @@ export declare class Step2Component implements OnDestroy, OnInit {
|
|
49
49
|
submitvalue(): void;
|
50
50
|
close(): void;
|
51
51
|
continuesignup(): void;
|
52
|
+
openCalendlyModal(): void;
|
52
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<Step2Component, never>;
|
53
54
|
static ɵcmp: i0.ɵɵComponentDeclaration<Step2Component, "lib-step2", never, {}, {}, never, never, false, never>;
|
54
55
|
}
|
@@ -29,6 +29,7 @@ export declare class AuthService {
|
|
29
29
|
getCountryCodes(): Observable<any>;
|
30
30
|
login(data: any): Observable<any>;
|
31
31
|
userProfileDet(): Observable<any>;
|
32
|
+
getAllCountries(): Observable<any>;
|
32
33
|
handleError(res: any): Observable<never>;
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
34
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
@@ -9,12 +9,13 @@ import * as i7 from "./components/tango-auth-signup/step/step3/step3.component";
|
|
9
9
|
import * as i8 from "./components/tango-auth-signup/vertical/vertical.component";
|
10
10
|
import * as i9 from "./components/tango-auth-signup/wizards/wizards.component";
|
11
11
|
import * as i10 from "./components/tango-auth-signup/step/modal-content/modal-content.component";
|
12
|
-
import * as i11 from "
|
13
|
-
import * as i12 from "
|
14
|
-
import * as i13 from "
|
15
|
-
import * as i14 from "
|
12
|
+
import * as i11 from "./components/tango-auth-signup/step/calendly-modal/calendly-modal.component";
|
13
|
+
import * as i12 from "@angular/common";
|
14
|
+
import * as i13 from "./tango-auth-routing.module";
|
15
|
+
import * as i14 from "ng-otp-input";
|
16
|
+
import * as i15 from "@angular/forms";
|
16
17
|
export declare class TangoAuthModule {
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoAuthModule, never>;
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAuthModule, [typeof i1.TangoAuthComponent, typeof i2.TangoAuthLoginComponent, typeof i3.TangoAuthSignupComponent, typeof i4.TangoAuthForgotPasswordComponent, typeof i5.Step1Component, typeof i6.Step2Component, typeof i7.Step3Component, typeof i8.VerticalComponent, typeof i9.WizardsComponent, typeof i10.ModalContentComponent], [typeof
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAuthModule, [typeof i1.TangoAuthComponent, typeof i2.TangoAuthLoginComponent, typeof i3.TangoAuthSignupComponent, typeof i4.TangoAuthForgotPasswordComponent, typeof i5.Step1Component, typeof i6.Step2Component, typeof i7.Step3Component, typeof i8.VerticalComponent, typeof i9.WizardsComponent, typeof i10.ModalContentComponent, typeof i11.CalendlyModalComponent], [typeof i12.CommonModule, typeof i13.TangoAuthRoutingModule, typeof i14.NgOtpInputModule, typeof i15.ReactiveFormsModule, typeof i15.FormsModule], never>;
|
19
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<TangoAuthModule>;
|
20
21
|
}
|