@dsivd/prestations-ng 14.5.17-beta1 → 14.5.19
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 +12 -7
- package/bundles/dsivd-prestations-ng.umd.js +37 -70
- package/bundles/dsivd-prestations-ng.umd.js.map +1 -1
- package/dsivd-prestations-ng-v14.5.19.tgz +0 -0
- package/esm2015/abstract-page-component.js +4 -6
- package/esm2015/foehn-confirm-modal/foehn-confirm-modal-content.js +1 -1
- package/esm2015/foehn-confirm-modal/foehn-confirm-modal.component.js +2 -2
- package/esm2015/foehn-list/foehn-list.component.js +2 -4
- package/esm2015/foehn-page/foehn-page.component.js +1 -2
- package/esm2015/foehn-table/foehn-table.component.js +2 -4
- package/esm2015/helpers/object.helper.js +13 -12
- package/esm2015/sdk-session-info/session-info.service.js +23 -52
- package/fesm2015/dsivd-prestations-ng.js +38 -71
- package/fesm2015/dsivd-prestations-ng.js.map +1 -1
- package/foehn-confirm-modal/foehn-confirm-modal-content.d.ts +1 -0
- package/package.json +1 -1
- package/sdk-session-info/session-info.service.d.ts +1 -8
- package/dsivd-prestations-ng-v14.5.17-beta1.tgz +0 -0
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"ng-update": {
|
|
37
37
|
"migrations": "./schematics/migration-collection.json"
|
|
38
38
|
},
|
|
39
|
-
"version": "14.5.
|
|
39
|
+
"version": "14.5.19",
|
|
40
40
|
"main": "bundles/dsivd-prestations-ng.umd.js",
|
|
41
41
|
"module": "fesm2015/dsivd-prestations-ng.js",
|
|
42
42
|
"es2015": "fesm2015/dsivd-prestations-ng.js",
|
|
@@ -1,24 +1,17 @@
|
|
|
1
|
-
import { NgZone } from '@angular/core';
|
|
2
1
|
import { HttpClient } from '@angular/common/http';
|
|
3
2
|
import { Observable } from 'rxjs';
|
|
4
3
|
import { SessionInfoData } from './session-info-data';
|
|
5
|
-
import { GrowlBrokerService } from '../foehn-growl/growl-broker.service';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare const SESSION_INFO_API_URL = "api/sessionInfo/data";
|
|
8
6
|
export declare class SessionInfo {
|
|
9
7
|
private http;
|
|
10
|
-
private growlService;
|
|
11
|
-
private ngZone;
|
|
12
8
|
private sessionData;
|
|
13
9
|
private pulling_;
|
|
14
10
|
private neverConnected_;
|
|
15
|
-
|
|
16
|
-
private timeoutLogError;
|
|
17
|
-
constructor(http: HttpClient, growlService: GrowlBrokerService, ngZone: NgZone);
|
|
11
|
+
constructor(http: HttpClient);
|
|
18
12
|
get data(): Observable<SessionInfoData>;
|
|
19
13
|
set neverConnected(neverConnected: boolean);
|
|
20
14
|
get neverConnected(): boolean;
|
|
21
|
-
private logErrorNeverConnectedIsNotSet;
|
|
22
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SessionInfo, never>;
|
|
23
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<SessionInfo>;
|
|
24
17
|
}
|
|
Binary file
|