@dsivd/prestations-ng 17.10.0-beta.1 → 17.10.0

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.
@@ -52,7 +52,6 @@ export declare abstract class FoehnCheckableGroupComponent extends FoehnInputCom
52
52
  protected findIndexInModel(value: any): number;
53
53
  protected areValuesEquals(value1: any, value2: any): boolean;
54
54
  protected onElementsRetrieved(): void;
55
- protected getNestedProperty(obj: any, key: string): any;
56
55
  private getGroupedElements;
57
56
  private getValueIdentityFunction;
58
57
  private fetchData;
@@ -7,6 +7,7 @@ import { GesdemEventService } from '../../gesdem/gesdem-event.service';
7
7
  import { GesdemHandlerService } from '../../gesdem/gesdem-handler.service';
8
8
  import { EtapeInfo } from '../../sdk-appinfo/application-info';
9
9
  import { ApplicationInfoService } from '../../sdk-appinfo/application-info.service';
10
+ import { SdkDictionaryService } from '../../sdk-dictionary/sdk-dictionary.service';
10
11
  import { SdkEventsLoggerService } from '../../sdk-events-logger/sdk-events-logger.service';
11
12
  import { SessionInfo } from '../../sdk-session-info/session-info.service';
12
13
  import { ValidationHandlerService } from '../../validation/validation-handler.service';
@@ -23,6 +24,7 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
23
24
  private sessionInfoService;
24
25
  private router;
25
26
  private eventsLoggerService;
27
+ private dictionaryService;
26
28
  dispatchFormErrors: boolean;
27
29
  continueLaterLabel: string;
28
30
  continueLaterAlreadyRegisteredLabel: string;
@@ -39,7 +41,7 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
39
41
  triggerAutomaticallySub: Subscription;
40
42
  modalTriggerLabel: Observable<string>;
41
43
  private isVisible;
42
- constructor(actionRecoveryService: GesdemActionRecoveryService, validationHandler: ValidationHandlerService, foehnPageService: FoehnPageService, gesdemEventService: GesdemEventService, gesdemService: GesdemHandlerService, appInfoService: ApplicationInfoService, sessionInfoService: SessionInfo, router: Router, eventsLoggerService: SdkEventsLoggerService);
44
+ constructor(actionRecoveryService: GesdemActionRecoveryService, validationHandler: ValidationHandlerService, foehnPageService: FoehnPageService, gesdemEventService: GesdemEventService, gesdemService: GesdemHandlerService, appInfoService: ApplicationInfoService, sessionInfoService: SessionInfo, router: Router, eventsLoggerService: SdkEventsLoggerService, dictionaryService: SdkDictionaryService);
43
45
  get isModalVisible(): boolean;
44
46
  get reference(): string;
45
47
  ngOnInit(): void;
@@ -49,6 +51,7 @@ export declare class GesdemActionRecoveryRegistrationComponent implements OnInit
49
51
  close(): void;
50
52
  sendAndClose(): void;
51
53
  updateVisibilityStatus(status: boolean): void;
54
+ getPluralMarker(count: number): string;
52
55
  private canContinueLaterForEtape;
53
56
  private clearErrors;
54
57
  static ɵfac: i0.ɵɵFactoryDeclaration<GesdemActionRecoveryRegistrationComponent, never>;
@@ -26,4 +26,5 @@ export declare class ObjectHelper {
26
26
  */
27
27
  static deepCopy(obj: any): any;
28
28
  static stripHtml(html: string): string;
29
+ static getNestedProperty(obj: any, key: string): any;
29
30
  }
package/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  "ng-update": {
41
41
  "migrations": "./schematics/migration-collection.json"
42
42
  },
43
- "version": "17.10.0-beta.1",
43
+ "version": "17.10.0",
44
44
  "module": "fesm2022/dsivd-prestations-ng.mjs",
45
45
  "typings": "index.d.ts",
46
46
  "exports": {
@@ -32,6 +32,7 @@ export declare class SdkDictionaryService {
32
32
  getAvailableLanguages(): Observable<Language[]>;
33
33
  getKey(key: string, placeholders?: PlaceholderType): Observable<string>;
34
34
  getKeySync(key: string, placeholders?: PlaceholderType): string;
35
+ getPluralMarkerSync(count: number): string;
35
36
  changeLanguage(code: string): void;
36
37
  getCurrentLanguageCode(): Observable<string>;
37
38
  setDefaultLanguageCode(code: string): void;