@operato/scene-bpmn 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.
|
@@ -81,6 +81,7 @@ declare const BPMNContainerBase_base: (new (...args: any[]) => {
|
|
|
81
81
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
82
82
|
get model(): any;
|
|
83
83
|
get state(): import("@hatiolab/things-scene").State;
|
|
84
|
+
get refid(): any;
|
|
84
85
|
get hierarchy(): any;
|
|
85
86
|
get volatile(): never[];
|
|
86
87
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -175,7 +176,7 @@ declare const BPMNContainerBase_base: (new (...args: any[]) => {
|
|
|
175
176
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
176
177
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
177
178
|
findAnchor(name: string): any;
|
|
178
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
179
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
179
180
|
getContext(component?: unknown): any;
|
|
180
181
|
get root(): import("@hatiolab/things-scene").Component;
|
|
181
182
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -220,9 +221,13 @@ declare const BPMNContainerBase_base: (new (...args: any[]) => {
|
|
|
220
221
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
221
222
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
222
223
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
224
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
223
225
|
on(name: string | object, callback: Function, context?: any): any;
|
|
226
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
224
227
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
228
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
225
229
|
once(name: string | object, callback: Function, context?: any): any;
|
|
230
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
226
231
|
trigger(name: string, ...args: any[]): any;
|
|
227
232
|
delegate_on(delegator: any): any;
|
|
228
233
|
delegate_off(delegator: any): any;
|
|
@@ -81,6 +81,7 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
81
81
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
82
82
|
get model(): any;
|
|
83
83
|
get state(): import("@hatiolab/things-scene").State;
|
|
84
|
+
get refid(): any;
|
|
84
85
|
get hierarchy(): any;
|
|
85
86
|
get volatile(): never[];
|
|
86
87
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -175,7 +176,7 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
175
176
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
176
177
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
177
178
|
findAnchor(name: string): any;
|
|
178
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
179
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
179
180
|
getContext(component?: unknown): any;
|
|
180
181
|
get root(): import("@hatiolab/things-scene").Component;
|
|
181
182
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -220,9 +221,13 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
220
221
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
221
222
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
222
223
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
224
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
223
225
|
on(name: string | object, callback: Function, context?: any): any;
|
|
226
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
224
227
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
228
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
225
229
|
once(name: string | object, callback: Function, context?: any): any;
|
|
230
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
226
231
|
trigger(name: string, ...args: any[]): any;
|
|
227
232
|
delegate_on(delegator: any): any;
|
|
228
233
|
delegate_off(delegator: any): any;
|
|
@@ -322,6 +327,7 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
322
327
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
323
328
|
get model(): any;
|
|
324
329
|
get state(): import("@hatiolab/things-scene").State;
|
|
330
|
+
get refid(): any;
|
|
325
331
|
get hierarchy(): any;
|
|
326
332
|
get volatile(): never[];
|
|
327
333
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -412,7 +418,7 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
412
418
|
findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
|
|
413
419
|
capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
|
|
414
420
|
findAnchor(name: string): any;
|
|
415
|
-
isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
|
|
421
|
+
isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
|
|
416
422
|
getContext(component?: unknown): any;
|
|
417
423
|
get root(): import("@hatiolab/things-scene").Component;
|
|
418
424
|
get rootModel(): import("@hatiolab/things-scene").Component;
|
|
@@ -456,9 +462,13 @@ declare const BPMNControlBase_base: (new (...args: any[]) => {
|
|
|
456
462
|
toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
457
463
|
toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
458
464
|
toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
|
|
465
|
+
on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
459
466
|
on(name: string | object, callback: Function, context?: any): any;
|
|
467
|
+
off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
|
|
460
468
|
off(name?: string | object, callback?: Function, context?: any): any;
|
|
469
|
+
once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
|
|
461
470
|
once(name: string | object, callback: Function, context?: any): any;
|
|
471
|
+
trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
|
|
462
472
|
trigger(name: string, ...args: any[]): any;
|
|
463
473
|
delegate_on(delegator: any): any;
|
|
464
474
|
delegate_off(delegator: any): any;
|
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.65",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"module": "dist/index.js",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
36
|
-
"@things-factory/builder": "^10.0.0-
|
|
37
|
-
"@things-factory/operato-board": "^10.0.0-
|
|
36
|
+
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
37
|
+
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
38
38
|
"@types/lodash-es": "^4.17.5",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
40
|
"@typescript-eslint/parser": "^8.0.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"prettier --write"
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
|
|
64
64
|
}
|