@dsivd/prestations-ng 15.2.2 → 15.2.3-beta3

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 (25) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dsivd-prestations-ng-v15.2.3-beta3.tgz +0 -0
  3. package/esm2020/foehn-checkables/foehn-select.component.mjs +1 -1
  4. package/esm2020/foehn-confirm-modal/foehn-confirm-modal.component.mjs +1 -1
  5. package/esm2020/foehn-help-modal/foehn-help-modal.component.mjs +1 -1
  6. package/esm2020/foehn-menu-prestation/foehn-menu-items/foehn-menu-item-transmit/foehn-menu-item-transmit.component.mjs +1 -1
  7. package/esm2020/foehn-modal/foehn-modal.component.mjs +2 -5
  8. package/esm2020/foehn-page/foehn-page-modal.component.mjs +1 -1
  9. package/esm2020/foehn-table/foehn-table-column-configuration.mjs +1 -1
  10. package/esm2020/foehn-table/foehn-table.component.mjs +3 -3
  11. package/esm2020/gesdem/gesdem-handler.service.mjs +2 -1
  12. package/esm2020/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.mjs +1 -1
  13. package/esm2020/sdk-dictionary/default-dictionary.mjs +2 -1
  14. package/esm2020/sdk-epayment/sdk-epayment.component.mjs +1 -1
  15. package/esm2020/sdk-redirect/iam-expired-interceptor.service.mjs +2 -2
  16. package/esm2020/sdk-redirect/redirect.component.mjs +17 -13
  17. package/fesm2015/dsivd-prestations-ng.mjs +24 -23
  18. package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
  19. package/fesm2020/dsivd-prestations-ng.mjs +24 -23
  20. package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
  21. package/foehn-modal/foehn-modal.component.d.ts +1 -2
  22. package/foehn-table/foehn-table-column-configuration.d.ts +6 -1
  23. package/package.json +1 -1
  24. package/sdk-redirect/redirect.component.d.ts +3 -1
  25. package/dsivd-prestations-ng-v15.2.2.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"; "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,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: (item: T) => string;
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
  }
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.2",
39
+ "version": "15.2.3-beta3",
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,14 +1,16 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { IamExpiredInterceptorService } from './iam-expired-interceptor.service';
3
+ import { FoehnPageModalService } from '../foehn-page/foehn-page-modal.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class RedirectComponent implements OnDestroy, OnInit {
5
6
  private iamInterceptor;
7
+ private foehnPageModalService;
6
8
  isModalVisible: boolean;
7
9
  modalHeaderText: string;
8
10
  modalBodyText: string;
9
11
  counter: number;
10
12
  private subscription;
11
- constructor(iamInterceptor: IamExpiredInterceptorService);
13
+ constructor(iamInterceptor: IamExpiredInterceptorService, foehnPageModalService: FoehnPageModalService);
12
14
  ngOnInit(): void;
13
15
  ngOnDestroy(): void;
14
16
  private redirect;
Binary file