@operato/scene-bpmn 10.0.0-beta.65 → 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.
|
@@ -54,6 +54,8 @@ declare const BPMNContainerBase_base: (new (...args: any[]) => {
|
|
|
54
54
|
added(parent: any): void;
|
|
55
55
|
removed(parent: any): void;
|
|
56
56
|
ready(): Promise<void>;
|
|
57
|
+
_readyInvoked: boolean;
|
|
58
|
+
invokeReady(): void | Promise<void>;
|
|
57
59
|
touch(): void;
|
|
58
60
|
clearCache(...attrs: any[]): void;
|
|
59
61
|
removeSelf(completely: any): void;
|
|
@@ -54,6 +54,8 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
54
54
|
added(parent: any): void;
|
|
55
55
|
removed(parent: any): void;
|
|
56
56
|
ready(): Promise<void>;
|
|
57
|
+
_readyInvoked: boolean;
|
|
58
|
+
invokeReady(): void | Promise<void>;
|
|
57
59
|
touch(): void;
|
|
58
60
|
clearCache(...attrs: any[]): void;
|
|
59
61
|
removeSelf(completely: any): void;
|
|
@@ -299,6 +301,8 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
299
301
|
added(parent: any): void;
|
|
300
302
|
removed(parent: any): void;
|
|
301
303
|
ready(): Promise<void>;
|
|
304
|
+
_readyInvoked: boolean;
|
|
305
|
+
invokeReady(): void | Promise<void>;
|
|
302
306
|
touch(): void;
|
|
303
307
|
clearCache(...attrs: any[]): void;
|
|
304
308
|
removeSelf(completely: any): void;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/scene-bpmn",
|
|
3
3
|
"description": "bpmn components for things-scene",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "10.0.0-beta.
|
|
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/bpmn"
|
|
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",
|
|
@@ -33,8 +30,6 @@
|
|
|
33
30
|
},
|
|
34
31
|
"devDependencies": {
|
|
35
32
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
36
|
-
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
37
|
-
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
38
33
|
"@types/lodash-es": "^4.17.5",
|
|
39
34
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
35
|
"@typescript-eslint/parser": "^8.0.0",
|
|
@@ -60,5 +55,5 @@
|
|
|
60
55
|
"prettier --write"
|
|
61
56
|
]
|
|
62
57
|
},
|
|
63
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
|
|
64
59
|
}
|