@dsivd/prestations-ng 16.4.0-beta.7 → 16.4.0-beta.8
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/CHANGELOG.md +2 -2
- package/dsivd-prestations-ng-v16.4.0-beta.8.tgz +0 -0
- package/esm2020/foehn-navigation/abstract-foehn-navigation.component.mjs +10 -4
- package/esm2020/foehn-navigation/foehn-navigation/foehn-navigation.component.mjs +3 -3
- package/esm2020/foehn-navigation/foehn-simple-navigation/foehn-simple-navigation.component.mjs +3 -3
- package/esm2020/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.mjs +79 -49
- package/esm2020/sdk-dictionary/default-dictionary.mjs +3 -1
- package/fesm2015/dsivd-prestations-ng.mjs +83 -47
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +82 -46
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-navigation/abstract-foehn-navigation.component.d.ts +4 -2
- package/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.d.ts +15 -7
- package/package.json +1 -1
- package/dsivd-prestations-ng-v16.4.0-beta.7.tgz +0 -0
|
@@ -6,12 +6,14 @@ export declare abstract class AbstractFoehnNavigationComponent {
|
|
|
6
6
|
nextLabel: string;
|
|
7
7
|
prevLabel: string;
|
|
8
8
|
continueLaterLabel: string;
|
|
9
|
+
continueLaterAlreadyRegisteredLabel: string;
|
|
10
|
+
continueLaterConnectedLabel: string;
|
|
9
11
|
showContinueLaterButton: boolean;
|
|
10
12
|
showNextButton: boolean;
|
|
11
|
-
|
|
13
|
+
triggerRecoveryOnPageChange: boolean;
|
|
12
14
|
goToNext(): void;
|
|
13
15
|
goToPrevious(): void;
|
|
14
16
|
canShowNextButton(): boolean;
|
|
15
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractFoehnNavigationComponent, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFoehnNavigationComponent, never, never, { "nextLabel": "nextLabel"; "prevLabel": "prevLabel"; "continueLaterLabel": "continueLaterLabel"; "showContinueLaterButton": "showContinueLaterButton"; "showNextButton": "showNextButton"; "
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFoehnNavigationComponent, never, never, { "nextLabel": "nextLabel"; "prevLabel": "prevLabel"; "continueLaterLabel": "continueLaterLabel"; "continueLaterAlreadyRegisteredLabel": "continueLaterAlreadyRegisteredLabel"; "continueLaterConnectedLabel": "continueLaterConnectedLabel"; "showContinueLaterButton": "showContinueLaterButton"; "showNextButton": "showNextButton"; "triggerRecoveryOnPageChange": "triggerRecoveryOnPageChange"; }, { "onNext": "onNext"; "onPrevious": "onPrevious"; }, never, never, false, never>;
|
|
17
19
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { Observable, Subscription } from 'rxjs';
|
|
3
4
|
import { FoehnFormComponent } from '../../foehn-form/foehn-form.component';
|
|
4
5
|
import { FoehnPageService } from '../../foehn-page/foehn-page.service';
|
|
5
6
|
import { GesdemEventService } from '../../gesdem/gesdem-event.service';
|
|
@@ -11,7 +12,7 @@ import { ValidationHandlerService } from '../../validation/validation-handler.se
|
|
|
11
12
|
import { GesdemActionRecoveryService } from '../gesdem-action-recovery.service';
|
|
12
13
|
import { RepriseInfo } from '../reprise-info';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
|
-
export declare class GesdemActionRecoveryRegistrationComponent implements OnInit {
|
|
15
|
+
export declare class GesdemActionRecoveryRegistrationComponent implements OnInit, OnDestroy {
|
|
15
16
|
private actionRecoveryService;
|
|
16
17
|
private validationHandler;
|
|
17
18
|
private foehnPageService;
|
|
@@ -19,8 +20,11 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
|
|
|
19
20
|
private gesdemService;
|
|
20
21
|
private appInfoService;
|
|
21
22
|
private sessionInfoService;
|
|
23
|
+
private router;
|
|
22
24
|
continueLaterLabel: string;
|
|
23
|
-
|
|
25
|
+
continueLaterAlreadyRegisteredLabel: string;
|
|
26
|
+
continueLaterConnectedLabel: string;
|
|
27
|
+
triggerOnPageChange: boolean;
|
|
24
28
|
modalTrigger: ElementRef;
|
|
25
29
|
form: FoehnFormComponent;
|
|
26
30
|
model: RepriseInfo;
|
|
@@ -29,16 +33,20 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
|
|
|
29
33
|
isConnectedCyber: Observable<boolean>;
|
|
30
34
|
currentInfoReprise: Observable<RepriseInfo>;
|
|
31
35
|
currentEtapeInfo: Observable<EtapeInfo>;
|
|
36
|
+
triggerAutomaticallySub: Subscription;
|
|
37
|
+
modalTriggerLabel: Observable<string>;
|
|
32
38
|
private isVisible;
|
|
33
|
-
constructor(actionRecoveryService: GesdemActionRecoveryService, validationHandler: ValidationHandlerService, foehnPageService: FoehnPageService, gesdemEventService: GesdemEventService, gesdemService: GesdemHandlerService, appInfoService: ApplicationInfoService, sessionInfoService: SessionInfo);
|
|
39
|
+
constructor(actionRecoveryService: GesdemActionRecoveryService, validationHandler: ValidationHandlerService, foehnPageService: FoehnPageService, gesdemEventService: GesdemEventService, gesdemService: GesdemHandlerService, appInfoService: ApplicationInfoService, sessionInfoService: SessionInfo, router: Router);
|
|
34
40
|
get isModalVisible(): boolean;
|
|
35
41
|
get reference(): string;
|
|
36
42
|
ngOnInit(): void;
|
|
37
|
-
|
|
43
|
+
ngOnDestroy(): void;
|
|
44
|
+
saveAndOpenModal(): void;
|
|
45
|
+
openModal(isConnectedCyber: boolean): void;
|
|
38
46
|
close(): void;
|
|
39
47
|
sendAndClose(): void;
|
|
40
48
|
updateVisibilityStatus(status: boolean): void;
|
|
41
49
|
private canContinueLaterForEtape;
|
|
42
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<GesdemActionRecoveryRegistrationComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GesdemActionRecoveryRegistrationComponent, "gesdem-action-recovery-registration", never, { "continueLaterLabel": "continueLaterLabel"; "
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GesdemActionRecoveryRegistrationComponent, "gesdem-action-recovery-registration", never, { "continueLaterLabel": "continueLaterLabel"; "continueLaterAlreadyRegisteredLabel": "continueLaterAlreadyRegisteredLabel"; "continueLaterConnectedLabel": "continueLaterConnectedLabel"; "triggerOnPageChange": "triggerOnPageChange"; }, {}, never, never, false, never>;
|
|
44
52
|
}
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ng-update": {
|
|
41
41
|
"migrations": "./schematics/migration-collection.json"
|
|
42
42
|
},
|
|
43
|
-
"version": "16.4.0-beta.
|
|
43
|
+
"version": "16.4.0-beta.8",
|
|
44
44
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
45
45
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
46
46
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
Binary file
|