@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.
- package/CHANGELOG.md +7 -2
- package/dsivd-prestations-ng-17.10.0.tgz +0 -0
- package/esm2022/foehn-autocomplete/foehn-autocomplete.component.mjs +3 -2
- package/esm2022/foehn-checkables/foehn-checkable-group.component.mjs +5 -21
- package/esm2022/foehn-input/foehn-input.component.mjs +10 -1
- package/esm2022/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.mjs +20 -15
- package/esm2022/helpers/object.helper.mjs +17 -1
- package/esm2022/sdk-dictionary/default-dictionary.mjs +5 -4
- package/esm2022/sdk-dictionary/sdk-dictionary.service.mjs +7 -1
- package/fesm2022/dsivd-prestations-ng.mjs +49 -29
- package/fesm2022/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-checkables/foehn-checkable-group.component.d.ts +0 -1
- package/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.d.ts +4 -1
- package/helpers/object.helper.d.ts +1 -0
- package/package.json +1 -1
- package/sdk-dictionary/sdk-dictionary.service.d.ts +1 -0
- package/dsivd-prestations-ng-17.10.0-beta.1.tgz +0 -0
|
@@ -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>;
|
package/package.json
CHANGED
|
@@ -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;
|
|
Binary file
|