@dsivd/prestations-ng 16.4.0-beta.1 → 16.4.0-beta.3

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.
@@ -8,9 +8,10 @@ export declare abstract class AbstractFoehnNavigationComponent {
8
8
  continueLaterLabel: string;
9
9
  showContinueLaterButton: boolean;
10
10
  showNextButton: boolean;
11
+ triggerRecoveryOnFirstSave: boolean;
11
12
  goToNext(): void;
12
13
  goToPrevious(): void;
13
14
  canShowNextButton(): boolean;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractFoehnNavigationComponent, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFoehnNavigationComponent, never, never, { "nextLabel": "nextLabel"; "prevLabel": "prevLabel"; "continueLaterLabel": "continueLaterLabel"; "showContinueLaterButton": "showContinueLaterButton"; "showNextButton": "showNextButton"; }, { "onNext": "onNext"; "onPrevious": "onPrevious"; }, never, never, false, never>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFoehnNavigationComponent, never, never, { "nextLabel": "nextLabel"; "prevLabel": "prevLabel"; "continueLaterLabel": "continueLaterLabel"; "showContinueLaterButton": "showContinueLaterButton"; "showNextButton": "showNextButton"; "triggerRecoveryOnFirstSave": "triggerRecoveryOnFirstSave"; }, { "onNext": "onNext"; "onPrevious": "onPrevious"; }, never, never, false, never>;
16
17
  }
@@ -4,6 +4,7 @@ import { FoehnFormComponent } from '../../foehn-form/foehn-form.component';
4
4
  import { FoehnPageService } from '../../foehn-page/foehn-page.service';
5
5
  import { GesdemEventService } from '../../gesdem/gesdem-event.service';
6
6
  import { GesdemHandlerService } from '../../gesdem/gesdem-handler.service';
7
+ import { EtapeInfo } from '../../sdk-appinfo/application-info';
7
8
  import { ApplicationInfoService } from '../../sdk-appinfo/application-info.service';
8
9
  import { SessionInfo } from '../../sdk-session-info/session-info.service';
9
10
  import { ValidationHandlerService } from '../../validation/validation-handler.service';
@@ -19,6 +20,7 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
19
20
  private appInfoService;
20
21
  private sessionInfoService;
21
22
  continueLaterLabel: string;
23
+ triggerOnFirstSave: boolean;
22
24
  modalTrigger: ElementRef;
23
25
  form: FoehnFormComponent;
24
26
  model: RepriseInfo;
@@ -26,6 +28,7 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
26
28
  canContinueLater: Observable<boolean>;
27
29
  isConnectedCyber: Observable<boolean>;
28
30
  currentInfoReprise: Observable<RepriseInfo>;
31
+ currentEtapeInfo: Observable<EtapeInfo>;
29
32
  private isVisible;
30
33
  constructor(actionRecoveryService: GesdemActionRecoveryService, validationHandler: ValidationHandlerService, foehnPageService: FoehnPageService, gesdemEventService: GesdemEventService, gesdemService: GesdemHandlerService, appInfoService: ApplicationInfoService, sessionInfoService: SessionInfo);
31
34
  get isModalVisible(): boolean;
@@ -37,5 +40,5 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
37
40
  updateVisibilityStatus(status: boolean): void;
38
41
  private canContinueLaterForEtape;
39
42
  static ɵfac: i0.ɵɵFactoryDeclaration<GesdemActionRecoveryRegistrationComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<GesdemActionRecoveryRegistrationComponent, "gesdem-action-recovery-registration", never, { "continueLaterLabel": "continueLaterLabel"; }, {}, never, never, false, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<GesdemActionRecoveryRegistrationComponent, "gesdem-action-recovery-registration", never, { "continueLaterLabel": "continueLaterLabel"; "triggerOnFirstSave": "triggerOnFirstSave"; }, {}, never, never, false, never>;
41
44
  }
@@ -1,5 +1,6 @@
1
1
  export declare class RepriseInfo {
2
2
  mobile: string;
3
3
  email: string;
4
+ referenceInterne?: string;
4
5
  lastUpdate?: number[];
5
6
  }
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.1",
43
+ "version": "16.4.0-beta.3",
44
44
  "module": "fesm2015/dsivd-prestations-ng.mjs",
45
45
  "es2020": "fesm2020/dsivd-prestations-ng.mjs",
46
46
  "esm2020": "esm2020/dsivd-prestations-ng.mjs",
@@ -22,6 +22,9 @@ export declare class EtapeInfo {
22
22
  publicCible: string[];
23
23
  decisionElectroniqueAvailable: boolean;
24
24
  deployeeCyber: boolean;
25
+ lienAcces: string;
26
+ draftDemRetentionDaysPublic: number;
27
+ draftDemRetentionDaysConnected: number;
25
28
  }
26
29
  export declare class Configuration {
27
30
  captcha?: Captcha;