@dsivd/prestations-ng 15.2.3-beta2 → 15.2.3-beta5
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 +12 -1
- package/dsivd-prestations-ng-v15.2.3-beta5.tgz +0 -0
- package/esm2020/foehn-confirm-modal/foehn-confirm-modal.component.mjs +1 -1
- package/esm2020/foehn-help-modal/foehn-help-modal.component.mjs +1 -1
- package/esm2020/foehn-menu-prestation/foehn-menu-items/foehn-menu-item-transmit/foehn-menu-item-transmit.component.mjs +1 -1
- package/esm2020/foehn-modal/foehn-modal.component.mjs +2 -5
- package/esm2020/foehn-page/foehn-page-modal.component.mjs +1 -1
- package/esm2020/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.mjs +1 -1
- package/esm2020/sdk-epayment/sdk-epayment.component.mjs +1 -1
- package/esm2020/sdk-redirect/iam-expired-interceptor.service.mjs +23 -8
- package/esm2020/sdk-redirect/redirect.component.mjs +8 -17
- package/fesm2015/dsivd-prestations-ng.mjs +33 -31
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +33 -31
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-modal/foehn-modal.component.d.ts +1 -2
- package/package.json +1 -1
- package/sdk-redirect/redirect.component.d.ts +3 -8
- package/dsivd-prestations-ng-v15.2.3-beta2.tgz +0 -0
|
@@ -6,7 +6,6 @@ export declare class FoehnModalComponent {
|
|
|
6
6
|
modalSize: string;
|
|
7
7
|
modalBodyText: string;
|
|
8
8
|
modalHeaderText: string;
|
|
9
|
-
modalFooterText: string;
|
|
10
9
|
closeable: boolean;
|
|
11
10
|
modalTriggerHtmlElement: HTMLElement;
|
|
12
11
|
isModalVisibleChange: EventEmitter<any>;
|
|
@@ -21,5 +20,5 @@ export declare class FoehnModalComponent {
|
|
|
21
20
|
private focusOnContainer;
|
|
22
21
|
private focusOnModalTrigger;
|
|
23
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnModalComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnModalComponent, "foehn-modal", never, { "id": "id"; "name": "name"; "modalSize": "modalSize"; "modalBodyText": "modalBodyText"; "modalHeaderText": "modalHeaderText"; "
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnModalComponent, "foehn-modal", never, { "id": "id"; "name": "name"; "modalSize": "modalSize"; "modalBodyText": "modalBodyText"; "modalHeaderText": "modalHeaderText"; "closeable": "closeable"; "modalTriggerHtmlElement": "modalTriggerHtmlElement"; "isModalVisible": "isModalVisible"; }, { "isModalVisibleChange": "isModalVisibleChange"; }, never, ["*", "[modal-footer]"]>;
|
|
25
24
|
}
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"ng-update": {
|
|
37
37
|
"migrations": "./schematics/migration-collection.json"
|
|
38
38
|
},
|
|
39
|
-
"version": "15.2.3-
|
|
39
|
+
"version": "15.2.3-beta5",
|
|
40
40
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
41
41
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
42
42
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
1
|
import { IamExpiredInterceptorService } from './iam-expired-interceptor.service';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class RedirectComponent
|
|
3
|
+
export declare class RedirectComponent {
|
|
5
4
|
private iamInterceptor;
|
|
5
|
+
readonly modalHeaderText = "Information";
|
|
6
|
+
readonly modalBodyText = "<p>Votre session a expir\u00E9.</p>\n <p>Vous pouvez vous connecter \u00E0 nouveau pour continuer \u00E0 utiliser nos services.</p>";
|
|
6
7
|
isModalVisible: boolean;
|
|
7
|
-
modalHeaderText: string;
|
|
8
|
-
modalBodyText: string;
|
|
9
8
|
counter: number;
|
|
10
|
-
private subscription;
|
|
11
9
|
constructor(iamInterceptor: IamExpiredInterceptorService);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
ngOnDestroy(): void;
|
|
14
|
-
private redirect;
|
|
15
10
|
private showModal;
|
|
16
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectComponent, never>;
|
|
17
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<RedirectComponent, "redirector", never, {}, {}, never, never>;
|
|
Binary file
|