@dsivd/prestations-ng 15.2.3-beta1 → 15.2.3-beta10
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 +18 -2
- package/dsivd-prestations-ng-v15.2.3-beta10.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/foehn-table/foehn-table-column-configuration.mjs +1 -1
- package/esm2020/foehn-table/foehn-table.component.mjs +4 -6
- 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 +28 -16
- package/esm2020/sdk-redirect/redirect.component.mjs +10 -19
- package/fesm2015/dsivd-prestations-ng.mjs +43 -46
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +43 -46
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-modal/foehn-modal.component.d.ts +1 -2
- package/foehn-table/foehn-table-column-configuration.d.ts +6 -1
- package/foehn-table/foehn-table.component.d.ts +2 -3
- package/package.json +2 -2
- package/sdk-redirect/iam-expired-interceptor.service.d.ts +2 -2
- package/sdk-redirect/redirect.component.d.ts +2 -8
- package/dsivd-prestations-ng-v15.2.3-beta1.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
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IconDefinition } from '@fortawesome/fontawesome-common-types';
|
|
2
|
+
import { TemplateRef } from '@angular/core';
|
|
2
3
|
export declare class FoehnTableColumnConfiguration<T> {
|
|
3
4
|
id: string;
|
|
4
5
|
columnLabelKey: string;
|
|
@@ -7,7 +8,11 @@ export declare class FoehnTableColumnConfiguration<T> {
|
|
|
7
8
|
icon: IconDefinition;
|
|
8
9
|
label: string;
|
|
9
10
|
};
|
|
10
|
-
valueGetter
|
|
11
|
+
valueGetter?: (item: T) => string;
|
|
12
|
+
template?: TemplateRef<unknown>;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated The method should not be used
|
|
15
|
+
*/
|
|
11
16
|
routerLinkGetter?: (item: T) => string;
|
|
12
17
|
sortAttribute?: string;
|
|
13
18
|
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, SimpleChanges
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { FoehnTablePageChangeEvent } from './foehn-table-page-change-event';
|
|
3
3
|
import { FoehnTableColumnConfiguration } from './foehn-table-column-configuration';
|
|
4
4
|
import { TableSort } from './tableSort';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FoehnTableComponent implements OnChanges {
|
|
7
|
-
actionButtonsTemplate: TemplateRef<unknown>;
|
|
8
7
|
itemsPerPage: number;
|
|
9
8
|
id: string;
|
|
10
9
|
previousLabel: string;
|
|
@@ -30,5 +29,5 @@ export declare class FoehnTableComponent implements OnChanges {
|
|
|
30
29
|
triggerSort(sortAttribute: string): void;
|
|
31
30
|
private buildFilteredList;
|
|
32
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnTableComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnTableComponent, "foehn-table", never, { "
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnTableComponent, "foehn-table", never, { "itemsPerPage": "itemsPerPage"; "id": "id"; "previousLabel": "previousLabel"; "nextLabel": "nextLabel"; "totalElements": "totalElements"; "fixedPageCount": "fixedPageCount"; "columnsConfiguration": "columnsConfiguration"; "sort": "sort"; "list": "list"; "trackByFn": "trackByFn"; }, { "pageChange": "pageChange"; "sortChange": "sortChange"; }, never, never>;
|
|
34
33
|
}
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@fortawesome/free-solid-svg-icons": "^5.0.0",
|
|
25
25
|
"@dsivd/foehn": "1.8.4",
|
|
26
26
|
"rxjs": "~7.4.0",
|
|
27
|
-
"core-js": "~3.
|
|
27
|
+
"core-js": "~3.23.3",
|
|
28
28
|
"iban": "~0.0.14",
|
|
29
29
|
"ngx-image-cropper": "~6.0.0",
|
|
30
30
|
"dayjs": "~1.10.4"
|
|
@@ -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-beta10",
|
|
40
40
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
41
41
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
42
42
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
@@ -2,8 +2,8 @@ import { Observable } from 'rxjs';
|
|
|
2
2
|
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class IamExpiredInterceptorService implements HttpInterceptor {
|
|
5
|
-
private
|
|
6
|
-
get
|
|
5
|
+
private _isIamSessionExpired;
|
|
6
|
+
get isIamSessionExpired(): Observable<boolean>;
|
|
7
7
|
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any> | any>;
|
|
8
8
|
private handleError;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<IamExpiredInterceptorService, never>;
|
|
@@ -1,17 +1,11 @@
|
|
|
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;
|
|
6
5
|
isModalVisible: boolean;
|
|
7
|
-
modalHeaderText: string;
|
|
8
|
-
modalBodyText: string;
|
|
9
6
|
counter: number;
|
|
10
|
-
private subscription;
|
|
11
7
|
constructor(iamInterceptor: IamExpiredInterceptorService);
|
|
12
|
-
|
|
13
|
-
ngOnDestroy(): void;
|
|
14
|
-
private redirect;
|
|
8
|
+
reloadPage(): void;
|
|
15
9
|
private showModal;
|
|
16
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectComponent, never>;
|
|
17
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<RedirectComponent, "redirector", never, {}, {}, never, never>;
|
|
Binary file
|