@dsivd/prestations-ng 18.3.4 → 18.3.5
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/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { RegisterNgModelService } from '../foehn-form/register-ng-model.service';
|
|
3
4
|
import { FoehnPageModalService } from '../foehn-page/foehn-page-modal.service';
|
|
4
5
|
import { SessionInfo } from '../sdk-session-info/session-info.service';
|
|
5
6
|
import { IamExpiredInterceptorService } from './iam-expired-interceptor.service';
|
|
@@ -8,11 +9,12 @@ export declare class RedirectComponent implements OnDestroy {
|
|
|
8
9
|
private iamInterceptor;
|
|
9
10
|
private foehnPageModalService;
|
|
10
11
|
private sessionInfo;
|
|
12
|
+
private registerNgModelService;
|
|
11
13
|
isModalVisible: Observable<boolean>;
|
|
12
14
|
counter: number;
|
|
13
15
|
redirectUrl: string;
|
|
14
16
|
private intervalId;
|
|
15
|
-
constructor(iamInterceptor: IamExpiredInterceptorService, foehnPageModalService: FoehnPageModalService, sessionInfo: SessionInfo);
|
|
17
|
+
constructor(iamInterceptor: IamExpiredInterceptorService, foehnPageModalService: FoehnPageModalService, sessionInfo: SessionInfo, registerNgModelService: RegisterNgModelService);
|
|
16
18
|
ngOnDestroy(): void;
|
|
17
19
|
reloadPage(): void;
|
|
18
20
|
private startTimer;
|
|
Binary file
|