@operato/scene-mpi 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.
@@ -68,6 +68,7 @@ declare const AutoClicker_base: (new (...args: any[]) => {
68
68
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
69
69
  get model(): any;
70
70
  get state(): import("@hatiolab/things-scene").State;
71
+ get refid(): any;
71
72
  get hierarchy(): any;
72
73
  get volatile(): never[];
73
74
  _applyProps(target: any, props: any, options: any): any;
@@ -158,7 +159,7 @@ declare const AutoClicker_base: (new (...args: any[]) => {
158
159
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
159
160
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
160
161
  findAnchor(name: string): any;
161
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
162
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
162
163
  getContext(component?: unknown): any;
163
164
  get root(): import("@hatiolab/things-scene").Component;
164
165
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -202,9 +203,13 @@ declare const AutoClicker_base: (new (...args: any[]) => {
202
203
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
203
204
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
204
205
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
206
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
205
207
  on(name: string | object, callback: Function, context?: any): any;
208
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
206
209
  off(name?: string | object, callback?: Function, context?: any): any;
210
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
207
211
  once(name: string | object, callback: Function, context?: any): any;
212
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
208
213
  trigger(name: string, ...args: any[]): any;
209
214
  delegate_on(delegator: any): any;
210
215
  delegate_off(delegator: any): any;
@@ -72,6 +72,7 @@ declare const BootButton_base: (new (...args: any[]) => {
72
72
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
73
73
  get model(): any;
74
74
  get state(): import("@hatiolab/things-scene").State;
75
+ get refid(): any;
75
76
  get hierarchy(): any;
76
77
  get volatile(): never[];
77
78
  _applyProps(target: any, props: any, options: any): any;
@@ -162,7 +163,7 @@ declare const BootButton_base: (new (...args: any[]) => {
162
163
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
163
164
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
164
165
  findAnchor(name: string): any;
165
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
166
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
166
167
  getContext(component?: unknown): any;
167
168
  get root(): import("@hatiolab/things-scene").Component;
168
169
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -206,9 +207,13 @@ declare const BootButton_base: (new (...args: any[]) => {
206
207
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
207
208
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
208
209
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
210
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
209
211
  on(name: string | object, callback: Function, context?: any): any;
212
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
210
213
  off(name?: string | object, callback?: Function, context?: any): any;
214
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
211
215
  once(name: string | object, callback: Function, context?: any): any;
216
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
212
217
  trigger(name: string, ...args: any[]): any;
213
218
  delegate_on(delegator: any): any;
214
219
  delegate_off(delegator: any): any;
@@ -70,6 +70,7 @@ declare const Indicator_base: (new (...args: any[]) => {
70
70
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
71
71
  get model(): any;
72
72
  get state(): import("@hatiolab/things-scene").State;
73
+ get refid(): any;
73
74
  get hierarchy(): any;
74
75
  get volatile(): never[];
75
76
  _applyProps(target: any, props: any, options: any): any;
@@ -160,7 +161,7 @@ declare const Indicator_base: (new (...args: any[]) => {
160
161
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
161
162
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
162
163
  findAnchor(name: string): any;
163
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
164
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
164
165
  getContext(component?: unknown): any;
165
166
  get root(): import("@hatiolab/things-scene").Component;
166
167
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -204,9 +205,13 @@ declare const Indicator_base: (new (...args: any[]) => {
204
205
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
205
206
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
206
207
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
208
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
207
209
  on(name: string | object, callback: Function, context?: any): any;
210
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
208
211
  off(name?: string | object, callback?: Function, context?: any): any;
212
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
209
213
  once(name: string | object, callback: Function, context?: any): any;
214
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
210
215
  trigger(name: string, ...args: any[]): any;
211
216
  delegate_on(delegator: any): any;
212
217
  delegate_off(delegator: any): any;
@@ -72,6 +72,7 @@ declare const ReplyButton_base: (new (...args: any[]) => {
72
72
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
73
73
  get model(): any;
74
74
  get state(): import("@hatiolab/things-scene").State;
75
+ get refid(): any;
75
76
  get hierarchy(): any;
76
77
  get volatile(): never[];
77
78
  _applyProps(target: any, props: any, options: any): any;
@@ -162,7 +163,7 @@ declare const ReplyButton_base: (new (...args: any[]) => {
162
163
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
163
164
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
164
165
  findAnchor(name: string): any;
165
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
166
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
166
167
  getContext(component?: unknown): any;
167
168
  get root(): import("@hatiolab/things-scene").Component;
168
169
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -206,9 +207,13 @@ declare const ReplyButton_base: (new (...args: any[]) => {
206
207
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
207
208
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
208
209
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
210
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
209
211
  on(name: string | object, callback: Function, context?: any): any;
212
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
210
213
  off(name?: string | object, callback?: Function, context?: any): any;
214
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
211
215
  once(name: string | object, callback: Function, context?: any): any;
216
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
212
217
  trigger(name: string, ...args: any[]): any;
213
218
  delegate_on(delegator: any): any;
214
219
  delegate_off(delegator: any): any;
@@ -68,6 +68,7 @@ declare const SevenSegment_base: (new (...args: any[]) => {
68
68
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
69
69
  get model(): any;
70
70
  get state(): import("@hatiolab/things-scene").State;
71
+ get refid(): any;
71
72
  get hierarchy(): any;
72
73
  get volatile(): never[];
73
74
  _applyProps(target: any, props: any, options: any): any;
@@ -158,7 +159,7 @@ declare const SevenSegment_base: (new (...args: any[]) => {
158
159
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
159
160
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
160
161
  findAnchor(name: string): any;
161
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
162
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
162
163
  getContext(component?: unknown): any;
163
164
  get root(): import("@hatiolab/things-scene").Component;
164
165
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -202,9 +203,13 @@ declare const SevenSegment_base: (new (...args: any[]) => {
202
203
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
203
204
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
204
205
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
206
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
205
207
  on(name: string | object, callback: Function, context?: any): any;
208
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
206
209
  off(name?: string | object, callback?: Function, context?: any): any;
210
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
207
211
  once(name: string | object, callback: Function, context?: any): any;
212
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
208
213
  trigger(name: string, ...args: any[]): any;
209
214
  delegate_on(delegator: any): any;
210
215
  delegate_off(delegator: any): any;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-mpi",
3
3
  "description": "Multi-purpose indicator integration component for things-scene",
4
4
  "author": "heartyoh",
5
- "version": "10.0.0-beta.30",
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-beta.1",
36
- "@things-factory/operato-board": "^10.0.0-beta.1",
35
+ "@things-factory/builder": "^10.0.0-zeta.1",
36
+ "@things-factory/operato-board": "^10.0.0-zeta.1",
37
37
  "@typescript-eslint/eslint-plugin": "^8.0.0",
38
38
  "@typescript-eslint/parser": "^8.0.0",
39
39
  "@web/dev-server": "^0.1.28",
@@ -58,5 +58,5 @@
58
58
  "prettier --write"
59
59
  ]
60
60
  },
61
- "gitHead": "06b35b1726ec4f27ee76657ce341c6c6f3ba1b3a"
61
+ "gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
62
62
  }