raain-app 1.2.2 → 1.2.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/esm2020/raain-configuration/raain-configuration.component.mjs +44 -4
- package/esm2020/raain-map/raain-map.component.mjs +3 -3
- package/fesm2015/raain-app.mjs +45 -5
- package/fesm2015/raain-app.mjs.map +1 -1
- package/fesm2020/raain-app.mjs +45 -5
- package/fesm2020/raain-app.mjs.map +1 -1
- package/package.json +2 -2
- package/raain-configuration/raain-configuration.component.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "raain-app",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"author": "contact@raaio",
|
|
5
5
|
"homepage": "https://r2r.app",
|
|
6
6
|
"description": "raain app",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"leaflet": "^1.9.3",
|
|
27
27
|
"pixi.js": "^5.3.12",
|
|
28
28
|
"raain-model": "^2.4.6",
|
|
29
|
-
"raain-ui": "^2.1.
|
|
29
|
+
"raain-ui": "^2.1.9",
|
|
30
30
|
"rxjs": "~7.5.0",
|
|
31
31
|
"tslib": "^2.3.0",
|
|
32
32
|
"web-animations-js": "^2.3.2",
|
|
@@ -9,6 +9,7 @@ export declare class RaainConfigurationComponent implements AfterViewChecked, On
|
|
|
9
9
|
currentWidth: number;
|
|
10
10
|
minPoint: XYType;
|
|
11
11
|
maxPoint: XYType;
|
|
12
|
+
logStyle: boolean;
|
|
12
13
|
protected canvasElement: ElementRef;
|
|
13
14
|
private configurationElement;
|
|
14
15
|
private onDrag;
|
|
@@ -25,5 +26,5 @@ export declare class RaainConfigurationComponent implements AfterViewChecked, On
|
|
|
25
26
|
private change;
|
|
26
27
|
private updateMapSize;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<RaainConfigurationComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RaainConfigurationComponent, "raain-configuration", never, { "points": "points"; "currentHeight": "currentHeight"; "currentWidth": "currentWidth"; "minPoint": "minPoint"; "maxPoint": "maxPoint"; }, { "changedPoints": "changedPoints"; }, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RaainConfigurationComponent, "raain-configuration", never, { "points": "points"; "currentHeight": "currentHeight"; "currentWidth": "currentWidth"; "minPoint": "minPoint"; "maxPoint": "maxPoint"; "logStyle": "logStyle"; }, { "changedPoints": "changedPoints"; }, never, never, false, never>;
|
|
29
30
|
}
|