@operato/scene-google-map 10.0.0-beta.22 → 10.0.0-beta.65
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/gmap-marker.d.ts +9 -4
- package/dist/gmap-path.d.ts +9 -4
- package/package.json +4 -4
package/dist/gmap-marker.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ declare const GMapMarker_base: (new (...args: any[]) => {
|
|
|
50
50
|
get disposed(): boolean;
|
|
51
51
|
isLayer(): boolean;
|
|
52
52
|
isGroup(): boolean;
|
|
53
|
-
isContainer(): this is import("@hatiolab/things-scene
|
|
53
|
+
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
54
54
|
isLine(): boolean;
|
|
55
55
|
isRoot(): boolean;
|
|
56
56
|
isRootModel(): boolean;
|
|
@@ -66,9 +66,10 @@ declare const GMapMarker_base: (new (...args: any[]) => {
|
|
|
66
66
|
get(property: any): any;
|
|
67
67
|
set(props: any, propval?: any): any;
|
|
68
68
|
getState(property: any): any;
|
|
69
|
-
setState(props:
|
|
69
|
+
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
70
70
|
get model(): any;
|
|
71
|
-
get state():
|
|
71
|
+
get state(): import("@hatiolab/things-scene").State;
|
|
72
|
+
get refid(): any;
|
|
72
73
|
get hierarchy(): any;
|
|
73
74
|
get volatile(): never[];
|
|
74
75
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -159,7 +160,7 @@ declare const GMapMarker_base: (new (...args: any[]) => {
|
|
|
159
160
|
findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
|
|
160
161
|
capture(x: number, y: number, except?: (c: Component) => boolean): any;
|
|
161
162
|
findAnchor(name: string): any;
|
|
162
|
-
isDescendible(container: Component): boolean;
|
|
163
|
+
isDescendible(container: Component | any): boolean;
|
|
163
164
|
getContext(component?: unknown): any;
|
|
164
165
|
get root(): Component;
|
|
165
166
|
get rootModel(): Component;
|
|
@@ -203,9 +204,13 @@ declare const GMapMarker_base: (new (...args: any[]) => {
|
|
|
203
204
|
toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
204
205
|
toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
205
206
|
toOther(x: number, y: number, target: Component): import("@hatiolab/things-scene").POINT;
|
|
207
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
206
208
|
on(name: string | object, callback: Function, context?: any): any;
|
|
209
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
207
210
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
211
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
208
212
|
once(name: string | object, callback: Function, context?: any): any;
|
|
213
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
209
214
|
trigger(name: string, ...args: any[]): any;
|
|
210
215
|
delegate_on(delegator: any): any;
|
|
211
216
|
delegate_off(delegator: any): any;
|
package/dist/gmap-path.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ declare const GMapPath_base: (new (...args: any[]) => {
|
|
|
50
50
|
get disposed(): boolean;
|
|
51
51
|
isLayer(): boolean;
|
|
52
52
|
isGroup(): boolean;
|
|
53
|
-
isContainer(): this is import("@hatiolab/things-scene
|
|
53
|
+
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
54
54
|
isLine(): boolean;
|
|
55
55
|
isRoot(): boolean;
|
|
56
56
|
isRootModel(): boolean;
|
|
@@ -66,9 +66,10 @@ declare const GMapPath_base: (new (...args: any[]) => {
|
|
|
66
66
|
get(property: any): any;
|
|
67
67
|
set(props: any, propval?: any): any;
|
|
68
68
|
getState(property: any): any;
|
|
69
|
-
setState(props:
|
|
69
|
+
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
70
70
|
get model(): any;
|
|
71
|
-
get state():
|
|
71
|
+
get state(): import("@hatiolab/things-scene").State;
|
|
72
|
+
get refid(): any;
|
|
72
73
|
get hierarchy(): any;
|
|
73
74
|
get volatile(): never[];
|
|
74
75
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -159,7 +160,7 @@ declare const GMapPath_base: (new (...args: any[]) => {
|
|
|
159
160
|
findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
|
|
160
161
|
capture(x: number, y: number, except?: (c: Component) => boolean): any;
|
|
161
162
|
findAnchor(name: string): any;
|
|
162
|
-
isDescendible(container: Component): boolean;
|
|
163
|
+
isDescendible(container: Component | any): boolean;
|
|
163
164
|
getContext(component?: unknown): any;
|
|
164
165
|
get root(): Component;
|
|
165
166
|
get rootModel(): Component;
|
|
@@ -203,9 +204,13 @@ declare const GMapPath_base: (new (...args: any[]) => {
|
|
|
203
204
|
toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
204
205
|
toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
205
206
|
toOther(x: number, y: number, target: Component): import("@hatiolab/things-scene").POINT;
|
|
207
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
206
208
|
on(name: string | object, callback: Function, context?: any): any;
|
|
209
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
207
210
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
211
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
208
212
|
once(name: string | object, callback: Function, context?: any): any;
|
|
213
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
209
214
|
trigger(name: string, ...args: any[]): any;
|
|
210
215
|
delegate_on(delegator: any): any;
|
|
211
216
|
delegate_off(delegator: any): any;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/scene-google-map",
|
|
3
3
|
"description": "Google map integration component for things-scene",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "10.0.0-beta.
|
|
5
|
+
"version": "10.0.0-beta.65",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"module": "dist/index.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
35
|
-
"@things-factory/builder": "^10.0.0-
|
|
36
|
-
"@things-factory/operato-board": "^10.0.0-
|
|
35
|
+
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
36
|
+
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
37
37
|
"@types/googlemaps": "^3.43.3",
|
|
38
38
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
39
39
|
"@typescript-eslint/parser": "^8.0.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"prettier --write"
|
|
60
60
|
]
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
|
|
63
63
|
}
|