@dsivd/prestations-ng 16.4.10-beta.2 → 16.4.10-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.
@@ -1,12 +1,20 @@
1
- import { Observable } from 'rxjs';
1
+ import { BehaviorSubject, Observable } from 'rxjs';
2
2
  import { GesdemHandlerService } from '../gesdem/gesdem-handler.service';
3
+ import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
4
+ import { SdkDictionaryService } from '../sdk-dictionary/sdk-dictionary.service';
3
5
  import * as i0 from "@angular/core";
4
6
  export declare class FoehnRemainingAlertsSummaryComponent {
5
7
  private gesdemService;
6
- remainingErrorsLabel: string;
8
+ private applicationInfoService;
9
+ private dictionaryService;
7
10
  remainingErrorNamesToIgnore: string[];
8
11
  hasRemainingErrors: Observable<boolean>;
9
- constructor(gesdemService: GesdemHandlerService);
12
+ remainingErrorsLabelSubject: BehaviorSubject<string>;
13
+ remainingErrorsMessage: Observable<string>;
14
+ private readonly DEFAULT_REMAINING_ERRORS_MSG_KEY;
15
+ private reference;
16
+ constructor(gesdemService: GesdemHandlerService, applicationInfoService: ApplicationInfoService, dictionaryService: SdkDictionaryService);
17
+ set remainingErrorsLabel(msg: string);
10
18
  static ɵfac: i0.ɵɵFactoryDeclaration<FoehnRemainingAlertsSummaryComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<FoehnRemainingAlertsSummaryComponent, "foehn-remaining-alerts-summary", never, { "remainingErrorsLabel": "remainingErrorsLabel"; "remainingErrorNamesToIgnore": "remainingErrorNamesToIgnore"; }, {}, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<FoehnRemainingAlertsSummaryComponent, "foehn-remaining-alerts-summary", never, { "remainingErrorNamesToIgnore": "remainingErrorNamesToIgnore"; "remainingErrorsLabel": "remainingErrorsLabel"; }, {}, never, never, false, never>;
12
20
  }
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.10-beta.2",
43
+ "version": "16.4.10-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",
@@ -1,6 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
3
  import { FoehnPageService } from '../foehn-page/foehn-page.service';
4
+ import { FormError } from '../form-error';
4
5
  import { ApplicationInfo, EtapeInfo } from './application-info';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare const APP_INFO_API_URL = "api/applicationInfo";
@@ -18,7 +19,7 @@ export declare class ApplicationInfoService {
18
19
  get firstEtapeInfo(): Observable<EtapeInfo>;
19
20
  get currentEtapeInfo(): Observable<EtapeInfo>;
20
21
  getSafeCyberLoginUrl(): Observable<string>;
21
- getSafeSupportFormUrl(reference?: string): Observable<string>;
22
+ getSafeSupportFormUrl(reference?: string, errors?: FormError[]): Observable<string>;
22
23
  getSafeSupportFormTitle(): Observable<string>;
23
24
  getSafeEspacesSecuriseUrl(): Observable<string>;
24
25
  private setApplicationInfo;