@dsivd/prestations-ng 15.2.1 → 15.2.3-beta2

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.
@@ -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
  }
@@ -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
@@ -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-beta2",
40
40
  "module": "fesm2015/dsivd-prestations-ng.mjs",
41
41
  "es2020": "fesm2020/dsivd-prestations-ng.mjs",
42
42
  "esm2020": "esm2020/dsivd-prestations-ng.mjs",
Binary file