raain-app 1.6.11 → 1.6.13
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 +11 -1
- package/esm2020/profile.service.mjs +2 -2
- package/esm2020/raain-details/raain-details.component.mjs +13 -9
- package/esm2020/tools/CompareManager.mjs +16 -9
- package/esm2020/tools/RefreshManager.mjs +36 -11
- package/fesm2015/raain-app.mjs +62 -26
- package/fesm2015/raain-app.mjs.map +1 -1
- package/fesm2020/raain-app.mjs +62 -26
- package/fesm2020/raain-app.mjs.map +1 -1
- package/package.json +2 -2
- package/tools/CompareManager.d.ts +1 -0
- package/tools/RefreshManager.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "raain-app",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.13",
|
|
4
4
|
"author": "contact@radartorain.com",
|
|
5
5
|
"homepage": "https://app.radartorain.com",
|
|
6
6
|
"description": "RadarToRain app",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"ionicons": "~6.0.3",
|
|
26
26
|
"leaflet": "~1.9.3",
|
|
27
27
|
"pixi.js": "~5.3.12",
|
|
28
|
-
"raain-model": "~3.1.
|
|
28
|
+
"raain-model": "~3.1.2",
|
|
29
29
|
"raain-ui": "~2.3.24",
|
|
30
30
|
"rxjs": "~7.5.0",
|
|
31
31
|
"tslib": "~2.3.0",
|
|
@@ -21,6 +21,7 @@ export declare class RefreshManager {
|
|
|
21
21
|
sumValues: CartesianMapValue[];
|
|
22
22
|
provider: string;
|
|
23
23
|
timeStepInMinutes: number;
|
|
24
|
+
lastError: string;
|
|
24
25
|
protected closeRefreshTimer: Subject<unknown>;
|
|
25
26
|
protected countsPeriod: {
|
|
26
27
|
percentImages?: XYType[];
|
|
@@ -57,7 +58,6 @@ export declare class RefreshManager {
|
|
|
57
58
|
begin: Date;
|
|
58
59
|
end: Date;
|
|
59
60
|
});
|
|
60
|
-
static Delay(ms: number): Promise<unknown>;
|
|
61
61
|
setMethods(onRefreshInProgress: (countPeriods: {
|
|
62
62
|
percentImages?: XYType[];
|
|
63
63
|
queueRunning?: number;
|