@operato/scene-openlayers 10.0.0-beta.68 → 10.0.0
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/dist/ol-marker.d.ts +10 -10
- package/package.json +3 -3
package/dist/ol-marker.d.ts
CHANGED
|
@@ -41,21 +41,21 @@ declare const OpenLayersMarker_base: (new (...args: any[]) => {
|
|
|
41
41
|
fontSize: any;
|
|
42
42
|
__cache__: any;
|
|
43
43
|
created(): void;
|
|
44
|
-
added(parent:
|
|
45
|
-
removed(parent:
|
|
44
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
45
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
46
46
|
ready(): Promise<void>;
|
|
47
47
|
_readyInvoked: boolean;
|
|
48
48
|
invokeReady(): void | Promise<void>;
|
|
49
49
|
touch(): void;
|
|
50
|
-
clearCache(...attrs:
|
|
51
|
-
removeSelf(completely
|
|
50
|
+
clearCache(...attrs: string[]): void;
|
|
51
|
+
removeSelf(completely?: boolean): void;
|
|
52
52
|
resetAnimation(): void;
|
|
53
53
|
dispose(): void;
|
|
54
54
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
55
55
|
get disposed(): boolean;
|
|
56
56
|
isLayer(): boolean;
|
|
57
57
|
isGroup(): boolean;
|
|
58
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
58
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
59
59
|
isLine(): boolean;
|
|
60
60
|
isRoot(): boolean;
|
|
61
61
|
isRootModel(): boolean;
|
|
@@ -67,17 +67,17 @@ declare const OpenLayersMarker_base: (new (...args: any[]) => {
|
|
|
67
67
|
isConnectable(): boolean;
|
|
68
68
|
isIdentifiable(): boolean;
|
|
69
69
|
isPositionable(): boolean;
|
|
70
|
-
replaceRefids(replaceMap:
|
|
71
|
-
get(property:
|
|
70
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
71
|
+
get(property: string): any;
|
|
72
72
|
set(props: any, propval?: any): any;
|
|
73
|
-
getState(property:
|
|
73
|
+
getState(property: string): any;
|
|
74
74
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
75
75
|
get model(): any;
|
|
76
76
|
get state(): import("@hatiolab/things-scene").State;
|
|
77
77
|
get refid(): any;
|
|
78
78
|
get hierarchy(): any;
|
|
79
|
-
get volatile():
|
|
80
|
-
_applyProps(target:
|
|
79
|
+
get volatile(): string[];
|
|
80
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
81
81
|
move(offset: {
|
|
82
82
|
x: number;
|
|
83
83
|
y: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-openlayers",
|
|
3
3
|
"description": "OpenLayers component for things-scene",
|
|
4
|
-
"version": "10.0.0
|
|
4
|
+
"version": "10.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"things-scene": true,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@hatiolab/things-scene": "^10.0.0
|
|
28
|
+
"@hatiolab/things-scene": "^10.0.0",
|
|
29
29
|
"ol": "^8.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"prettier --write"
|
|
55
55
|
]
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "22356adaad4df093f25fa74316c1e0c6effbef8e"
|
|
58
58
|
}
|