@operato/scene-label 10.0.0-beta.30 → 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.
package/dist/barcode.d.ts CHANGED
@@ -40,6 +40,8 @@ declare const Barcode_base: (new (...args: any[]) => {
40
40
  added(parent: any): void;
41
41
  removed(parent: any): void;
42
42
  ready(): Promise<void>;
43
+ _readyInvoked: boolean;
44
+ invokeReady(): void | Promise<void>;
43
45
  touch(): void;
44
46
  clearCache(...attrs: any[]): void;
45
47
  removeSelf(completely: any): void;
@@ -68,6 +70,7 @@ declare const Barcode_base: (new (...args: any[]) => {
68
70
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
69
71
  get model(): any;
70
72
  get state(): import("@hatiolab/things-scene").State;
73
+ get refid(): any;
71
74
  get hierarchy(): any;
72
75
  get volatile(): never[];
73
76
  _applyProps(target: any, props: any, options: any): any;
@@ -158,7 +161,7 @@ declare const Barcode_base: (new (...args: any[]) => {
158
161
  findAll(s: string | ((c: Component) => boolean), ...others: any[]): any[] | undefined;
159
162
  capture(x: number, y: number, except?: (c: Component) => boolean): any;
160
163
  findAnchor(name: string): any;
161
- isDescendible(container: Component): boolean;
164
+ isDescendible(container: Component | any): boolean;
162
165
  getContext(component?: unknown): any;
163
166
  get root(): Component;
164
167
  get rootModel(): Component;
@@ -202,9 +205,13 @@ declare const Barcode_base: (new (...args: any[]) => {
202
205
  toLocal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
203
206
  toGlobal(x: number, y: number, top?: Component): import("@hatiolab/things-scene").POINT;
204
207
  toOther(x: number, y: number, target: 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;
205
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;
206
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;
207
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;
208
215
  trigger(name: string, ...args: any[]): any;
209
216
  delegate_on(delegator: any): any;
210
217
  delegate_off(delegator: any): any;
@@ -40,6 +40,8 @@ declare const LabelPrinter_base: (new (...args: any[]) => {
40
40
  added(parent: any): void;
41
41
  removed(parent: any): void;
42
42
  ready(): Promise<void>;
43
+ _readyInvoked: boolean;
44
+ invokeReady(): void | Promise<void>;
43
45
  touch(): void;
44
46
  clearCache(...attrs: any[]): void;
45
47
  removeSelf(completely: any): void;
@@ -68,6 +70,7 @@ declare const LabelPrinter_base: (new (...args: any[]) => {
68
70
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
69
71
  get model(): any;
70
72
  get state(): import("@hatiolab/things-scene").State;
73
+ get refid(): any;
71
74
  get hierarchy(): any;
72
75
  get volatile(): never[];
73
76
  _applyProps(target: any, props: any, options: any): any;
@@ -158,7 +161,7 @@ declare const LabelPrinter_base: (new (...args: any[]) => {
158
161
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
159
162
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
160
163
  findAnchor(name: string): any;
161
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
164
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
162
165
  getContext(component?: unknown): any;
163
166
  get root(): import("@hatiolab/things-scene").Component;
164
167
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -202,9 +205,13 @@ declare const LabelPrinter_base: (new (...args: any[]) => {
202
205
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
203
206
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
204
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;
205
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;
206
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;
207
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;
208
215
  trigger(name: string, ...args: any[]): any;
209
216
  delegate_on(delegator: any): any;
210
217
  delegate_off(delegator: any): any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@operato/scene-label",
3
3
  "description": "Barcode Label component for things-scene",
4
- "version": "10.0.0-beta.30",
4
+ "version": "10.0.0-beta.68",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "things-scene": true,
@@ -18,14 +18,11 @@
18
18
  "directory": "packages/label"
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",
@@ -35,8 +32,6 @@
35
32
  },
36
33
  "devDependencies": {
37
34
  "@hatiolab/prettier-config": "^1.0.0",
38
- "@things-factory/builder": "^10.0.0-beta.1",
39
- "@things-factory/operato-board": "^10.0.0-beta.1",
40
35
  "@types/codemirror": "^5.60.5",
41
36
  "@types/w3c-web-usb": "^1.0.5",
42
37
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -63,5 +58,5 @@
63
58
  "prettier --write"
64
59
  ]
65
60
  },
66
- "gitHead": "06b35b1726ec4f27ee76657ce341c6c6f3ba1b3a"
61
+ "gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
67
62
  }