tango-app-ui-auth 3.0.12-dev → 3.0.13-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-signup/step/calendly-modal/calendly-modal.component.mjs +17 -3
- package/esm2022/lib/components/tango-auth-signup/step/step2/step2.component.mjs +7 -8
- package/esm2022/lib/services/auth.service.mjs +2 -2
- package/fesm2022/tango-app-ui-auth.mjs +22 -10
- package/fesm2022/tango-app-ui-auth.mjs.map +1 -1
- package/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.d.ts +7 -3
- package/package.json +1 -1
@@ -1,13 +1,17 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
2
3
|
import * as i0 from "@angular/core";
|
3
|
-
export {};
|
4
4
|
declare global {
|
5
5
|
interface Window {
|
6
6
|
Calendly: any;
|
7
7
|
}
|
8
8
|
}
|
9
|
-
export declare class CalendlyModalComponent implements OnInit {
|
9
|
+
export declare class CalendlyModalComponent implements OnInit, OnDestroy {
|
10
|
+
private modalRef;
|
11
|
+
constructor(modalRef: NgbActiveModal);
|
10
12
|
ngOnInit(): void;
|
13
|
+
ngOnDestroy(): void;
|
14
|
+
messageHandler(event: MessageEvent): void;
|
11
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendlyModalComponent, never>;
|
12
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<CalendlyModalComponent, "lib-calendly-modal", never, {}, {}, never, never, false, never>;
|
13
17
|
}
|