@dsivd/prestations-ng 17.0.1-beta.1 → 17.0.1-beta.2
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 +4 -0
- package/dsivd-prestations-ng-17.0.1-beta.2.tgz +0 -0
- package/esm2022/foehn-breadcrumb/foehn-breadcrumb.component.mjs +26 -6
- package/esm2022/sdk-events-logger/sdk-event-type.mjs +2 -1
- package/fesm2022/dsivd-prestations-ng.mjs +22 -3
- package/fesm2022/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-breadcrumb/foehn-breadcrumb.component.d.ts +4 -1
- package/package.json +1 -1
- package/sdk-events-logger/sdk-event-type.d.ts +2 -1
- package/dsivd-prestations-ng-17.0.1-beta.1.tgz +0 -0
|
@@ -2,6 +2,7 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { FoehnConfirmModalService } from '../foehn-confirm-modal/foehn-confirm-modal.service';
|
|
4
4
|
import { FoehnConfirmModalContent } from '../foehn-confirm-modal/foehn-confirm-modal-content';
|
|
5
|
+
import { SdkEventsLoggerService } from '../sdk-events-logger/sdk-events-logger.service';
|
|
5
6
|
import { SessionInfo } from '../sdk-session-info/session-info.service';
|
|
6
7
|
import { BreadcrumbItem } from './breadcrumb';
|
|
7
8
|
import { BreadcrumbEventService } from './breadcrumb-event.service';
|
|
@@ -11,17 +12,19 @@ export declare class FoehnBreadcrumbComponent implements OnInit, OnDestroy {
|
|
|
11
12
|
private router;
|
|
12
13
|
private foehnConfirmModalService;
|
|
13
14
|
private sessionInfo;
|
|
15
|
+
private sdkEventsLoggerService;
|
|
14
16
|
breadcrumbItems: BreadcrumbItem[];
|
|
15
17
|
currentNav: string;
|
|
16
18
|
confirmLeavingAlert: FoehnConfirmModalContent;
|
|
17
19
|
private breadcrumbSubscription;
|
|
18
|
-
constructor(breadcrumbService: BreadcrumbEventService, router: Router, foehnConfirmModalService: FoehnConfirmModalService, sessionInfo: SessionInfo);
|
|
20
|
+
constructor(breadcrumbService: BreadcrumbEventService, router: Router, foehnConfirmModalService: FoehnConfirmModalService, sessionInfo: SessionInfo, sdkEventsLoggerService: SdkEventsLoggerService);
|
|
19
21
|
reset(): void;
|
|
20
22
|
ngOnInit(): void;
|
|
21
23
|
ngOnDestroy(): void;
|
|
22
24
|
confirmAndLeave(item: BreadcrumbItem): void;
|
|
23
25
|
redirect(item: BreadcrumbItem): void;
|
|
24
26
|
private navigate;
|
|
27
|
+
private addBreadcrumbClickEventToLogger;
|
|
25
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnBreadcrumbComponent, never>;
|
|
26
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnBreadcrumbComponent, "foehn-breadcrumb", never, { "breadcrumbItems": { "alias": "breadcrumbItems"; "required": false; }; "currentNav": { "alias": "currentNav"; "required": false; }; "confirmLeavingAlert": { "alias": "confirmLeavingAlert"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
30
|
}
|
package/package.json
CHANGED
|
@@ -7,5 +7,6 @@ export declare enum SdkEventType {
|
|
|
7
7
|
RECOVERY_LOGIN_FAILED = "RECOVERY_LOGIN_FAILED",
|
|
8
8
|
NAVIGATION_FORWARD = "NAVIGATION_FORWARD",
|
|
9
9
|
NAVIGATION_BACKWARD = "NAVIGATION_BACKWARD",
|
|
10
|
-
TRANSMIT = "TRANSMIT"
|
|
10
|
+
TRANSMIT = "TRANSMIT",
|
|
11
|
+
BREADCRUMB_CLICK = "BREADCRUMB_CLICK"
|
|
11
12
|
}
|
|
Binary file
|