@dsivd/prestations-ng 16.4.10-beta.2 → 16.4.10-beta.4
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 +14 -0
- package/UPGRADING_V16.md +7 -0
- package/dsivd-prestations-ng-v16.4.10-beta.4.tgz +0 -0
- package/esm2020/foehn-menu-prestation/foehn-list-summary/foehn-list-summary.component.mjs +25 -6
- package/esm2020/foehn-remaining-alerts-summary/foehn-remaining-alerts-summary.component.mjs +36 -13
- package/esm2020/helpers/object.helper.mjs +16 -2
- package/esm2020/sdk-appinfo/application-info.service.mjs +17 -5
- package/esm2020/sdk-dictionary/default-dictionary.mjs +6 -2
- package/fesm2015/dsivd-prestations-ng.mjs +90 -20
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +90 -20
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-menu-prestation/foehn-list-summary/foehn-list-summary.component.d.ts +7 -3
- package/foehn-remaining-alerts-summary/foehn-remaining-alerts-summary.component.d.ts +12 -4
- package/helpers/object.helper.d.ts +3 -1
- package/package.json +1 -1
- package/sdk-appinfo/application-info.service.d.ts +2 -1
- package/dsivd-prestations-ng-v16.4.10-beta.2.tgz +0 -0
|
@@ -10,16 +10,20 @@ export declare class FoehnListSummaryComponent extends FoehnInputComponent<Foehn
|
|
|
10
10
|
private confirmModalService;
|
|
11
11
|
private ngZone;
|
|
12
12
|
tableActionButtons: TemplateRef<unknown>;
|
|
13
|
-
list: FoehnListItem[];
|
|
14
13
|
getListItemTitle: (item: FoehnListItem) => string;
|
|
15
14
|
showAsTable: boolean;
|
|
16
|
-
listItemDescriptions: FoehnListItemDescription[];
|
|
17
15
|
itemRemoved: EventEmitter<void>;
|
|
18
16
|
itemEdit: EventEmitter<number>;
|
|
19
17
|
listCopyForTable: FoehnListItem[];
|
|
20
18
|
tableConfiguration: FoehnTableColumnConfiguration<FoehnListItem>[];
|
|
21
19
|
tableSort: TableSort;
|
|
20
|
+
private list_;
|
|
21
|
+
private listItemDescriptions_;
|
|
22
22
|
constructor(confirmModalService: FoehnConfirmModalService, ngZone: NgZone);
|
|
23
|
+
get list(): FoehnListItem[];
|
|
24
|
+
set list(items: FoehnListItem[]);
|
|
25
|
+
get listItemDescriptions(): FoehnListItemDescription[];
|
|
26
|
+
set listItemDescriptions(items: FoehnListItemDescription[]);
|
|
23
27
|
trackFoehnListItem: TrackByFunction<FoehnListItem>;
|
|
24
28
|
trackFoehnListItemDescription: TrackByFunction<FoehnListItemDescription>;
|
|
25
29
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -31,5 +35,5 @@ export declare class FoehnListSummaryComponent extends FoehnInputComponent<Foehn
|
|
|
31
35
|
private sortNow;
|
|
32
36
|
private updateListCopyForTable;
|
|
33
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnListSummaryComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnListSummaryComponent, "foehn-list-summary", never, { "
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnListSummaryComponent, "foehn-list-summary", never, { "getListItemTitle": "getListItemTitle"; "showAsTable": "showAsTable"; "list": "list"; "listItemDescriptions": "listItemDescriptions"; }, { "itemRemoved": "itemRemoved"; "itemEdit": "itemEdit"; }, never, never, false, never>;
|
|
35
39
|
}
|
|
@@ -1,12 +1,20 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
2
|
import { GesdemHandlerService } from '../gesdem/gesdem-handler.service';
|
|
3
|
+
import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
|
|
4
|
+
import { SdkDictionaryService } from '../sdk-dictionary/sdk-dictionary.service';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export declare class FoehnRemainingAlertsSummaryComponent {
|
|
5
7
|
private gesdemService;
|
|
6
|
-
|
|
8
|
+
private applicationInfoService;
|
|
9
|
+
private dictionaryService;
|
|
7
10
|
remainingErrorNamesToIgnore: string[];
|
|
8
11
|
hasRemainingErrors: Observable<boolean>;
|
|
9
|
-
|
|
12
|
+
remainingErrorsLabelSubject: BehaviorSubject<string>;
|
|
13
|
+
remainingErrorsMessage: Observable<string>;
|
|
14
|
+
private readonly DEFAULT_REMAINING_ERRORS_MSG_KEY;
|
|
15
|
+
private reference;
|
|
16
|
+
constructor(gesdemService: GesdemHandlerService, applicationInfoService: ApplicationInfoService, dictionaryService: SdkDictionaryService);
|
|
17
|
+
set remainingErrorsLabel(msg: string);
|
|
10
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoehnRemainingAlertsSummaryComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnRemainingAlertsSummaryComponent, "foehn-remaining-alerts-summary", never, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoehnRemainingAlertsSummaryComponent, "foehn-remaining-alerts-summary", never, { "remainingErrorNamesToIgnore": "remainingErrorNamesToIgnore"; "remainingErrorsLabel": "remainingErrorsLabel"; }, {}, never, never, false, never>;
|
|
12
20
|
}
|
|
@@ -7,9 +7,11 @@ export declare class ObjectHelper {
|
|
|
7
7
|
*
|
|
8
8
|
* @param value1 as first value to compare to
|
|
9
9
|
* @param value2 as value to be compared to
|
|
10
|
+
* @param skipFunctionTypeCompare boolean (default true) (when set to false compares functions)
|
|
10
11
|
* @returns boolean
|
|
11
12
|
*/
|
|
12
|
-
static isEqual(value1: unknown, value2: unknown): boolean;
|
|
13
|
+
static isEqual(value1: unknown, value2: unknown, skipFunctionTypeCompare?: boolean): boolean;
|
|
14
|
+
static isDifferent(value1: unknown, value2: unknown, skipFunctionType?: boolean): boolean;
|
|
13
15
|
static hasAnyValue(value: any): boolean;
|
|
14
16
|
static isEmpty(value: any): boolean;
|
|
15
17
|
/**
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ng-update": {
|
|
41
41
|
"migrations": "./schematics/migration-collection.json"
|
|
42
42
|
},
|
|
43
|
-
"version": "16.4.10-beta.
|
|
43
|
+
"version": "16.4.10-beta.4",
|
|
44
44
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
45
45
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
46
46
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { FoehnPageService } from '../foehn-page/foehn-page.service';
|
|
4
|
+
import { FormError } from '../form-error';
|
|
4
5
|
import { ApplicationInfo, EtapeInfo } from './application-info';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare const APP_INFO_API_URL = "api/applicationInfo";
|
|
@@ -18,7 +19,7 @@ export declare class ApplicationInfoService {
|
|
|
18
19
|
get firstEtapeInfo(): Observable<EtapeInfo>;
|
|
19
20
|
get currentEtapeInfo(): Observable<EtapeInfo>;
|
|
20
21
|
getSafeCyberLoginUrl(): Observable<string>;
|
|
21
|
-
getSafeSupportFormUrl(reference?: string): Observable<string>;
|
|
22
|
+
getSafeSupportFormUrl(reference?: string, errors?: FormError[]): Observable<string>;
|
|
22
23
|
getSafeSupportFormTitle(): Observable<string>;
|
|
23
24
|
getSafeEspacesSecuriseUrl(): Observable<string>;
|
|
24
25
|
private setApplicationInfo;
|
|
Binary file
|