@operato/scene-grist 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.
@@ -45,6 +45,8 @@ declare const GristAction_base: (new (...args: any[]) => {
45
45
  added(parent: any): void;
46
46
  removed(parent: any): void;
47
47
  ready(): Promise<void>;
48
+ _readyInvoked: boolean;
49
+ invokeReady(): void | Promise<void>;
48
50
  touch(): void;
49
51
  clearCache(...attrs: any[]): void;
50
52
  removeSelf(completely: any): void;
@@ -72,6 +74,7 @@ declare const GristAction_base: (new (...args: any[]) => {
72
74
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
73
75
  get model(): any;
74
76
  get state(): import("@hatiolab/things-scene").State;
77
+ get refid(): any;
75
78
  get hierarchy(): any;
76
79
  get volatile(): never[];
77
80
  _applyProps(target: any, props: any, options: any): any;
@@ -288,6 +291,8 @@ declare const GristAction_base: (new (...args: any[]) => {
288
291
  added(parent: any): void;
289
292
  removed(parent: any): void;
290
293
  ready(): Promise<void>;
294
+ _readyInvoked: boolean;
295
+ invokeReady(): void | Promise<void>;
291
296
  touch(): void;
292
297
  clearCache(...attrs: any[]): void;
293
298
  removeSelf(completely: any): void;
@@ -316,6 +321,7 @@ declare const GristAction_base: (new (...args: any[]) => {
316
321
  setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
317
322
  get model(): any;
318
323
  get state(): import("@hatiolab/things-scene").State;
324
+ get refid(): any;
319
325
  get hierarchy(): any;
320
326
  get volatile(): never[];
321
327
  _applyProps(target: any, props: any, options: any): any;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-grist",
3
3
  "description": "Grist UI component for things-scene",
4
4
  "author": "heartyoh",
5
- "version": "10.0.0-beta.31",
5
+ "version": "10.0.0-beta.68",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.js",
@@ -18,14 +18,11 @@
18
18
  "directory": "packages/grist"
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
  "@typescript-eslint/eslint-plugin": "^8.0.0",
41
36
  "@typescript-eslint/parser": "^8.0.0",
42
37
  "@web/dev-server": "^0.1.28",
@@ -61,5 +56,5 @@
61
56
  "prettier --write"
62
57
  ]
63
58
  },
64
- "gitHead": "fdafbd04fd083a43690be937230c7d96a3ee5da3"
59
+ "gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
65
60
  }