@dsivd/prestations-ng 15.2.1 → 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.
Files changed (29) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dsivd-prestations-ng-v15.2.3-beta10.tgz +0 -0
  3. package/esm2020/foehn-checkables/foehn-checkable-group.component.mjs +9 -4
  4. package/esm2020/foehn-checkables/foehn-select.component.mjs +4 -17
  5. package/esm2020/foehn-confirm-modal/foehn-confirm-modal.component.mjs +1 -1
  6. package/esm2020/foehn-help-modal/foehn-help-modal.component.mjs +1 -1
  7. package/esm2020/foehn-menu-prestation/foehn-menu-items/foehn-menu-item-transmit/foehn-menu-item-transmit.component.mjs +1 -1
  8. package/esm2020/foehn-modal/foehn-modal.component.mjs +2 -5
  9. package/esm2020/foehn-page/foehn-page-modal.component.mjs +1 -1
  10. package/esm2020/foehn-table/foehn-table-column-configuration.mjs +1 -1
  11. package/esm2020/foehn-table/foehn-table.component.mjs +9 -8
  12. package/esm2020/gesdem/gesdem-handler.service.mjs +2 -1
  13. package/esm2020/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.mjs +1 -1
  14. package/esm2020/sdk-dictionary/default-dictionary.mjs +2 -1
  15. package/esm2020/sdk-epayment/sdk-epayment.component.mjs +1 -1
  16. package/esm2020/sdk-redirect/iam-expired-interceptor.service.mjs +28 -16
  17. package/esm2020/sdk-redirect/redirect.component.mjs +10 -19
  18. package/fesm2015/dsivd-prestations-ng.mjs +54 -60
  19. package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
  20. package/fesm2020/dsivd-prestations-ng.mjs +54 -60
  21. package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
  22. package/foehn-checkables/foehn-checkable-group.component.d.ts +1 -1
  23. package/foehn-checkables/foehn-select.component.d.ts +0 -9
  24. package/foehn-modal/foehn-modal.component.d.ts +1 -2
  25. package/foehn-table/foehn-table-column-configuration.d.ts +11 -1
  26. package/package.json +2 -2
  27. package/sdk-redirect/iam-expired-interceptor.service.d.ts +2 -2
  28. package/sdk-redirect/redirect.component.d.ts +2 -8
  29. package/dsivd-prestations-ng-v15.2.1.tgz +0 -0
@@ -1,4 +1,4 @@
1
- import { NgZone, OnChanges, OnInit, SimpleChanges, EventEmitter } from '@angular/core';
1
+ import { EventEmitter, NgZone, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { FoehnInputComponent } from '../foehn-input/foehn-input.component';
3
3
  import { HttpClient } from '@angular/common/http';
4
4
  import { Observable, Subject } from 'rxjs';
@@ -16,15 +16,6 @@ export declare class FoehnSelectComponent extends FoehnCheckableGroupComponent i
16
16
  * @returns boolean
17
17
  */
18
18
  compareFn(value1: any, value2: any): boolean;
19
- /**
20
- * We override areValuesEquals from FoehnCheckableGroupComponent so we keep only one way of comparing objects
21
- * So there is no need to use 'elementValueIdentity' anymore
22
- *
23
- * @param value1 to be compared to
24
- * @param value2 to be compared to
25
- * @returns boolean
26
- */
27
- protected areValuesEquals(value1: any, value2: any): boolean;
28
19
  static ɵfac: i0.ɵɵFactoryDeclaration<FoehnSelectComponent, never>;
29
20
  static ɵcmp: i0.ɵɵComponentDeclaration<FoehnSelectComponent, "foehn-select", never, { "multiple": "multiple"; }, {}, never, ["*"]>;
30
21
  }
@@ -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"; "modalFooterText": "modalFooterText"; "closeable": "closeable"; "modalTriggerHtmlElement": "modalTriggerHtmlElement"; "isModalVisible": "isModalVisible"; }, { "isModalVisibleChange": "isModalVisibleChange"; }, never, ["*", "[modal-footer]"]>;
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,8 +1,18 @@
1
+ import { IconDefinition } from '@fortawesome/fontawesome-common-types';
2
+ import { TemplateRef } from '@angular/core';
1
3
  export declare class FoehnTableColumnConfiguration<T> {
2
4
  id: string;
3
5
  columnLabelKey: string;
4
6
  isImportant?: (item: T) => boolean;
5
- valueGetter: (item: T) => string;
7
+ iconGetter?: (item: T) => {
8
+ icon: IconDefinition;
9
+ label: string;
10
+ };
11
+ valueGetter?: (item: T) => string;
12
+ template?: TemplateRef<unknown>;
13
+ /**
14
+ * @deprecated The method should not be used
15
+ */
6
16
  routerLinkGetter?: (item: T) => string;
7
17
  sortAttribute?: string;
8
18
  }
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.15.1",
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.1",
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 _iamExpirationHeaderPresence;
6
- get iamExpirationHeaderPresence(): Observable<boolean>;
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 implements OnDestroy, OnInit {
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
- ngOnInit(): void;
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