@dsivd/prestations-ng 16.5.4-beta.3 → 16.5.4-beta.4
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 -0
- package/dsivd-prestations-ng-v16.5.4-beta.4.tgz +0 -0
- package/esm2020/foehn-breadcrumb/breadcrumb-event.service.mjs +22 -15
- package/esm2020/gesdem-confirmation/gesdem-confirmation.component.mjs +14 -10
- package/esm2020/sdk-appinfo/application-info.mjs +7 -1
- package/esm2020/sdk-appinfo/application-info.service.mjs +21 -3
- package/fesm2015/dsivd-prestations-ng.mjs +259 -225
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +249 -216
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-breadcrumb/breadcrumb-event.service.d.ts +3 -1
- package/gesdem-confirmation/gesdem-confirmation.component.d.ts +2 -0
- package/package.json +1 -1
- package/sdk-appinfo/application-info.d.ts +3 -2
- package/dsivd-prestations-ng-v16.5.4-beta.3.tgz +0 -0
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
|
|
2
3
|
import { SessionInfo } from '../sdk-session-info/session-info.service';
|
|
3
4
|
import { Breadcrumb, BreadcrumbConfiguration, BreadcrumbItem } from './breadcrumb';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BreadcrumbEventService {
|
|
6
7
|
private sessionInfo;
|
|
8
|
+
private applicationInfoService;
|
|
7
9
|
private _breadcrumbOverride;
|
|
8
10
|
private _breadcrumbConfiguration;
|
|
9
11
|
private _currentBreadcrumbItem;
|
|
10
12
|
private readonly _breadcrumbObservable;
|
|
11
13
|
private readonly _neverConnectedBreadcrumbObservable;
|
|
12
14
|
private _skipLeavingAlertBecauseDemandIsTransmitted;
|
|
13
|
-
constructor(sessionInfo: SessionInfo);
|
|
15
|
+
constructor(sessionInfo: SessionInfo, applicationInfoService: ApplicationInfoService);
|
|
14
16
|
get skipLeavingAlertBecauseDemandIsTransmitted(): boolean;
|
|
15
17
|
set skipLeavingAlertBecauseDemandIsTransmitted(value: boolean);
|
|
16
18
|
/**
|
|
@@ -7,6 +7,7 @@ import { FoehnNavigationService } from '../foehn-navigation/foehn-navigation.ser
|
|
|
7
7
|
import { FoehnPageService } from '../foehn-page/foehn-page.service';
|
|
8
8
|
import { GesdemHandlerService } from '../gesdem/gesdem-handler.service';
|
|
9
9
|
import { ActionStatut } from '../gesdem/gesdem-statut-utils';
|
|
10
|
+
import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
|
|
10
11
|
import { SdkDictionaryService } from '../sdk-dictionary/sdk-dictionary.service';
|
|
11
12
|
import { SdkEventsLoggerService } from '../sdk-events-logger/sdk-events-logger.service';
|
|
12
13
|
import { SessionInfo } from '../sdk-session-info/session-info.service';
|
|
@@ -43,6 +44,7 @@ export declare class GesdemConfirmationComponent implements OnInit, OnDestroy, O
|
|
|
43
44
|
protected _sessionInfo: SessionInfo;
|
|
44
45
|
protected _navigation: FoehnNavigationService;
|
|
45
46
|
protected _eventsLoggerService: SdkEventsLoggerService;
|
|
47
|
+
protected _applicationInfoService: ApplicationInfoService;
|
|
46
48
|
private dataSubscription;
|
|
47
49
|
private pageTitleSubscription;
|
|
48
50
|
constructor(gesdemService: GesdemHandlerService, foehnPageService: FoehnPageService, activatedRoute: ActivatedRoute, dictionaryService: SdkDictionaryService, location: Location);
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ng-update": {
|
|
41
41
|
"migrations": "./schematics/migration-collection.json"
|
|
42
42
|
},
|
|
43
|
-
"version": "16.5.4-beta.
|
|
43
|
+
"version": "16.5.4-beta.4",
|
|
44
44
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
45
45
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
46
46
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
@@ -10,7 +10,7 @@ export declare class ApplicationInfo {
|
|
|
10
10
|
etapeInfos: {
|
|
11
11
|
[key: string]: EtapeInfo;
|
|
12
12
|
};
|
|
13
|
-
configuration
|
|
13
|
+
configuration: Configuration;
|
|
14
14
|
mockedServices: string[];
|
|
15
15
|
}
|
|
16
16
|
export declare class EtapeInfo {
|
|
@@ -28,7 +28,7 @@ export declare class EtapeInfo {
|
|
|
28
28
|
}
|
|
29
29
|
export declare class Configuration {
|
|
30
30
|
captcha?: Captcha;
|
|
31
|
-
portail
|
|
31
|
+
portail: Portail;
|
|
32
32
|
document?: Document;
|
|
33
33
|
session?: Session;
|
|
34
34
|
}
|
|
@@ -47,6 +47,7 @@ export declare class Captcha {
|
|
|
47
47
|
publickey?: string;
|
|
48
48
|
}
|
|
49
49
|
export declare class Portail {
|
|
50
|
+
baseVdChUrl?: string;
|
|
50
51
|
cyberLoginUrl?: string;
|
|
51
52
|
supportFormUrl?: string;
|
|
52
53
|
espaceSecuriseUrl?: string;
|
|
Binary file
|