@dsivd/prestations-ng 15.2.0 → 15.2.3-beta1
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 +26 -0
- package/dsivd-prestations-ng-v15.2.3-beta1.tgz +0 -0
- package/esm2020/foehn-checkables/foehn-checkable-group.component.mjs +9 -4
- package/esm2020/foehn-checkables/foehn-select.component.mjs +4 -17
- package/esm2020/foehn-page/foehn-page.component.mjs +10 -8
- package/esm2020/foehn-table/foehn-table-column-configuration.mjs +1 -1
- package/esm2020/foehn-table/foehn-table.component.mjs +12 -9
- package/esm2020/gesdem/gesdem-handler.service.mjs +2 -1
- package/esm2020/sdk-dictionary/default-dictionary.mjs +8 -5
- package/fesm2015/dsivd-prestations-ng.mjs +41 -41
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +41 -41
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-checkables/foehn-checkable-group.component.d.ts +1 -1
- package/foehn-checkables/foehn-select.component.d.ts +0 -9
- package/foehn-page/foehn-page.component.d.ts +1 -0
- package/foehn-table/foehn-table-column-configuration.d.ts +5 -0
- package/foehn-table/foehn-table.component.d.ts +3 -2
- package/package.json +1 -1
- package/dsivd-prestations-ng-v15.2.0.tgz +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgZone, OnChanges, OnInit, SimpleChanges
|
|
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
|
}
|
|
@@ -56,6 +56,7 @@ export declare class FoehnPageComponent implements OnDestroy, OnChanges, OnInit
|
|
|
56
56
|
hasBlockingSupportAlert: Observable<boolean>;
|
|
57
57
|
displayUserCategory: Observable<boolean>;
|
|
58
58
|
displayLoginMessages: Observable<DisplayLoginMessagesData>;
|
|
59
|
+
loginMessagesHidden: boolean;
|
|
59
60
|
isBrowserSupported: boolean;
|
|
60
61
|
isApplePlatform: boolean;
|
|
61
62
|
browserLinkTitlePrefix: string;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { IconDefinition } from '@fortawesome/fontawesome-common-types';
|
|
1
2
|
export declare class FoehnTableColumnConfiguration<T> {
|
|
2
3
|
id: string;
|
|
3
4
|
columnLabelKey: string;
|
|
4
5
|
isImportant?: (item: T) => boolean;
|
|
6
|
+
iconGetter?: (item: T) => {
|
|
7
|
+
icon: IconDefinition;
|
|
8
|
+
label: string;
|
|
9
|
+
};
|
|
5
10
|
valueGetter: (item: T) => string;
|
|
6
11
|
routerLinkGetter?: (item: T) => string;
|
|
7
12
|
sortAttribute?: string;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } 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>;
|
|
7
8
|
itemsPerPage: number;
|
|
8
9
|
id: string;
|
|
9
10
|
previousLabel: string;
|
|
@@ -29,5 +30,5 @@ export declare class FoehnTableComponent implements OnChanges {
|
|
|
29
30
|
triggerSort(sortAttribute: string): void;
|
|
30
31
|
private buildFilteredList;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnTableComponent, 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>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnTableComponent, "foehn-table", never, { "actionButtonsTemplate": "actionButtonsTemplate"; "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>;
|
|
33
34
|
}
|
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.
|
|
39
|
+
"version": "15.2.3-beta1",
|
|
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
|