@operato/scene-gauge 10.0.0-beta.31 → 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.
@@ -32,6 +32,8 @@ declare const GaugeCircle_base: (new (...args: any[]) => {
32
32
  added(parent: any): void;
33
33
  removed(parent: any): void;
34
34
  ready(): Promise<void>;
35
+ _readyInvoked: boolean;
36
+ invokeReady(): void | Promise<void>;
35
37
  touch(): void;
36
38
  clearCache(...attrs: any[]): void;
37
39
  removeSelf(completely: any): void;
@@ -59,6 +61,7 @@ declare const GaugeCircle_base: (new (...args: any[]) => {
59
61
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
60
62
  get model(): any;
61
63
  get state(): import("@hatiolab/things-scene").State;
64
+ get refid(): any;
62
65
  get hierarchy(): any;
63
66
  get volatile(): never[];
64
67
  _applyProps(target: any, props: any, options: any): any;
@@ -32,6 +32,8 @@ declare const GaugeHorizon_base: (new (...args: any[]) => {
32
32
  added(parent: any): void;
33
33
  removed(parent: any): void;
34
34
  ready(): Promise<void>;
35
+ _readyInvoked: boolean;
36
+ invokeReady(): void | Promise<void>;
35
37
  touch(): void;
36
38
  clearCache(...attrs: any[]): void;
37
39
  removeSelf(completely: any): void;
@@ -59,6 +61,7 @@ declare const GaugeHorizon_base: (new (...args: any[]) => {
59
61
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
60
62
  get model(): any;
61
63
  get state(): import("@hatiolab/things-scene").State;
64
+ get refid(): any;
62
65
  get hierarchy(): any;
63
66
  get volatile(): never[];
64
67
  _applyProps(target: any, props: any, options: any): any;
@@ -275,6 +278,8 @@ declare const GaugeHorizon_base: (new (...args: any[]) => {
275
278
  added(parent: any): void;
276
279
  removed(parent: any): void;
277
280
  ready(): Promise<void>;
281
+ _readyInvoked: boolean;
282
+ invokeReady(): void | Promise<void>;
278
283
  touch(): void;
279
284
  clearCache(...attrs: any[]): void;
280
285
  removeSelf(completely: any): void;
@@ -303,6 +308,7 @@ declare const GaugeHorizon_base: (new (...args: any[]) => {
303
308
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
304
309
  get model(): any;
305
310
  get state(): import("@hatiolab/things-scene").State;
311
+ get refid(): any;
306
312
  get hierarchy(): any;
307
313
  get volatile(): never[];
308
314
  _applyProps(target: any, props: any, options: any): any;
@@ -32,6 +32,8 @@ declare const GaugeVertical_base: (new (...args: any[]) => {
32
32
  added(parent: any): void;
33
33
  removed(parent: any): void;
34
34
  ready(): Promise<void>;
35
+ _readyInvoked: boolean;
36
+ invokeReady(): void | Promise<void>;
35
37
  touch(): void;
36
38
  clearCache(...attrs: any[]): void;
37
39
  removeSelf(completely: any): void;
@@ -59,6 +61,7 @@ declare const GaugeVertical_base: (new (...args: any[]) => {
59
61
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
60
62
  get model(): any;
61
63
  get state(): import("@hatiolab/things-scene").State;
64
+ get refid(): any;
62
65
  get hierarchy(): any;
63
66
  get volatile(): never[];
64
67
  _applyProps(target: any, props: any, options: any): any;
@@ -275,6 +278,8 @@ declare const GaugeVertical_base: (new (...args: any[]) => {
275
278
  added(parent: any): void;
276
279
  removed(parent: any): void;
277
280
  ready(): Promise<void>;
281
+ _readyInvoked: boolean;
282
+ invokeReady(): void | Promise<void>;
278
283
  touch(): void;
279
284
  clearCache(...attrs: any[]): void;
280
285
  removeSelf(completely: any): void;
@@ -303,6 +308,7 @@ declare const GaugeVertical_base: (new (...args: any[]) => {
303
308
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
304
309
  get model(): any;
305
310
  get state(): import("@hatiolab/things-scene").State;
311
+ get refid(): any;
306
312
  get hierarchy(): any;
307
313
  get volatile(): never[];
308
314
  _applyProps(target: any, props: any, options: any): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/scene-gauge",
3
- "version": "10.0.0-beta.31",
3
+ "version": "10.0.0-beta.68",
4
4
  "type": "module",
5
5
  "description": "Things Scene Gauge Component",
6
6
  "author": "heartyoh",
@@ -18,22 +18,17 @@
18
18
  "directory": "packages/gauge"
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
  "@typescript-eslint/eslint-plugin": "^8.0.0",
38
33
  "@typescript-eslint/parser": "^8.0.0",
39
34
  "@web/dev-server": "^0.1.28",
@@ -58,5 +53,5 @@
58
53
  "prettier --write"
59
54
  ]
60
55
  },
61
- "gitHead": "fdafbd04fd083a43690be937230c7d96a3ee5da3"
56
+ "gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
62
57
  }