@operato/scene-google-map 10.0.0-beta.22 → 10.0.0-beta.68

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.
@@ -41,6 +41,8 @@ declare const GMapMarker_base: (new (...args: any[]) => {
41
41
  added(parent: any): void;
42
42
  removed(parent: any): void;
43
43
  ready(): Promise<void>;
44
+ _readyInvoked: boolean;
45
+ invokeReady(): void | Promise<void>;
44
46
  touch(): void;
45
47
  clearCache(...attrs: any[]): void;
46
48
  removeSelf(completely: any): void;
@@ -50,7 +52,7 @@ declare const GMapMarker_base: (new (...args: any[]) => {
50
52
  get disposed(): boolean;
51
53
  isLayer(): boolean;
52
54
  isGroup(): boolean;
53
- isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
55
+ isContainer(): this is import("@hatiolab/things-scene").Container;
54
56
  isLine(): boolean;
55
57
  isRoot(): boolean;
56
58
  isRootModel(): boolean;
@@ -66,9 +68,10 @@ declare const GMapMarker_base: (new (...args: any[]) => {
66
68
  get(property: any): any;
67
69
  set(props: any, propval?: any): any;
68
70
  getState(property: any): any;
69
- setState(props: any, propval?: any): any;
71
+ setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
70
72
  get model(): any;
71
- get state(): any;
73
+ get state(): import("@hatiolab/things-scene").State;
74
+ get refid(): any;
72
75
  get hierarchy(): any;
73
76
  get volatile(): never[];
74
77
  _applyProps(target: any, props: any, options: any): any;
@@ -159,7 +162,7 @@ declare const GMapMarker_base: (new (...args: any[]) => {
159
162
  findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
160
163
  capture(x: number, y: number, except?: (c: Component) => boolean): any;
161
164
  findAnchor(name: string): any;
162
- isDescendible(container: Component): boolean;
165
+ isDescendible(container: Component | any): boolean;
163
166
  getContext(component?: unknown): any;
164
167
  get root(): Component;
165
168
  get rootModel(): Component;
@@ -203,9 +206,13 @@ declare const GMapMarker_base: (new (...args: any[]) => {
203
206
  toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
204
207
  toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
205
208
  toOther(x: number, y: number, target: Component): import("@hatiolab/things-scene").POINT;
209
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
206
210
  on(name: string | object, callback: Function, context?: any): any;
211
+ 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
212
  off(name?: string | object, callback?: Function, context?: any): any;
213
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
208
214
  once(name: string | object, callback: Function, context?: any): any;
215
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
209
216
  trigger(name: string, ...args: any[]): any;
210
217
  delegate_on(delegator: any): any;
211
218
  delegate_off(delegator: any): any;
@@ -41,6 +41,8 @@ declare const GMapPath_base: (new (...args: any[]) => {
41
41
  added(parent: any): void;
42
42
  removed(parent: any): void;
43
43
  ready(): Promise<void>;
44
+ _readyInvoked: boolean;
45
+ invokeReady(): void | Promise<void>;
44
46
  touch(): void;
45
47
  clearCache(...attrs: any[]): void;
46
48
  removeSelf(completely: any): void;
@@ -50,7 +52,7 @@ declare const GMapPath_base: (new (...args: any[]) => {
50
52
  get disposed(): boolean;
51
53
  isLayer(): boolean;
52
54
  isGroup(): boolean;
53
- isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
55
+ isContainer(): this is import("@hatiolab/things-scene").Container;
54
56
  isLine(): boolean;
55
57
  isRoot(): boolean;
56
58
  isRootModel(): boolean;
@@ -66,9 +68,10 @@ declare const GMapPath_base: (new (...args: any[]) => {
66
68
  get(property: any): any;
67
69
  set(props: any, propval?: any): any;
68
70
  getState(property: any): any;
69
- setState(props: any, propval?: any): any;
71
+ setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
70
72
  get model(): any;
71
- get state(): any;
73
+ get state(): import("@hatiolab/things-scene").State;
74
+ get refid(): any;
72
75
  get hierarchy(): any;
73
76
  get volatile(): never[];
74
77
  _applyProps(target: any, props: any, options: any): any;
@@ -159,7 +162,7 @@ declare const GMapPath_base: (new (...args: any[]) => {
159
162
  findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
160
163
  capture(x: number, y: number, except?: (c: Component) => boolean): any;
161
164
  findAnchor(name: string): any;
162
- isDescendible(container: Component): boolean;
165
+ isDescendible(container: Component | any): boolean;
163
166
  getContext(component?: unknown): any;
164
167
  get root(): Component;
165
168
  get rootModel(): Component;
@@ -203,9 +206,13 @@ declare const GMapPath_base: (new (...args: any[]) => {
203
206
  toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
204
207
  toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
205
208
  toOther(x: number, y: number, target: Component): import("@hatiolab/things-scene").POINT;
209
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
206
210
  on(name: string | object, callback: Function, context?: any): any;
211
+ 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
212
  off(name?: string | object, callback?: Function, context?: any): any;
213
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
208
214
  once(name: string | object, callback: Function, context?: any): any;
215
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
209
216
  trigger(name: string, ...args: any[]): any;
210
217
  delegate_on(delegator: any): any;
211
218
  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.22",
5
+ "version": "10.0.0-beta.68",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.js",
@@ -18,22 +18,17 @@
18
18
  "directory": "packages/google-map"
19
19
  },
20
20
  "scripts": {
21
- "serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
22
- "serve:dev": "npm run serve",
23
21
  "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
24
22
  "build": "tsc",
25
23
  "prepublishOnly": "tsc",
26
24
  "lint": "eslint src/ && prettier \"src/**/*.ts\" --check",
27
- "format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write",
28
- "migration": "things-factory-migration"
25
+ "format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
29
26
  },
30
27
  "dependencies": {
31
28
  "@hatiolab/things-scene": "^10.0.0-beta.1"
32
29
  },
33
30
  "devDependencies": {
34
31
  "@hatiolab/prettier-config": "^1.0.0",
35
- "@things-factory/builder": "^10.0.0-beta.1",
36
- "@things-factory/operato-board": "^10.0.0-beta.1",
37
32
  "@types/googlemaps": "^3.43.3",
38
33
  "@typescript-eslint/eslint-plugin": "^8.0.0",
39
34
  "@typescript-eslint/parser": "^8.0.0",
@@ -59,5 +54,5 @@
59
54
  "prettier --write"
60
55
  ]
61
56
  },
62
- "gitHead": "f48e52f4f5fdc30ec06af9da7cf253f6e29cfb0e"
57
+ "gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
63
58
  }