@operato/scene-graphql 10.0.0-beta.30 → 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/graphql-client.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
52
52
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
53
53
|
get model(): any;
|
|
54
54
|
get state(): import("@hatiolab/things-scene").State;
|
|
55
|
+
get refid(): any;
|
|
55
56
|
get hierarchy(): any;
|
|
56
57
|
get volatile(): never[];
|
|
57
58
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -148,7 +149,7 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
148
149
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
149
150
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
150
151
|
findAnchor(name: string): any;
|
|
151
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
152
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
152
153
|
getContext(component?: unknown): any;
|
|
153
154
|
get root(): import("@hatiolab/things-scene").Component;
|
|
154
155
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -193,9 +194,13 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
193
194
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
194
195
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
195
196
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
197
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
196
198
|
on(name: string | object, callback: Function, context?: any): any;
|
|
199
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
197
200
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
201
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
198
202
|
once(name: string | object, callback: Function, context?: any): any;
|
|
203
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
199
204
|
trigger(name: string, ...args: any[]): any;
|
|
200
205
|
delegate_on(delegator: any): any;
|
|
201
206
|
delegate_off(delegator: any): any;
|
|
@@ -295,6 +300,7 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
295
300
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
296
301
|
get model(): any;
|
|
297
302
|
get state(): import("@hatiolab/things-scene").State;
|
|
303
|
+
get refid(): any;
|
|
298
304
|
get hierarchy(): any;
|
|
299
305
|
get volatile(): never[];
|
|
300
306
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -385,7 +391,7 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
385
391
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
386
392
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
387
393
|
findAnchor(name: string): any;
|
|
388
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
394
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
389
395
|
getContext(component?: unknown): any;
|
|
390
396
|
get root(): import("@hatiolab/things-scene").Component;
|
|
391
397
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -429,9 +435,13 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
429
435
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
430
436
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
431
437
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
438
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
432
439
|
on(name: string | object, callback: Function, context?: any): any;
|
|
440
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
433
441
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
442
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
434
443
|
once(name: string | object, callback: Function, context?: any): any;
|
|
444
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
435
445
|
trigger(name: string, ...args: any[]): any;
|
|
436
446
|
delegate_on(delegator: any): any;
|
|
437
447
|
delegate_off(delegator: any): any;
|
|
@@ -51,6 +51,7 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
51
51
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
52
52
|
get model(): any;
|
|
53
53
|
get state(): import("@hatiolab/things-scene").State;
|
|
54
|
+
get refid(): any;
|
|
54
55
|
get hierarchy(): any;
|
|
55
56
|
get volatile(): never[];
|
|
56
57
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -147,7 +148,7 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
147
148
|
findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
|
|
148
149
|
capture(x: number, y: number, except?: (c: Component) => boolean): any;
|
|
149
150
|
findAnchor(name: string): any;
|
|
150
|
-
isDescendible(container: Component): boolean;
|
|
151
|
+
isDescendible(container: Component | any): boolean;
|
|
151
152
|
getContext(component?: unknown): any;
|
|
152
153
|
get root(): Component;
|
|
153
154
|
get rootModel(): Component;
|
|
@@ -192,9 +193,13 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
192
193
|
toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
193
194
|
toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
194
195
|
toOther(x: number, y: number, target: Component): import("@hatiolab/things-scene").POINT;
|
|
196
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
195
197
|
on(name: string | object, callback: Function, context?: any): any;
|
|
198
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
196
199
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
200
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
197
201
|
once(name: string | object, callback: Function, context?: any): any;
|
|
202
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
198
203
|
trigger(name: string, ...args: any[]): any;
|
|
199
204
|
delegate_on(delegator: any): any;
|
|
200
205
|
delegate_off(delegator: any): any;
|
|
@@ -294,6 +299,7 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
294
299
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
295
300
|
get model(): any;
|
|
296
301
|
get state(): import("@hatiolab/things-scene").State;
|
|
302
|
+
get refid(): any;
|
|
297
303
|
get hierarchy(): any;
|
|
298
304
|
get volatile(): never[];
|
|
299
305
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -384,7 +390,7 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
384
390
|
findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
|
|
385
391
|
capture(x: number, y: number, except?: (c: Component) => boolean): any;
|
|
386
392
|
findAnchor(name: string): any;
|
|
387
|
-
isDescendible(container: Component): boolean;
|
|
393
|
+
isDescendible(container: Component | any): boolean;
|
|
388
394
|
getContext(component?: unknown): any;
|
|
389
395
|
get root(): Component;
|
|
390
396
|
get rootModel(): Component;
|
|
@@ -428,9 +434,13 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
428
434
|
toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
429
435
|
toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
|
|
430
436
|
toOther(x: number, y: number, target: Component): import("@hatiolab/things-scene").POINT;
|
|
437
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
431
438
|
on(name: string | object, callback: Function, context?: any): any;
|
|
439
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
432
440
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
441
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
433
442
|
once(name: string | object, callback: Function, context?: any): any;
|
|
443
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
434
444
|
trigger(name: string, ...args: any[]): any;
|
|
435
445
|
delegate_on(delegator: any): any;
|
|
436
446
|
delegate_off(delegator: any): any;
|
|
@@ -51,6 +51,7 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
51
51
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
52
52
|
get model(): any;
|
|
53
53
|
get state(): import("@hatiolab/things-scene").State;
|
|
54
|
+
get refid(): any;
|
|
54
55
|
get hierarchy(): any;
|
|
55
56
|
get volatile(): never[];
|
|
56
57
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -147,7 +148,7 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
147
148
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
148
149
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
149
150
|
findAnchor(name: string): any;
|
|
150
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
151
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
151
152
|
getContext(component?: unknown): any;
|
|
152
153
|
get root(): import("@hatiolab/things-scene").Component;
|
|
153
154
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -192,9 +193,13 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
192
193
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
193
194
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
194
195
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
196
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
195
197
|
on(name: string | object, callback: Function, context?: any): any;
|
|
198
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
196
199
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
200
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
197
201
|
once(name: string | object, callback: Function, context?: any): any;
|
|
202
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
198
203
|
trigger(name: string, ...args: any[]): any;
|
|
199
204
|
delegate_on(delegator: any): any;
|
|
200
205
|
delegate_off(delegator: any): any;
|
|
@@ -294,6 +299,7 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
294
299
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
295
300
|
get model(): any;
|
|
296
301
|
get state(): import("@hatiolab/things-scene").State;
|
|
302
|
+
get refid(): any;
|
|
297
303
|
get hierarchy(): any;
|
|
298
304
|
get volatile(): never[];
|
|
299
305
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -384,7 +390,7 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
384
390
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
385
391
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
386
392
|
findAnchor(name: string): any;
|
|
387
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
393
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
388
394
|
getContext(component?: unknown): any;
|
|
389
395
|
get root(): import("@hatiolab/things-scene").Component;
|
|
390
396
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -428,9 +434,13 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
428
434
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
429
435
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
430
436
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
437
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
431
438
|
on(name: string | object, callback: Function, context?: any): any;
|
|
439
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
432
440
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
441
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
433
442
|
once(name: string | object, callback: Function, context?: any): any;
|
|
443
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
434
444
|
trigger(name: string, ...args: any[]): any;
|
|
435
445
|
delegate_on(delegator: any): any;
|
|
436
446
|
delegate_off(delegator: any): any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-graphql",
|
|
3
3
|
"description": "Graphql datasource component for things-scene",
|
|
4
|
-
"version": "10.0.0-beta.
|
|
4
|
+
"version": "10.0.0-beta.65",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
37
|
-
"@things-factory/builder": "^10.0.0-
|
|
38
|
-
"@things-factory/operato-board": "^10.0.0-
|
|
37
|
+
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
38
|
+
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
40
|
"@typescript-eslint/parser": "^8.0.0",
|
|
41
41
|
"@web/dev-server": "^0.1.28",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"prettier --write"
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
|
|
65
65
|
}
|