@operato/scene-bpmn 1.1.9 → 1.1.10
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/CHANGELOG.md +9 -0
- package/dist/bpmn-data-object.d.ts +2 -1
- package/dist/bpmn-data-object.js +13 -0
- package/dist/bpmn-data-object.js.map +1 -1
- package/dist/bpmn-data-store.d.ts +2 -0
- package/dist/bpmn-data-store.js +13 -0
- package/dist/bpmn-data-store.js.map +1 -1
- package/dist/bpmn-gateway.d.ts +2 -1
- package/dist/bpmn-gateway.js +13 -0
- package/dist/bpmn-gateway.js.map +1 -1
- package/dist/bpmn-message.d.ts +2 -0
- package/dist/bpmn-message.js +13 -0
- package/dist/bpmn-message.js.map +1 -1
- package/dist/templates/bpmn-comment.d.ts +4 -0
- package/dist/templates/bpmn-comment.js +5 -1
- package/dist/templates/bpmn-comment.js.map +1 -1
- package/dist/templates/bpmn-data-object.d.ts +1 -0
- package/dist/templates/bpmn-data-object.js +2 -1
- package/dist/templates/bpmn-data-object.js.map +1 -1
- package/dist/templates/bpmn-data-store.d.ts +1 -0
- package/dist/templates/bpmn-data-store.js +2 -1
- package/dist/templates/bpmn-data-store.js.map +1 -1
- package/dist/templates/bpmn-event.d.ts +1 -0
- package/dist/templates/bpmn-event.js +2 -1
- package/dist/templates/bpmn-event.js.map +1 -1
- package/dist/templates/bpmn-gateway.d.ts +1 -0
- package/dist/templates/bpmn-gateway.js +2 -1
- package/dist/templates/bpmn-gateway.js.map +1 -1
- package/dist/templates/bpmn-message.d.ts +1 -0
- package/dist/templates/bpmn-message.js +2 -1
- package/dist/templates/bpmn-message.js.map +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +5 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +5 -0
- package/logs/application-2022-11-06-14.log +18 -0
- package/logs/connections-2022-11-06-14.log +70 -0
- package/package.json +2 -2
- package/src/bpmn-data-object.ts +17 -1
- package/src/bpmn-data-store.ts +17 -1
- package/src/bpmn-gateway.ts +17 -1
- package/src/bpmn-message.ts +17 -1
- package/src/templates/bpmn-comment.ts +5 -1
- package/src/templates/bpmn-data-object.ts +2 -1
- package/src/templates/bpmn-data-store.ts +2 -1
- package/src/templates/bpmn-event.ts +2 -1
- package/src/templates/bpmn-gateway.ts +2 -1
- package/src/templates/bpmn-message.ts +2 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [1.1.10](https://github.com/things-scene/operato-scene/compare/v1.1.9...v1.1.10) (2022-11-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* bpmn label positions ([805c888](https://github.com/things-scene/operato-scene/commit/805c888a9f51b1094e2af7edd27c8a22e933b1e6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
### [1.1.9](https://github.com/things-scene/operato-scene/compare/v1.1.8...v1.1.9) (2022-11-06)
|
|
7
16
|
|
|
8
17
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Properties } from '@hatiolab/things-scene';
|
|
1
|
+
import { Properties, BOUNDS } from '@hatiolab/things-scene';
|
|
2
2
|
import BPMNControlBase from './base/bpmn-control-base';
|
|
3
3
|
export default class BPMNDataObject extends BPMNControlBase {
|
|
4
4
|
private imageElement?;
|
|
@@ -25,6 +25,7 @@ export default class BPMNDataObject extends BPMNControlBase {
|
|
|
25
25
|
})[];
|
|
26
26
|
help: string;
|
|
27
27
|
};
|
|
28
|
+
get textBounds(): BOUNDS;
|
|
28
29
|
render(ctx: CanvasRenderingContext2D): void;
|
|
29
30
|
onchange(after: Properties, before: Properties): void;
|
|
30
31
|
getImageElement(): HTMLImageElement | undefined;
|
package/dist/bpmn-data-object.js
CHANGED
|
@@ -38,6 +38,19 @@ export default class BPMNDataObject extends BPMNControlBase {
|
|
|
38
38
|
static get nature() {
|
|
39
39
|
return NATURE;
|
|
40
40
|
}
|
|
41
|
+
get textBounds() {
|
|
42
|
+
var { left, top, width, height } = this.bounds;
|
|
43
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state;
|
|
44
|
+
paddingTop || (paddingTop = 0);
|
|
45
|
+
paddingLeft || (paddingLeft = 0);
|
|
46
|
+
paddingRight || (paddingRight = 0);
|
|
47
|
+
return {
|
|
48
|
+
left: left + paddingLeft,
|
|
49
|
+
top: top + paddingTop + height + 10,
|
|
50
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
51
|
+
height: 0
|
|
52
|
+
};
|
|
53
|
+
}
|
|
41
54
|
render(ctx) {
|
|
42
55
|
const { left, top, width, height } = this.bounds;
|
|
43
56
|
const { collection = false } = this.state;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-data-object.js","sourceRoot":"","sources":["../src/bpmn-data-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"bpmn-data-object.js","sourceRoot":"","sources":["../src/bpmn-data-object.ts"],"names":[],"mappings":"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","sourcesContent":["import { Component, Properties, BOUNDS } from '@hatiolab/things-scene'\n\nimport BPMNControlBase from './base/bpmn-control-base'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: false,\n properties: [\n {\n type: 'select',\n name: 'inout',\n label: 'inout',\n property: {\n options: [\n {\n display: '',\n value: ''\n },\n {\n display: 'input',\n value: 'input'\n },\n {\n display: 'output',\n value: 'output'\n }\n ]\n }\n },\n {\n type: 'checkbox',\n name: 'collection',\n label: 'collection'\n }\n ],\n help: '/bpmn/data-object/data-object'\n}\n\nexport default class BPMNDataObject extends BPMNControlBase {\n private imageElement?: HTMLImageElement\n private collectionImageElement?: HTMLImageElement\n\n static get nature() {\n return NATURE\n }\n\n get textBounds(): BOUNDS {\n var { left, top, width, height } = this.bounds\n var { paddingTop, paddingLeft, paddingRight } = this.state\n\n paddingTop ||= 0\n paddingLeft ||= 0\n paddingRight ||= 0\n\n return {\n left: left + paddingLeft,\n top: top + paddingTop + height + 10,\n width: Math.max(width - paddingLeft - paddingRight, 0),\n height: 0\n }\n }\n\n render(ctx: CanvasRenderingContext2D) {\n const { left, top, width, height } = this.bounds\n const { collection = false } = this.state\n\n const corner = (Math.min(width, height) * 2) / 5\n\n ctx.translate(left, top)\n ctx.beginPath()\n\n ctx.moveTo(width - corner, 0)\n ctx.lineTo(width - corner, corner)\n ctx.lineTo(width, corner)\n ctx.lineTo(width - corner, 0)\n this.drawStroke(ctx)\n\n ctx.beginPath()\n ctx.moveTo(0, 0)\n ctx.lineTo(width - corner, 0)\n ctx.lineTo(width - corner, corner)\n ctx.lineTo(width, corner)\n ctx.lineTo(width, height)\n ctx.lineTo(0, height)\n ctx.lineTo(0, 0)\n\n this.drawFill(ctx)\n this.drawStroke(ctx)\n\n ctx.beginPath()\n\n const image = this.getImageElement()\n if (image) {\n this.drawImage(ctx, image, 0, 0, corner, corner)\n }\n\n if (collection) {\n this.drawImage(ctx, this.getCollectionImageElement()!, (width - 16) / 2, height - 16, 16, 16)\n }\n\n ctx.translate(-left, -top)\n }\n\n onchange(after: Properties, before: Properties) {\n if ('inout' in after || 'collection' in after || 'strokeStyle' in after) {\n delete this.imageElement\n delete this.collectionImageElement\n }\n }\n\n getImageElement(): HTMLImageElement | undefined {\n if (!this.imageElement) {\n const { inout, strokeStyle } = this.state\n\n if (!inout) {\n return\n }\n\n const src: string = IMAGES[inout]\n if (!src) {\n return\n }\n\n this.imageElement = new Image()\n this.imageElement.src =\n 'data:image/svg+xml;charset=UTF-8;base64,' + btoa(src.replace(/{{strokeColor}}/g, strokeStyle))\n }\n\n return this.imageElement\n }\n\n getCollectionImageElement(): HTMLImageElement | undefined {\n if (!this.collectionImageElement) {\n const { strokeStyle } = this.state\n\n this.collectionImageElement = new Image()\n this.collectionImageElement.src =\n 'data:image/svg+xml;charset=UTF-8;base64,' + btoa(COLLECTION.replace(/{{strokeColor}}/g, strokeStyle))\n }\n\n return this.collectionImageElement\n }\n}\n\nComponent.register('bpmn-data-object', BPMNDataObject)\n\nconst IMAGES: { [type: string]: string } = {\n input: `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:none;stroke:{{strokeColor}};stroke-miterlimit:10;}\n </style>\n <path class=\"st0\" d=\"M19,13.8V8l9.5,9.5L19,27v-5.8H6.5v-7.5H19z\"/>\n </svg>\n `,\n output: `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <path class=\"st0\" d=\"M19,13.8V8l9.5,9.5L19,27v-5.8H6.5v-7.5H19z\"/>\n </svg>\n `\n}\n\nconst COLLECTION: string = `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <g>\n <rect x=\"5.5\" y=\"1.9\" class=\"st0\" width=\"3.3\" height=\"25.3\"/>\n <rect x=\"15.9\" y=\"1.9\" class=\"st0\" width=\"3.3\" height=\"25.3\"/>\n <rect x=\"26.2\" y=\"1.9\" class=\"st0\" width=\"3.3\" height=\"25.3\"/>\n </g>\n </svg>\n `\n"]}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BOUNDS } from '@hatiolab/things-scene';
|
|
1
2
|
import BPMNControlBase from './base/bpmn-control-base';
|
|
2
3
|
export default class BPMNDataStore extends BPMNControlBase {
|
|
3
4
|
static get nature(): {
|
|
@@ -7,5 +8,6 @@ export default class BPMNDataStore extends BPMNControlBase {
|
|
|
7
8
|
properties: never[];
|
|
8
9
|
help: string;
|
|
9
10
|
};
|
|
11
|
+
get textBounds(): BOUNDS;
|
|
10
12
|
render(ctx: CanvasRenderingContext2D): void;
|
|
11
13
|
}
|
package/dist/bpmn-data-store.js
CHANGED
|
@@ -11,6 +11,19 @@ export default class BPMNDataStore extends BPMNControlBase {
|
|
|
11
11
|
static get nature() {
|
|
12
12
|
return NATURE;
|
|
13
13
|
}
|
|
14
|
+
get textBounds() {
|
|
15
|
+
var { left, top, width, height } = this.bounds;
|
|
16
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state;
|
|
17
|
+
paddingTop || (paddingTop = 0);
|
|
18
|
+
paddingLeft || (paddingLeft = 0);
|
|
19
|
+
paddingRight || (paddingRight = 0);
|
|
20
|
+
return {
|
|
21
|
+
left: left + paddingLeft,
|
|
22
|
+
top: top + paddingTop + height + 10,
|
|
23
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
24
|
+
height: 0
|
|
25
|
+
};
|
|
26
|
+
}
|
|
14
27
|
render(ctx) {
|
|
15
28
|
const { left, top, width, height } = this.bounds;
|
|
16
29
|
const ry = Math.abs(height / 6);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-data-store.js","sourceRoot":"","sources":["../src/bpmn-data-store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"bpmn-data-store.js","sourceRoot":"","sources":["../src/bpmn-data-store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAU,MAAM,wBAAwB,CAAA;AAE1D,OAAO,eAAe,MAAM,0BAA0B,CAAA;AAEtD,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,KAAK;IAChB,UAAU,EAAE,EAAE;IACd,IAAI,EAAE,6BAA6B;CACpC,CAAA;AAED,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,eAAe;IACxD,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAED,IAAI,UAAU;QACZ,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAC9C,IAAI,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAE1D,UAAU,KAAV,UAAU,GAAK,CAAC,EAAA;QAChB,WAAW,KAAX,WAAW,GAAK,CAAC,EAAA;QACjB,YAAY,KAAZ,YAAY,GAAK,CAAC,EAAA;QAElB,OAAO;YACL,IAAI,EAAE,IAAI,GAAG,WAAW;YACxB,GAAG,EAAE,GAAG,GAAG,UAAU,GAAG,MAAM,GAAG,EAAE;YACnC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,WAAW,GAAG,YAAY,EAAE,CAAC,CAAC;YACtD,MAAM,EAAE,CAAC;SACV,CAAA;IACH,CAAC;IAED,MAAM,CAAC,GAA6B;QAClC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAChD,MAAM,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;QAC/B,MAAM,UAAU,GAAG,IAAI,CAAC,EAAE,CAAA;QAC1B,MAAM,QAAQ,GAAG,CAAC,CAAA;QAElB,GAAG,CAAC,SAAS,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;QACxB,GAAG,CAAC,SAAS,EAAE,CAAA;QAEf,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,EAAE,EAAE,EAAE,KAAK,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,EAAE,UAAU,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,EAAE,IAAI,CAAC,CAAA;QAExF,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;QAC1B,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;QAEjF,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;QACtB,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,KAAK,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;QAE7E,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;QACjB,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,GAAG,EAAE,CAAC,CAAA;QAC1B,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,CAAC,EAAE,MAAM,GAAG,EAAE,EAAE,KAAK,GAAG,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;QACjF,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;QAErB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;QAClB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;QAEpB,GAAG,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,iBAAiB,EAAE,aAAa,CAAC,CAAA","sourcesContent":["import { Component, BOUNDS } from '@hatiolab/things-scene'\n\nimport BPMNControlBase from './base/bpmn-control-base'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: false,\n properties: [],\n help: '/bpmn/data-store/data-store'\n}\n\nexport default class BPMNDataStore extends BPMNControlBase {\n static get nature() {\n return NATURE\n }\n\n get textBounds(): BOUNDS {\n var { left, top, width, height } = this.bounds\n var { paddingTop, paddingLeft, paddingRight } = this.state\n\n paddingTop ||= 0\n paddingLeft ||= 0\n paddingRight ||= 0\n\n return {\n left: left + paddingLeft,\n top: top + paddingTop + height + 10,\n width: Math.max(width - paddingLeft - paddingRight, 0),\n height: 0\n }\n }\n\n render(ctx: CanvasRenderingContext2D) {\n const { left, top, width, height } = this.bounds\n const ry = Math.abs(height / 6)\n const startAngle = Math.PI\n const endAngle = 0\n\n ctx.translate(left, top)\n ctx.beginPath()\n\n ctx.ellipse(width / 2, ry, width / 2, ry, 0, startAngle, startAngle - Math.PI * 2, true)\n\n ctx.moveTo(0, ry + ry / 2)\n ctx.ellipse(width / 2, ry + ry / 2, width / 2, ry, 0, startAngle, endAngle, true)\n\n ctx.moveTo(0, ry + ry)\n ctx.ellipse(width / 2, ry + ry, width / 2, ry, 0, startAngle, endAngle, true)\n\n ctx.moveTo(0, ry)\n ctx.lineTo(0, height - ry)\n ctx.ellipse(width / 2, height - ry, width / 2, ry, 0, startAngle, endAngle, true)\n ctx.lineTo(width, ry)\n\n this.drawFill(ctx)\n this.drawStroke(ctx)\n\n ctx.translate(-left, -top)\n }\n}\n\nComponent.register('bpmn-data-store', BPMNDataStore)\n"]}
|
package/dist/bpmn-gateway.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Properties } from '@hatiolab/things-scene';
|
|
1
|
+
import { BOUNDS, Properties } from '@hatiolab/things-scene';
|
|
2
2
|
import BPMNControlBase from './base/bpmn-control-base';
|
|
3
3
|
export default class BPMNGateway extends BPMNControlBase {
|
|
4
4
|
private imageElement?;
|
|
@@ -19,6 +19,7 @@ export default class BPMNGateway extends BPMNControlBase {
|
|
|
19
19
|
}[];
|
|
20
20
|
help: string;
|
|
21
21
|
};
|
|
22
|
+
get textBounds(): BOUNDS;
|
|
22
23
|
render(ctx: CanvasRenderingContext2D): void;
|
|
23
24
|
onchange(after: Properties, before: Properties): void;
|
|
24
25
|
getImageElement(): HTMLImageElement | undefined;
|
package/dist/bpmn-gateway.js
CHANGED
|
@@ -45,6 +45,19 @@ export default class BPMNGateway extends BPMNControlBase {
|
|
|
45
45
|
static get nature() {
|
|
46
46
|
return NATURE;
|
|
47
47
|
}
|
|
48
|
+
get textBounds() {
|
|
49
|
+
var { left, top, width, height } = this.bounds;
|
|
50
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state;
|
|
51
|
+
paddingTop || (paddingTop = 0);
|
|
52
|
+
paddingLeft || (paddingLeft = 0);
|
|
53
|
+
paddingRight || (paddingRight = 0);
|
|
54
|
+
return {
|
|
55
|
+
left: left + paddingLeft,
|
|
56
|
+
top: top + paddingTop + height + 10,
|
|
57
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
58
|
+
height: 0
|
|
59
|
+
};
|
|
60
|
+
}
|
|
48
61
|
render(ctx) {
|
|
49
62
|
var { left, top, width, height } = this.bounds;
|
|
50
63
|
ctx.translate(left, top);
|
package/dist/bpmn-gateway.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-gateway.js","sourceRoot":"","sources":["../src/bpmn-gateway.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"bpmn-gateway.js","sourceRoot":"","sources":["../src/bpmn-gateway.ts"],"names":[],"mappings":"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","sourcesContent":["import { BOUNDS, Component, Properties } from '@hatiolab/things-scene'\n\nimport BPMNControlBase from './base/bpmn-control-base'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: false,\n properties: [\n {\n type: 'select',\n label: 'gateway-type',\n name: 'gatewayType',\n property: {\n options: [\n {\n display: '',\n value: ''\n },\n {\n display: 'exclusive',\n value: 'exclusive'\n },\n {\n display: 'inclusive',\n value: 'inclusive'\n },\n {\n display: 'complex',\n value: 'complex'\n },\n {\n display: 'event based',\n value: 'event-based'\n },\n {\n display: 'parallel',\n value: 'parallel'\n }\n ]\n }\n }\n ],\n help: '/bpmn/gateway/gateway'\n}\n\nexport default class BPMNGateway extends BPMNControlBase {\n private imageElement?: HTMLImageElement\n\n static get nature() {\n return NATURE\n }\n\n get textBounds(): BOUNDS {\n var { left, top, width, height } = this.bounds\n var { paddingTop, paddingLeft, paddingRight } = this.state\n\n paddingTop ||= 0\n paddingLeft ||= 0\n paddingRight ||= 0\n\n return {\n left: left + paddingLeft,\n top: top + paddingTop + height + 10,\n width: Math.max(width - paddingLeft - paddingRight, 0),\n height: 0\n }\n }\n\n render(ctx: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n ctx.translate(left, top)\n ctx.beginPath()\n\n ctx.moveTo(width / 2, 0)\n ctx.lineTo(width, height / 2)\n ctx.lineTo(width / 2, height)\n ctx.lineTo(0, height / 2)\n ctx.lineTo(width / 2, 0)\n\n this.drawFill(ctx)\n this.drawStroke(ctx)\n\n ctx.beginPath()\n\n const image = this.getImageElement()\n if (image) {\n this.drawImage(ctx, image, width / 6, height / 6, (width * 2) / 3, (height * 2) / 3)\n }\n\n ctx.translate(-left, -top)\n }\n\n onchange(after: Properties, before: Properties) {\n if ('gatewayType' in after || 'strokeStyle' in after) {\n delete this.imageElement\n }\n }\n\n getImageElement(): HTMLImageElement | undefined {\n if (!this.imageElement) {\n const { gatewayType, strokeStyle } = this.state\n\n if (!gatewayType) {\n return\n }\n\n const src = IMAGES[gatewayType]\n if (!src) {\n return\n }\n\n this.imageElement = new Image()\n this.imageElement.src =\n 'data:image/svg+xml;charset=UTF-8;base64,' + btoa(src.replace(/{{strokeColor}}/g, strokeStyle))\n }\n\n return this.imageElement\n }\n}\n\nComponent.register('bpmn-gateway', BPMNGateway)\n\nconst IMAGES: { [type: string]: string } = {\n inclusive: `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <path class=\"st0\" d=\"M17.5,8.5c5,0,9,4,9,9s-4,9-9,9s-9-4-9-9S12.5,8.5,17.5,8.5 M17.5,6C11.1,6,6,11.1,6,17.5S11.1,29,17.5,29S29,23.9,29,17.5\n\t\tS23.9,6,17.5,6L17.5,6z\"/>\n </svg>\n `,\n exclusive: `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <rect class=\"st0\" x=\"6.5\" y=\"15.8\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.2487 17.5)\" width=\"22\" height=\"3.5\"/>\n <rect class=\"st0\" x=\"15.8\" y=\"6.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.2487 17.5)\" width=\"3.5\" height=\"22\"/>\n </svg>\n `,\n parallel: `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <rect class=\"st0\" x=\"16.3\" y=\"6.5\" width=\"3.5\" height=\"22\"/>\n <rect class=\"st0\" x=\"6.5\" y=\"16.2\" width=\"22\" height=\"3.5\"/>\n </svg>\n `,\n complex: `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <rect class=\"st0\" x=\"16.2\" y=\"6.5\" width=\"3.5\" height=\"22\"/>\n <rect class=\"st0\" x=\"6.5\" y=\"16.2\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.2487 17.5)\" width=\"22\" height=\"3.5\"/>\n <rect class=\"st0\" x=\"16.2\" y=\"6.5\" transform=\"matrix(0.7072 -0.707 0.707 0.7072 -7.2487 17.4966)\" width=\"3.5\" height=\"22\"/>\n <rect class=\"st0\" x=\"6.5\" y=\"16.2\" width=\"22\" height=\"3.5\"/>\n </svg>\n `,\n 'event-based': `\n <svg version=\"1.1\" id=\"Layer_3\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <path class=\"st0\" d=\"M17.5,6.2c6.2,0,11.2,5,11.2,11.2s-5,11.2-11.2,11.2s-11.2-5-11.2-11.2S11.3,6.2,17.5,6.2 M17.5,5.5c-6.6,0-12,5.4-12,12\n s5.4,12,12,12s12-5.4,12-12S24.1,5.5,17.5,5.5L17.5,5.5z\"/>\n <path class=\"st0\" d=\"M17.5,8.2c5.1,0,9.2,4.1,9.2,9.2s-4.1,9.2-9.2,9.2s-9.2-4.1-9.2-9.2S12.4,8.2,17.5,8.2 M17.5,7.5c-5.5,0-10,4.5-10,10\n s4.5,10,10,10s10-4.5,10-10S23,7.5,17.5,7.5L17.5,7.5z\"/>\n <path class=\"st0\" d=\"M17.5,11.7l5.7,4.1L21,22.5h-7l-2.2-6.7L17.5,11.7 M17.5,10l-7.3,5.3l2.8,8.6h9l2.8-8.6L17.5,10L17.5,10z\"/>\n </svg>\n `\n}\n"]}
|
package/dist/bpmn-message.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BOUNDS } from '@hatiolab/things-scene';
|
|
1
2
|
import BPMNControlBase from './base/bpmn-control-base';
|
|
2
3
|
export default class BPMNMessage extends BPMNControlBase {
|
|
3
4
|
static get nature(): {
|
|
@@ -7,5 +8,6 @@ export default class BPMNMessage extends BPMNControlBase {
|
|
|
7
8
|
properties: never[];
|
|
8
9
|
help: string;
|
|
9
10
|
};
|
|
11
|
+
get textBounds(): BOUNDS;
|
|
10
12
|
render(ctx: CanvasRenderingContext2D): void;
|
|
11
13
|
}
|
package/dist/bpmn-message.js
CHANGED
|
@@ -11,6 +11,19 @@ export default class BPMNMessage extends BPMNControlBase {
|
|
|
11
11
|
static get nature() {
|
|
12
12
|
return NATURE;
|
|
13
13
|
}
|
|
14
|
+
get textBounds() {
|
|
15
|
+
var { left, top, width, height } = this.bounds;
|
|
16
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state;
|
|
17
|
+
paddingTop || (paddingTop = 0);
|
|
18
|
+
paddingLeft || (paddingLeft = 0);
|
|
19
|
+
paddingRight || (paddingRight = 0);
|
|
20
|
+
return {
|
|
21
|
+
left: left + paddingLeft,
|
|
22
|
+
top: top + paddingTop + height + 10,
|
|
23
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
24
|
+
height: 0
|
|
25
|
+
};
|
|
26
|
+
}
|
|
14
27
|
render(ctx) {
|
|
15
28
|
var { left, top, width, height } = this.bounds;
|
|
16
29
|
const corner = (Math.min(width, height) * 2) / 5;
|
package/dist/bpmn-message.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-message.js","sourceRoot":"","sources":["../src/bpmn-message.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"bpmn-message.js","sourceRoot":"","sources":["../src/bpmn-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAE1D,OAAO,eAAe,MAAM,0BAA0B,CAAA;AAEtD,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,KAAK;IAChB,UAAU,EAAE,EAAE;IACd,IAAI,EAAE,uBAAuB;CAC9B,CAAA;AAED,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,eAAe;IACtD,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAED,IAAI,UAAU;QACZ,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAC9C,IAAI,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAE1D,UAAU,KAAV,UAAU,GAAK,CAAC,EAAA;QAChB,WAAW,KAAX,WAAW,GAAK,CAAC,EAAA;QACjB,YAAY,KAAZ,YAAY,GAAK,CAAC,EAAA;QAElB,OAAO;YACL,IAAI,EAAE,IAAI,GAAG,WAAW;YACxB,GAAG,EAAE,GAAG,GAAG,UAAU,GAAG,MAAM,GAAG,EAAE;YACnC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,WAAW,GAAG,YAAY,EAAE,CAAC,CAAC;YACtD,MAAM,EAAE,CAAC;SACV,CAAA;IACH,CAAC;IAED,MAAM,CAAC,GAA6B;QAClC,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAE9C,MAAM,MAAM,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAA;QAEhD,GAAG,CAAC,SAAS,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;QACxB,GAAG,CAAC,SAAS,EAAE,CAAA;QAEf,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;QAChB,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QACpB,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;QACzB,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAA;QACrB,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;QAChB,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,CAAA;QACjC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QAEpB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;QAClB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;QAEpB,GAAG,CAAC,SAAS,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAA;IAC5B,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,cAAc,EAAE,WAAW,CAAC,CAAA","sourcesContent":["import { BOUNDS, Component } from '@hatiolab/things-scene'\n\nimport BPMNControlBase from './base/bpmn-control-base'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: false,\n properties: [],\n help: '/bpmn/message/message'\n}\n\nexport default class BPMNMessage extends BPMNControlBase {\n static get nature() {\n return NATURE\n }\n\n get textBounds(): BOUNDS {\n var { left, top, width, height } = this.bounds\n var { paddingTop, paddingLeft, paddingRight } = this.state\n\n paddingTop ||= 0\n paddingLeft ||= 0\n paddingRight ||= 0\n\n return {\n left: left + paddingLeft,\n top: top + paddingTop + height + 10,\n width: Math.max(width - paddingLeft - paddingRight, 0),\n height: 0\n }\n }\n\n render(ctx: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n const corner = (Math.min(width, height) * 2) / 5\n\n ctx.translate(left, top)\n ctx.beginPath()\n\n ctx.moveTo(0, 0)\n ctx.lineTo(width, 0)\n ctx.lineTo(width, height)\n ctx.lineTo(0, height)\n ctx.lineTo(0, 0)\n ctx.lineTo(width / 2, height / 2)\n ctx.lineTo(width, 0)\n\n this.drawFill(ctx)\n this.drawStroke(ctx)\n\n ctx.translate(-left, -top)\n }\n}\n\nComponent.register('bpmn-message', BPMNMessage)\n"]}
|
|
@@ -13,7 +13,11 @@ export default {
|
|
|
13
13
|
lineWidth: 2,
|
|
14
14
|
strokeStyle: 'black',
|
|
15
15
|
textAlign: 'left',
|
|
16
|
-
textBaseline: 'top'
|
|
16
|
+
textBaseline: 'top',
|
|
17
|
+
paddingTop: 10,
|
|
18
|
+
paddingBottom: 10,
|
|
19
|
+
paddingLeft: 10,
|
|
20
|
+
paddingRight: 10
|
|
17
21
|
},
|
|
18
22
|
about: '/helps/bpmn/comment/comment.md'
|
|
19
23
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-comment.js","sourceRoot":"","sources":["../../src/templates/bpmn-comment.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/E,eAAe;IACb,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,2BAA2B;IACxC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;QACV,SAAS,EAAE,CAAC;QACZ,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,MAAM;QACjB,YAAY,EAAE,KAAK;
|
|
1
|
+
{"version":3,"file":"bpmn-comment.js","sourceRoot":"","sources":["../../src/templates/bpmn-comment.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/E,eAAe;IACb,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,2BAA2B;IACxC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;QACV,SAAS,EAAE,CAAC;QACZ,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,MAAM;QACjB,YAAY,EAAE,KAAK;QACnB,UAAU,EAAE,EAAE;QACd,aAAa,EAAE,EAAE;QACjB,WAAW,EAAE,EAAE;QACf,YAAY,EAAE,EAAE;KACjB;IACD,KAAK,EAAE,gCAAgC;CACxC,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-bpmn-comment.png', import.meta.url).href\n\nexport default {\n type: 'bpmn-comment',\n description: 'controls for BPMN comment',\n group: 'process',\n icon,\n model: {\n type: 'bpmn-comment',\n left: 10,\n top: 10,\n width: 100,\n height: 60,\n lineWidth: 2,\n strokeStyle: 'black',\n textAlign: 'left',\n textBaseline: 'top',\n paddingTop: 10,\n paddingBottom: 10,\n paddingLeft: 10,\n paddingRight: 10\n },\n about: '/helps/bpmn/comment/comment.md'\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-data-object.js","sourceRoot":"","sources":["../../src/templates/bpmn-data-object.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,uCAAuC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEnF,eAAe;IACb,IAAI,EAAE,kBAAkB;IACxB,WAAW,EAAE,+BAA+B;IAC5C,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,OAAO,EAAE,OAAO;QAChB,QAAQ,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"bpmn-data-object.js","sourceRoot":"","sources":["../../src/templates/bpmn-data-object.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,uCAAuC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEnF,eAAe;IACb,IAAI,EAAE,kBAAkB;IACxB,WAAW,EAAE,+BAA+B;IAC5C,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,OAAO,EAAE,OAAO;QAChB,QAAQ,EAAE,OAAO;QACjB,YAAY,EAAE,KAAK;KACpB;IACD,KAAK,EAAE,wCAAwC;CAChD,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-bpmn-data-object.png', import.meta.url).href\n\nexport default {\n type: 'bpmn-data-object',\n description: 'controls for BPMN data-object',\n group: 'process',\n icon,\n model: {\n type: 'bpmn-data-object',\n left: 10,\n top: 10,\n width: 60,\n height: 60,\n strokeStyle: 'black',\n lineWidth: 2,\n lineCap: 'round',\n lineJoin: 'round',\n textBaseline: 'top'\n },\n about: '/helps/bpmn/data-object/data-object.md'\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-data-store.js","sourceRoot":"","sources":["../../src/templates/bpmn-data-store.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,sCAAsC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAElF,eAAe;IACb,IAAI,EAAE,iBAAiB;IACvB,WAAW,EAAE,8BAA8B;IAC3C,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,iBAAiB;QACvB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"bpmn-data-store.js","sourceRoot":"","sources":["../../src/templates/bpmn-data-store.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,sCAAsC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAElF,eAAe;IACb,IAAI,EAAE,iBAAiB;IACvB,WAAW,EAAE,8BAA8B;IAC3C,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,iBAAiB;QACvB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,YAAY,EAAE,KAAK;KACpB;IACD,KAAK,EAAE,sCAAsC;CAC9C,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-bpmn-data-store.png', import.meta.url).href\n\nexport default {\n type: 'bpmn-data-store',\n description: 'controls for BPMN data-store',\n group: 'process',\n icon,\n model: {\n type: 'bpmn-data-store',\n left: 10,\n top: 10,\n width: 60,\n height: 60,\n strokeStyle: 'black',\n lineWidth: 2,\n textBaseline: 'top'\n },\n about: '/helps/bpmn/data-store/data-store.md'\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-event.js","sourceRoot":"","sources":["../../src/templates/bpmn-event.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE7E,eAAe;IACb,IAAI,EAAE,YAAY;IAClB,WAAW,EAAE,yBAAyB;IACtC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"bpmn-event.js","sourceRoot":"","sources":["../../src/templates/bpmn-event.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE7E,eAAe;IACb,IAAI,EAAE,YAAY;IAClB,WAAW,EAAE,yBAAyB;IACtC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,YAAY,EAAE,KAAK;KACpB;IACD,KAAK,EAAE,yDAAyD;CACjE,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-bpmn-event.png', import.meta.url).href\n\nexport default {\n type: 'bpmn-event',\n description: 'controls for BPMN event',\n group: 'process',\n icon,\n model: {\n type: 'bpmn-event',\n left: 10,\n top: 10,\n width: 48,\n height: 48,\n strokeStyle: 'black',\n lineWidth: 2,\n textBaseline: 'top'\n },\n about: 'https://www.visual-paradigm.com/guide/bpmn/bpmn-events/'\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-gateway.js","sourceRoot":"","sources":["../../src/templates/bpmn-gateway.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/E,eAAe;IACb,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,2BAA2B;IACxC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"bpmn-gateway.js","sourceRoot":"","sources":["../../src/templates/bpmn-gateway.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/E,eAAe;IACb,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,2BAA2B;IACxC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,YAAY,EAAE,KAAK;KACpB;IACD,KAAK,EAAE,gCAAgC;CACxC,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-bpmn-gateway.png', import.meta.url).href\n\nexport default {\n type: 'bpmn-gateway',\n description: 'controls for BPMN gateway',\n group: 'process',\n icon,\n model: {\n type: 'bpmn-gateway',\n left: 10,\n top: 10,\n width: 60,\n height: 60,\n strokeStyle: 'black',\n lineWidth: 2,\n textBaseline: 'top'\n },\n about: '/helps/bpmn/gateway/gateway.md'\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpmn-message.js","sourceRoot":"","sources":["../../src/templates/bpmn-message.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/E,eAAe;IACb,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,2BAA2B;IACxC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,OAAO,EAAE,OAAO;QAChB,QAAQ,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"bpmn-message.js","sourceRoot":"","sources":["../../src/templates/bpmn-message.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/E,eAAe;IACb,IAAI,EAAE,cAAc;IACpB,WAAW,EAAE,2BAA2B;IACxC,KAAK,EAAE,SAAS;IAChB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,CAAC;QACZ,OAAO,EAAE,OAAO;QAChB,QAAQ,EAAE,OAAO;QACjB,YAAY,EAAE,KAAK;KACpB;IACD,KAAK,EAAE,gCAAgC;CACxC,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-bpmn-message.png', import.meta.url).href\n\nexport default {\n type: 'bpmn-message',\n description: 'controls for BPMN message',\n group: 'process',\n icon,\n model: {\n type: 'bpmn-message',\n left: 10,\n top: 10,\n width: 48,\n height: 36,\n strokeStyle: 'black',\n lineWidth: 2,\n lineCap: 'round',\n lineJoin: 'round',\n textBaseline: 'top'\n },\n about: '/helps/bpmn/message/message.md'\n}\n"]}
|
|
@@ -59,6 +59,11 @@
|
|
|
59
59
|
"date": 1667706475012,
|
|
60
60
|
"name": "logs/application-2022-11-06-12.log",
|
|
61
61
|
"hash": "dd895c49e0fb6505f9c27686fb228e03e6cf65b05b2dcc764fff87c768016993"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"date": 1667711656623,
|
|
65
|
+
"name": "logs/application-2022-11-06-14.log",
|
|
66
|
+
"hash": "1b0c3ed6a17f767e58be0fee479170777ee2a5b0f32f639ccfd86ccaf4f6f54a"
|
|
62
67
|
}
|
|
63
68
|
],
|
|
64
69
|
"hashType": "sha256"
|
|
@@ -74,6 +74,11 @@
|
|
|
74
74
|
"date": 1667706476124,
|
|
75
75
|
"name": "logs/connections-2022-11-06-12.log",
|
|
76
76
|
"hash": "55c3cea79b470acca8f8394b56ea7eb0696e94fad3ebe2e266c204894517e9a9"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"date": 1667711657827,
|
|
80
|
+
"name": "logs/connections-2022-11-06-14.log",
|
|
81
|
+
"hash": "0ab588887cb8267072fcf5c1182d32e93fa4ae6daef1183aa8d324e94e43257e"
|
|
77
82
|
}
|
|
78
83
|
],
|
|
79
84
|
"hashType": "sha256"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
2022-11-06T14:14:17+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-11-06T14:14:18+09:00 error: oracledb module loading failed
|
|
3
|
+
2022-11-06T14:14:18+09:00 info: Default DataSource established
|
|
4
|
+
2022-11-06T14:14:19+09:00 info: Transaction DataSource established
|
|
5
|
+
2022-11-06T14:14:19+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
+
2022-11-06T14:14:19+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
7
|
+
2022-11-06T14:16:55+09:00 error: Cannot query field "processGroups" on type "Query". Did you mean "playGroups"?
|
|
8
|
+
2022-11-06T14:16:55+09:00 error: Cannot query field "processes" on type "Query".
|
|
9
|
+
2022-11-06T14:16:55+09:00 error: Cannot query field "boardSettings" on type "Query". Did you mean "settings", "partnerSettings", or "setting"?
|
|
10
|
+
2022-11-06T14:16:55+09:00 error: Cannot query field "liteMenus" on type "Query". Did you mean "roleMenus", "menus", or "userMenus"?
|
|
11
|
+
2022-11-06T14:16:58+09:00 error: Cannot query field "boardSettings" on type "Query". Did you mean "settings", "partnerSettings", or "setting"?
|
|
12
|
+
2022-11-06T14:16:58+09:00 error: Cannot query field "liteMenus" on type "Query". Did you mean "roleMenus", "menus", or "userMenus"?
|
|
13
|
+
2022-11-06T14:17:52+09:00 info: File Storage is Ready.
|
|
14
|
+
2022-11-06T14:17:53+09:00 error: oracledb module loading failed
|
|
15
|
+
2022-11-06T14:17:53+09:00 info: Default DataSource established
|
|
16
|
+
2022-11-06T14:17:53+09:00 info: Transaction DataSource established
|
|
17
|
+
2022-11-06T14:17:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
18
|
+
2022-11-06T14:17:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
2022-11-06T14:14:19+09:00 info: Initializing ConnectionManager...
|
|
2
|
+
2022-11-06T14:14:19+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2022-11-06T14:14:19+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
+
2022-11-06T14:14:19+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
+
2022-11-06T14:14:19+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2022-11-06T14:14:19+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2022-11-06T14:14:19+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2022-11-06T14:14:19+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2022-11-06T14:14:19+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2022-11-06T14:14:19+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2022-11-06T14:14:19+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
+
2022-11-06T14:14:19+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
+
2022-11-06T14:14:19+09:00 info: echo-back-servers are ready
|
|
14
|
+
2022-11-06T14:14:19+09:00 info: echo-back connections are ready
|
|
15
|
+
2022-11-06T14:14:19+09:00 info: http-connector connections are ready
|
|
16
|
+
2022-11-06T14:14:19+09:00 info: graphql-connector connections are ready
|
|
17
|
+
2022-11-06T14:14:19+09:00 info: sqlite-connector connections are ready
|
|
18
|
+
2022-11-06T14:14:19+09:00 info: postgresql-connector connections are ready
|
|
19
|
+
2022-11-06T14:14:19+09:00 info: mqtt-connector connections are ready
|
|
20
|
+
2022-11-06T14:14:19+09:00 info: mssql-connector connections are ready
|
|
21
|
+
2022-11-06T14:14:19+09:00 info: oracle-connector connections are ready
|
|
22
|
+
2022-11-06T14:14:19+09:00 info: mysql-connector connections are ready
|
|
23
|
+
2022-11-06T14:14:19+09:00 info: socket servers are ready
|
|
24
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'echo-back-server' ready
|
|
25
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'echo-back' ready
|
|
26
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'http-connector' ready
|
|
27
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'graphql-connector' ready
|
|
28
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'sqlite-connector' ready
|
|
29
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'postgresql-connector' ready
|
|
30
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'mqtt-connector' ready
|
|
31
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'mssql-connector' ready
|
|
32
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'oracle-connector' ready
|
|
33
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'mysql-connector' ready
|
|
34
|
+
2022-11-06T14:14:19+09:00 info: All connector for 'socket-server' ready
|
|
35
|
+
2022-11-06T14:14:19+09:00 info: ConnectionManager initialization done:
|
|
36
|
+
2022-11-06T14:17:54+09:00 info: Initializing ConnectionManager...
|
|
37
|
+
2022-11-06T14:17:54+09:00 info: Connector 'echo-back-server' started to ready
|
|
38
|
+
2022-11-06T14:17:54+09:00 info: Connector 'echo-back' started to ready
|
|
39
|
+
2022-11-06T14:17:54+09:00 info: Connector 'http-connector' started to ready
|
|
40
|
+
2022-11-06T14:17:54+09:00 info: Connector 'graphql-connector' started to ready
|
|
41
|
+
2022-11-06T14:17:54+09:00 info: Connector 'sqlite-connector' started to ready
|
|
42
|
+
2022-11-06T14:17:54+09:00 info: Connector 'postgresql-connector' started to ready
|
|
43
|
+
2022-11-06T14:17:54+09:00 info: Connector 'mqtt-connector' started to ready
|
|
44
|
+
2022-11-06T14:17:54+09:00 info: Connector 'mssql-connector' started to ready
|
|
45
|
+
2022-11-06T14:17:54+09:00 info: Connector 'oracle-connector' started to ready
|
|
46
|
+
2022-11-06T14:17:54+09:00 info: Connector 'mysql-connector' started to ready
|
|
47
|
+
2022-11-06T14:17:54+09:00 info: Connector 'socket-server' started to ready
|
|
48
|
+
2022-11-06T14:17:54+09:00 info: echo-back-servers are ready
|
|
49
|
+
2022-11-06T14:17:54+09:00 info: echo-back connections are ready
|
|
50
|
+
2022-11-06T14:17:54+09:00 info: http-connector connections are ready
|
|
51
|
+
2022-11-06T14:17:54+09:00 info: graphql-connector connections are ready
|
|
52
|
+
2022-11-06T14:17:54+09:00 info: sqlite-connector connections are ready
|
|
53
|
+
2022-11-06T14:17:54+09:00 info: postgresql-connector connections are ready
|
|
54
|
+
2022-11-06T14:17:54+09:00 info: mqtt-connector connections are ready
|
|
55
|
+
2022-11-06T14:17:54+09:00 info: mssql-connector connections are ready
|
|
56
|
+
2022-11-06T14:17:54+09:00 info: oracle-connector connections are ready
|
|
57
|
+
2022-11-06T14:17:54+09:00 info: mysql-connector connections are ready
|
|
58
|
+
2022-11-06T14:17:54+09:00 info: socket servers are ready
|
|
59
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'echo-back-server' ready
|
|
60
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'echo-back' ready
|
|
61
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'http-connector' ready
|
|
62
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'graphql-connector' ready
|
|
63
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'sqlite-connector' ready
|
|
64
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'postgresql-connector' ready
|
|
65
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'mqtt-connector' ready
|
|
66
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'mssql-connector' ready
|
|
67
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'oracle-connector' ready
|
|
68
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'mysql-connector' ready
|
|
69
|
+
2022-11-06T14:17:54+09:00 info: All connector for 'socket-server' ready
|
|
70
|
+
2022-11-06T14:17:54+09:00 info: ConnectionManager initialization done:
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "bpmn components for things-scene",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.10",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"module": "dist/index.js",
|
|
9
9
|
"things-scene": true,
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"prettier --write"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "cfe6c4c111968967319cde3996e35309e8e32537"
|
|
61
61
|
}
|
package/src/bpmn-data-object.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, Properties } from '@hatiolab/things-scene'
|
|
1
|
+
import { Component, Properties, BOUNDS } from '@hatiolab/things-scene'
|
|
2
2
|
|
|
3
3
|
import BPMNControlBase from './base/bpmn-control-base'
|
|
4
4
|
|
|
@@ -45,6 +45,22 @@ export default class BPMNDataObject extends BPMNControlBase {
|
|
|
45
45
|
return NATURE
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
get textBounds(): BOUNDS {
|
|
49
|
+
var { left, top, width, height } = this.bounds
|
|
50
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state
|
|
51
|
+
|
|
52
|
+
paddingTop ||= 0
|
|
53
|
+
paddingLeft ||= 0
|
|
54
|
+
paddingRight ||= 0
|
|
55
|
+
|
|
56
|
+
return {
|
|
57
|
+
left: left + paddingLeft,
|
|
58
|
+
top: top + paddingTop + height + 10,
|
|
59
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
60
|
+
height: 0
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
48
64
|
render(ctx: CanvasRenderingContext2D) {
|
|
49
65
|
const { left, top, width, height } = this.bounds
|
|
50
66
|
const { collection = false } = this.state
|
package/src/bpmn-data-store.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component } from '@hatiolab/things-scene'
|
|
1
|
+
import { Component, BOUNDS } from '@hatiolab/things-scene'
|
|
2
2
|
|
|
3
3
|
import BPMNControlBase from './base/bpmn-control-base'
|
|
4
4
|
|
|
@@ -15,6 +15,22 @@ export default class BPMNDataStore extends BPMNControlBase {
|
|
|
15
15
|
return NATURE
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
get textBounds(): BOUNDS {
|
|
19
|
+
var { left, top, width, height } = this.bounds
|
|
20
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state
|
|
21
|
+
|
|
22
|
+
paddingTop ||= 0
|
|
23
|
+
paddingLeft ||= 0
|
|
24
|
+
paddingRight ||= 0
|
|
25
|
+
|
|
26
|
+
return {
|
|
27
|
+
left: left + paddingLeft,
|
|
28
|
+
top: top + paddingTop + height + 10,
|
|
29
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
30
|
+
height: 0
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
18
34
|
render(ctx: CanvasRenderingContext2D) {
|
|
19
35
|
const { left, top, width, height } = this.bounds
|
|
20
36
|
const ry = Math.abs(height / 6)
|
package/src/bpmn-gateway.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, Properties } from '@hatiolab/things-scene'
|
|
1
|
+
import { BOUNDS, Component, Properties } from '@hatiolab/things-scene'
|
|
2
2
|
|
|
3
3
|
import BPMNControlBase from './base/bpmn-control-base'
|
|
4
4
|
|
|
@@ -51,6 +51,22 @@ export default class BPMNGateway extends BPMNControlBase {
|
|
|
51
51
|
return NATURE
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
+
get textBounds(): BOUNDS {
|
|
55
|
+
var { left, top, width, height } = this.bounds
|
|
56
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state
|
|
57
|
+
|
|
58
|
+
paddingTop ||= 0
|
|
59
|
+
paddingLeft ||= 0
|
|
60
|
+
paddingRight ||= 0
|
|
61
|
+
|
|
62
|
+
return {
|
|
63
|
+
left: left + paddingLeft,
|
|
64
|
+
top: top + paddingTop + height + 10,
|
|
65
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
66
|
+
height: 0
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
54
70
|
render(ctx: CanvasRenderingContext2D) {
|
|
55
71
|
var { left, top, width, height } = this.bounds
|
|
56
72
|
|
package/src/bpmn-message.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component } from '@hatiolab/things-scene'
|
|
1
|
+
import { BOUNDS, Component } from '@hatiolab/things-scene'
|
|
2
2
|
|
|
3
3
|
import BPMNControlBase from './base/bpmn-control-base'
|
|
4
4
|
|
|
@@ -15,6 +15,22 @@ export default class BPMNMessage extends BPMNControlBase {
|
|
|
15
15
|
return NATURE
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
get textBounds(): BOUNDS {
|
|
19
|
+
var { left, top, width, height } = this.bounds
|
|
20
|
+
var { paddingTop, paddingLeft, paddingRight } = this.state
|
|
21
|
+
|
|
22
|
+
paddingTop ||= 0
|
|
23
|
+
paddingLeft ||= 0
|
|
24
|
+
paddingRight ||= 0
|
|
25
|
+
|
|
26
|
+
return {
|
|
27
|
+
left: left + paddingLeft,
|
|
28
|
+
top: top + paddingTop + height + 10,
|
|
29
|
+
width: Math.max(width - paddingLeft - paddingRight, 0),
|
|
30
|
+
height: 0
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
18
34
|
render(ctx: CanvasRenderingContext2D) {
|
|
19
35
|
var { left, top, width, height } = this.bounds
|
|
20
36
|
|
|
@@ -14,7 +14,11 @@ export default {
|
|
|
14
14
|
lineWidth: 2,
|
|
15
15
|
strokeStyle: 'black',
|
|
16
16
|
textAlign: 'left',
|
|
17
|
-
textBaseline: 'top'
|
|
17
|
+
textBaseline: 'top',
|
|
18
|
+
paddingTop: 10,
|
|
19
|
+
paddingBottom: 10,
|
|
20
|
+
paddingLeft: 10,
|
|
21
|
+
paddingRight: 10
|
|
18
22
|
},
|
|
19
23
|
about: '/helps/bpmn/comment/comment.md'
|
|
20
24
|
}
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/base/bpmn-control-base.ts","./src/bpmn-comment.ts","./src/bpmn-data-object.ts","./src/bpmn-data-store.ts","./src/bpmn-event.ts","./src/base/bpmn-container-base.ts","./src/bpmn-expanded-subprocess.ts","./src/bpmn-flow.ts","./src/bpmn-gateway.ts","./src/bpmn-group.ts","./src/bpmn-lane.ts","./src/bpmn-message.ts","./src/bpmn-pool.ts","./src/bpmn-subprocess.ts","./src/bpmn-task.ts","./src/index.ts","./src/base/bpmn-activity.ts","./src/characteristics/loop.ts","./src/editors/index.ts","./src/groups/process.ts","./src/groups/index.ts","./src/templates/bpmn-comment.ts","./src/templates/bpmn-data-object.ts","./src/templates/bpmn-data-store.ts","./src/templates/bpmn-event.ts","./src/templates/bpmn-expanded-subprocess.ts","./src/templates/bpmn-flow.ts","./src/templates/bpmn-gateway.ts","./src/templates/bpmn-group.ts","./src/templates/bpmn-lane.ts","./src/templates/bpmn-message.ts","./src/templates/bpmn-pool.ts","./src/templates/bpmn-subprocess.ts","./src/templates/bpmn-task.ts","./src/templates/index.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","94088ef4a736d309d8fbe9dc88841f885ca417772ab49e17f0000b21118a7173","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"166a54f866bba550a1bb5725f778dbdaa647a15b31976c5353f8135bf8c53227",{"version":"796bf03fabdc4fc5e2c17723ad05b66e6ce0075dc90c8a340a93318c4aae7e6b","signature":"56f42152a27ca523fbe2bde10e0c8188cd084f806927ddbe0ad13bfdfe53d481"},{"version":"a955674f8a04a3b60fe73a45bb3dd7ad33783da59821cda5453d69063ee93bd9","signature":"c92a640b96488a3be62de448f5d23bf634d3474d1c2f399e0254ea299059fc2c"},{"version":"c03ac469961253076bf462df919d739280d09b2e12c57d1cbe6ec6a167eca6c0","signature":"05199075f51e0493fbe495332f256632f994f813a6d4763b8cb1a17d1f7f375e"},{"version":"2b512dee837c2ba6f59bd359d9bbbd11d56601db755ffc9d528815f4ea10e978","signature":"6133afffa57431d43d805c1d21f23f8d799071bd07fa75fe84034254e178301c"},{"version":"0f34ea0ce97f0e6e1b34d069632a955a3daf57f90fc7acaa94823a54445ed55e","signature":"f5ee5edc2bc43052b3d88977f5b040086aaf1cff42b04ee91fc70f85d1337a31"},{"version":"4ba758c9005f49515af90333464b911e45f601961f0f9bca1d3fdc302f924f1a","signature":"694059ca1dd90d7b8910f0d2bc0242cba67bc89d0e245cc4c647837d8bc06a1d"},{"version":"69ec86c86e99791d513738cdc128e6cb2feedf4e455475b00ed4244ec00493c8","signature":"bb14967951bf594416e49d3a5153fe241d127a614c3259823f859f82bc182ea1"},{"version":"232e91e306d41d93bc920341b7aaab61c76b6b3c28a4eb92aa7af0d44e901acc","signature":"bc95825de26d887f628277fa7df38ebbd94e6ffc28e6736dd4e1bbe1464d1d14"},{"version":"318e1d782d06b19bb51a0ad9540bde6c6fdf393849c349aff9e5596d9a50f138","signature":"ebb44a7afaad4c1a29e2e64a5434f531ae30aa316c5b86fd605120f752c46711"},{"version":"976d038bd485a217746b89c25842523f8d5b8dc7da29d4333ab70f70c1bc5368","signature":"082f6b4f2c2aa0f7e09791cc1a339aa1eb49ffed33da5aff70ea24cd2674eee2"},{"version":"725ab220fd0f60ea06f2013392c53bea583c67f5f59455533b0a5aca23e1ab82","signature":"b32e7ba6ef69018712963e3fdf4da0ec4d9419d9f8e4fd7cddc199a9e729c9ca"},{"version":"7747c20e8d42e1fc8cc684cac8c992f72b9be939621ab228f952282598856dfd","signature":"75a29e3a21b9c66ea69e42d058a97ee8db979243e373a4bde2c0e9967ed8a7eb"},{"version":"3776e27fa1fc8e289e4e09d923f7438c266842c54d81dc839826192caa196028","signature":"1641319d7fcdc1177139601012b50a98fe9993e93eb7378dcf3017f9e3025bd4"},{"version":"98712e4d6bef3999d0713ddf7385ef247d461e821ba4ef974094f38e2f21a6f0","signature":"51403b0874275912dbf8d14f26c57a2d024351b3307134316721803271a11a92"},{"version":"c4c1202129c831fd50e7f295e9ec35005ff9753a48292d5d7ca454906183ada7","signature":"f0b8208176bb4b81b6e761159ba1061251d02ba23dbb0f8e822dab56e01ab3f3"},{"version":"24c6cd66beabe5e9cc34dd87216c5915e651603b60071d19a3227f65e4cb8d35","signature":"e44fb050b153096e895e5f61a105dfe0fa495fe388aefd500c8365a1e4b64850"},{"version":"e8b46c7abb5e1f07a08c635248e60ff2b7fde929b76b0013d5d5f3f53933d5a4","signature":"67a0c7ca0cdaf23d7b7d07170e8793af0e6ae730493447dcf6b4c1627d2e1942"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"a71e628bf2d78dc2137bcc5b23a47ccf400625abba878ecc2227e4dfcfd2d1df","signature":"ad63fbf814286b3f84ac0d06d493179e5860b8ecc973b0b19acd888781996380"},{"version":"802f4cdb44e6832822a88e9823dcfc556c881f6e64b3d722f4120fda040102cb","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"d6808d0e67964ec8f1b847caca8fecdd2c51df726c2657bffff0f484a4096216","signature":"bd0c95d67c052b7e281706f5478503265e312b6a055d3c83fb44d3feabf50179"},{"version":"dad67025ed4994233405e461a4cbe6b00eed38f639934c191eb0194b95ff78de","signature":"d4d1c95a65b3326125cc65a54e1c4068e65c0bb7c6e6ce07d5a6b0346b46c61a"},{"version":"f42e2062399cc3fe320e298994f4cceab9769ab09ac851c412500c09febb7d7d","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"aa955324a9a9bb924f4926f5acc005a505a4e34110b9bd336e5f2943a7d61eec","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"bd4506f14db7d995e78299da1fdb259081a40b375a4a6086be50d9658360bfb1","signature":"dd2ff5c664e05b7b40cb9f393e429720d48bbae3d0d1d36973d6da223f23fb37"},{"version":"8bd0d25b3dd68be2c10ec3da4b7192b1043700c92333f423a1015271c3e32ef9","signature":"bd3eca9344428e5a7655d2240813164d9543cfc361a66d008bc11d5b6ea2465a"},{"version":"4ef6c0ec37cd2e7d857422c36d091c536d48cd0f72269deeb3538583d56d1ac9","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"e00f83b7e2b71994f86f3e11b6510fc732122fdd1939efe253283ee6fcff882b","signature":"c2849f9d395a8374cf99e81fbceb56d6ba644563aeb8dd1159e879483ee2752e"},{"version":"dedacabb71ef7c6f5853f24402913068162948fc4900d36cbd07b69abb6f9c63","signature":"b65e9bb4575851c4c62258a83a7aeaec5d4a3c93b8a1a72a175e78d5c4412f7a"},{"version":"fb492a5b7cdcc6d331a19d32559b52d1e53543e975a6501d22f77238e2c17d3d","signature":"d4d1c95a65b3326125cc65a54e1c4068e65c0bb7c6e6ce07d5a6b0346b46c61a"},{"version":"c8576a29897927dd34514f8d927249be2939833e32b0304424dd526d167b9fba","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"3235f55f9fa6933e1948051202d642bfe36afbba5523fd73184bccaa91019f49","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"b0a071e08854731cc7aea24bcc95b1cfd2da44dd00ee625c9ad776a33e1775f9","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"ca805473bec03736eda5cff3f93e2c23dc625cf9c6018bc150e64617bdefe92f","signature":"3ff5351c4f990b2d378152af121bfed5bf4b54630f3e35945040d93a28d121fd"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"c0db280fa6b09d7b8d6720a19a47f485956a41ee0e6914f1b704033eb69c6058","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[55,138],[43,45,46,47,48,49,50,51,52,53,54,55,138],[43,44,46,47,48,49,50,51,52,53,54,55,138],[44,45,46,47,48,49,50,51,52,53,54,55,138],[43,44,45,47,48,49,50,51,52,53,54,55,138],[43,44,45,46,48,49,50,51,52,53,54,55,138],[43,44,45,46,47,49,50,51,52,53,54,55,138],[43,44,45,46,47,48,50,51,52,53,54,55,138],[43,44,45,46,47,48,49,51,52,53,54,55,138],[43,44,45,46,47,48,49,50,52,53,54,55,138],[43,44,45,46,47,48,49,50,51,53,54,55,138],[43,44,45,46,47,48,49,50,51,52,54,55,138],[43,44,45,46,47,48,49,50,51,52,53,55,138],[43,44,45,46,47,48,49,50,51,52,53,54,138],[92,138],[95,138],[96,101,129,138],[97,108,109,116,126,137,138],[97,98,108,116,138],[99,138],[100,101,109,117,138],[101,126,134,138],[102,104,108,116,138],[103,138],[104,105,138],[108,138],[106,108,138],[108,109,110,126,137,138],[108,109,110,123,126,129,138],[138,142],[138],[111,116,126,137,138],[108,109,111,112,116,126,134,137,138],[111,113,126,134,137,138],[92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[108,114,138],[115,137,138],[104,108,116,126,138],[117,138],[118,138],[95,119,138],[120,136,138,142],[121,138],[122,138],[108,123,124,138],[123,125,138,140],[96,108,126,127,128,129,138],[96,126,128,138],[126,127,138],[129,138],[130,138],[108,132,133,138],[132,133,138],[101,116,126,134,138],[135,138],[116,136,138],[96,111,122,137,138],[101,138],[126,138,139],[138,140],[138,141],[96,101,108,110,119,126,137,138,140,142],[126,138,143],[42,57,138],[42,56,138],[42,56,57,138],[42,55,56,62,138],[42,56,62,138],[42,76,138],[42,138],[42,58,59,60,61,63,64,65,66,67,68,69,70,71,138],[42,78,79,80,81,82,83,84,85,86,87,88,89,90,138],[57],[56],[56,57],[62],[56,62],[58,59,60,61,63,64,65,66,67,68,69,70,71]],"referencedMap":[[56,1],[44,2],[45,3],[43,4],[46,5],[47,6],[48,7],[49,8],[50,9],[51,10],[52,11],[53,12],[54,13],[55,14],[92,15],[93,15],[95,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,22],[102,23],[103,24],[104,25],[105,25],[107,26],[106,27],[108,26],[109,28],[110,29],[94,30],[144,31],[111,32],[112,33],[113,34],[145,35],[114,36],[115,37],[116,38],[117,39],[118,40],[119,41],[120,42],[121,43],[122,44],[123,45],[124,45],[125,46],[126,47],[128,48],[127,49],[129,50],[130,51],[131,31],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,60],[141,61],[142,62],[143,63],[42,31],[8,31],[10,31],[9,31],[2,31],[11,31],[12,31],[13,31],[14,31],[15,31],[16,31],[17,31],[18,31],[3,31],[4,31],[22,31],[19,31],[20,31],[21,31],[23,31],[24,31],[25,31],[5,31],[26,31],[27,31],[28,31],[29,31],[6,31],[30,31],[31,31],[32,31],[33,31],[7,31],[34,31],[39,31],[40,31],[35,31],[36,31],[37,31],[38,31],[1,31],[41,31],[73,64],[62,65],[57,65],[58,66],[59,66],[60,66],[61,66],[63,67],[64,65],[65,66],[66,68],[67,68],[68,66],[69,68],[70,66],[71,66],[74,31],[75,31],[77,69],[76,70],[72,71],[78,70],[79,70],[80,70],[81,70],[82,70],[83,70],[84,70],[85,70],[86,70],[87,70],[88,70],[89,70],[90,70],[91,72]],"exportedModulesMap":[[56,1],[44,2],[45,3],[43,4],[46,5],[47,6],[48,7],[49,8],[50,9],[51,10],[52,11],[53,12],[54,13],[55,14],[92,15],[93,15],[95,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,22],[102,23],[103,24],[104,25],[105,25],[107,26],[106,27],[108,26],[109,28],[110,29],[94,30],[144,31],[111,32],[112,33],[113,34],[145,35],[114,36],[115,37],[116,38],[117,39],[118,40],[119,41],[120,42],[121,43],[122,44],[123,45],[124,45],[125,46],[126,47],[128,48],[127,49],[129,50],[130,51],[131,31],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,60],[141,61],[142,62],[143,63],[42,31],[8,31],[10,31],[9,31],[2,31],[11,31],[12,31],[13,31],[14,31],[15,31],[16,31],[17,31],[18,31],[3,31],[4,31],[22,31],[19,31],[20,31],[21,31],[23,31],[24,31],[25,31],[5,31],[26,31],[27,31],[28,31],[29,31],[6,31],[30,31],[31,31],[32,31],[33,31],[7,31],[34,31],[39,31],[40,31],[35,31],[36,31],[37,31],[38,31],[1,31],[41,31],[73,73],[62,74],[57,74],[58,75],[59,75],[60,73],[61,75],[63,76],[64,74],[65,75],[66,76],[67,77],[68,73],[69,76],[70,75],[71,75],[74,31],[75,31],[72,78]],"semanticDiagnosticsPerFile":[56,44,45,43,46,47,48,49,50,51,52,53,54,55,92,93,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,94,144,111,112,113,145,114,115,116,117,118,119,120,121,122,123,124,125,126,128,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,42,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,73,62,57,58,59,60,61,63,64,65,66,67,68,69,70,71,74,75,77,76,72,78,79,80,81,82,83,84,85,86,87,88,89,90,91]},"version":"4.8.4"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/base/bpmn-control-base.ts","./src/bpmn-comment.ts","./src/bpmn-data-object.ts","./src/bpmn-data-store.ts","./src/bpmn-event.ts","./src/base/bpmn-container-base.ts","./src/bpmn-expanded-subprocess.ts","./src/bpmn-flow.ts","./src/bpmn-gateway.ts","./src/bpmn-group.ts","./src/bpmn-lane.ts","./src/bpmn-message.ts","./src/bpmn-pool.ts","./src/bpmn-subprocess.ts","./src/bpmn-task.ts","./src/index.ts","./src/base/bpmn-activity.ts","./src/characteristics/loop.ts","./src/editors/index.ts","./src/groups/process.ts","./src/groups/index.ts","./src/templates/bpmn-comment.ts","./src/templates/bpmn-data-object.ts","./src/templates/bpmn-data-store.ts","./src/templates/bpmn-event.ts","./src/templates/bpmn-expanded-subprocess.ts","./src/templates/bpmn-flow.ts","./src/templates/bpmn-gateway.ts","./src/templates/bpmn-group.ts","./src/templates/bpmn-lane.ts","./src/templates/bpmn-message.ts","./src/templates/bpmn-pool.ts","./src/templates/bpmn-subprocess.ts","./src/templates/bpmn-task.ts","./src/templates/index.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","94088ef4a736d309d8fbe9dc88841f885ca417772ab49e17f0000b21118a7173","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"166a54f866bba550a1bb5725f778dbdaa647a15b31976c5353f8135bf8c53227",{"version":"796bf03fabdc4fc5e2c17723ad05b66e6ce0075dc90c8a340a93318c4aae7e6b","signature":"56f42152a27ca523fbe2bde10e0c8188cd084f806927ddbe0ad13bfdfe53d481"},{"version":"a955674f8a04a3b60fe73a45bb3dd7ad33783da59821cda5453d69063ee93bd9","signature":"c92a640b96488a3be62de448f5d23bf634d3474d1c2f399e0254ea299059fc2c"},{"version":"7155c475c2641d8a4f08a87831e79658e6760e413cf1fcba1ad7732d58e27b45","signature":"7195664336d167b4ad8cab7675d3b4f3390c5aa03e61a0eac0150672ee0930d3"},{"version":"a2b95eee02abdf0b18b29d56d678bd093ee374d5c64992a47f42aed189571be4","signature":"d274d71974b587cb212af5d115315a0f3ac048de2b5458f19caeccf17775a309"},{"version":"0f34ea0ce97f0e6e1b34d069632a955a3daf57f90fc7acaa94823a54445ed55e","signature":"f5ee5edc2bc43052b3d88977f5b040086aaf1cff42b04ee91fc70f85d1337a31"},{"version":"4ba758c9005f49515af90333464b911e45f601961f0f9bca1d3fdc302f924f1a","signature":"694059ca1dd90d7b8910f0d2bc0242cba67bc89d0e245cc4c647837d8bc06a1d"},{"version":"69ec86c86e99791d513738cdc128e6cb2feedf4e455475b00ed4244ec00493c8","signature":"bb14967951bf594416e49d3a5153fe241d127a614c3259823f859f82bc182ea1"},{"version":"232e91e306d41d93bc920341b7aaab61c76b6b3c28a4eb92aa7af0d44e901acc","signature":"bc95825de26d887f628277fa7df38ebbd94e6ffc28e6736dd4e1bbe1464d1d14"},{"version":"a55063e514355e323f8c19e3d335ee3470b7cf2203324d6b0b79bac1c87ff105","signature":"a107c686f4cc4362c1b1b851337c4268df30a5ab4e1366ee2fc8a34c02a93f82"},{"version":"976d038bd485a217746b89c25842523f8d5b8dc7da29d4333ab70f70c1bc5368","signature":"082f6b4f2c2aa0f7e09791cc1a339aa1eb49ffed33da5aff70ea24cd2674eee2"},{"version":"725ab220fd0f60ea06f2013392c53bea583c67f5f59455533b0a5aca23e1ab82","signature":"b32e7ba6ef69018712963e3fdf4da0ec4d9419d9f8e4fd7cddc199a9e729c9ca"},{"version":"e437124a1ca93a777cddf8772b866767565c87b783d9fc4db9482d2d9d9ae263","signature":"91ae17fe2c9decf851552961fadb6a4f9d251fedadcd12d1dceeedd08dda510f"},{"version":"3776e27fa1fc8e289e4e09d923f7438c266842c54d81dc839826192caa196028","signature":"1641319d7fcdc1177139601012b50a98fe9993e93eb7378dcf3017f9e3025bd4"},{"version":"98712e4d6bef3999d0713ddf7385ef247d461e821ba4ef974094f38e2f21a6f0","signature":"51403b0874275912dbf8d14f26c57a2d024351b3307134316721803271a11a92"},{"version":"c4c1202129c831fd50e7f295e9ec35005ff9753a48292d5d7ca454906183ada7","signature":"f0b8208176bb4b81b6e761159ba1061251d02ba23dbb0f8e822dab56e01ab3f3"},{"version":"24c6cd66beabe5e9cc34dd87216c5915e651603b60071d19a3227f65e4cb8d35","signature":"e44fb050b153096e895e5f61a105dfe0fa495fe388aefd500c8365a1e4b64850"},{"version":"e8b46c7abb5e1f07a08c635248e60ff2b7fde929b76b0013d5d5f3f53933d5a4","signature":"67a0c7ca0cdaf23d7b7d07170e8793af0e6ae730493447dcf6b4c1627d2e1942"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"a71e628bf2d78dc2137bcc5b23a47ccf400625abba878ecc2227e4dfcfd2d1df","signature":"ad63fbf814286b3f84ac0d06d493179e5860b8ecc973b0b19acd888781996380"},{"version":"802f4cdb44e6832822a88e9823dcfc556c881f6e64b3d722f4120fda040102cb","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"7919f7bebd88eb52b015489d92fb22a88def57fa625d80a8f0facec6395d0a0e","signature":"d3f2048aa6ff887ccbc637a0208d31bd943f2593fa1720fca6cce2e0cf4cd2db"},{"version":"980f25eafb618dc1aefdef6f9887f98e8671727700729ea0eab80061683e4498","signature":"a77d35d67a1f1184a2c9127dc223a4ce1f83ed96933b90cf7d4b7c5f0d0ddaa3"},{"version":"06ab00a4f3677b9955b3fd6d56259ec2b867af71edb574f47b302254a294f1fc","signature":"f577f369d020a872feaf5744004501d6057bc83b262cb3e2a292160dab0fddfc"},{"version":"27c9bb962b635bbbaf7cbd6d4aabfd10bfae0635980b22e107c43822bf5aad34","signature":"f577f369d020a872feaf5744004501d6057bc83b262cb3e2a292160dab0fddfc"},{"version":"bd4506f14db7d995e78299da1fdb259081a40b375a4a6086be50d9658360bfb1","signature":"dd2ff5c664e05b7b40cb9f393e429720d48bbae3d0d1d36973d6da223f23fb37"},{"version":"8bd0d25b3dd68be2c10ec3da4b7192b1043700c92333f423a1015271c3e32ef9","signature":"bd3eca9344428e5a7655d2240813164d9543cfc361a66d008bc11d5b6ea2465a"},{"version":"629adeecc07a1a1e84900d43c3a858d79921b3c627388b2ad6bdb5b508dbc1dd","signature":"f577f369d020a872feaf5744004501d6057bc83b262cb3e2a292160dab0fddfc"},{"version":"e00f83b7e2b71994f86f3e11b6510fc732122fdd1939efe253283ee6fcff882b","signature":"c2849f9d395a8374cf99e81fbceb56d6ba644563aeb8dd1159e879483ee2752e"},{"version":"dedacabb71ef7c6f5853f24402913068162948fc4900d36cbd07b69abb6f9c63","signature":"b65e9bb4575851c4c62258a83a7aeaec5d4a3c93b8a1a72a175e78d5c4412f7a"},{"version":"fb9197c84ef8f37020c8c0450c504010560782c104689dc1c838cde77484ddd2","signature":"a77d35d67a1f1184a2c9127dc223a4ce1f83ed96933b90cf7d4b7c5f0d0ddaa3"},{"version":"c8576a29897927dd34514f8d927249be2939833e32b0304424dd526d167b9fba","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"3235f55f9fa6933e1948051202d642bfe36afbba5523fd73184bccaa91019f49","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"b0a071e08854731cc7aea24bcc95b1cfd2da44dd00ee625c9ad776a33e1775f9","signature":"20c0f91a1a41c301918ec46bffa63d1de8cfa688df091ad30fc36966fe9ecfa7"},{"version":"ca805473bec03736eda5cff3f93e2c23dc625cf9c6018bc150e64617bdefe92f","signature":"3ff5351c4f990b2d378152af121bfed5bf4b54630f3e35945040d93a28d121fd"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"c0db280fa6b09d7b8d6720a19a47f485956a41ee0e6914f1b704033eb69c6058","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[55,138],[43,45,46,47,48,49,50,51,52,53,54,55,138],[43,44,46,47,48,49,50,51,52,53,54,55,138],[44,45,46,47,48,49,50,51,52,53,54,55,138],[43,44,45,47,48,49,50,51,52,53,54,55,138],[43,44,45,46,48,49,50,51,52,53,54,55,138],[43,44,45,46,47,49,50,51,52,53,54,55,138],[43,44,45,46,47,48,50,51,52,53,54,55,138],[43,44,45,46,47,48,49,51,52,53,54,55,138],[43,44,45,46,47,48,49,50,52,53,54,55,138],[43,44,45,46,47,48,49,50,51,53,54,55,138],[43,44,45,46,47,48,49,50,51,52,54,55,138],[43,44,45,46,47,48,49,50,51,52,53,55,138],[43,44,45,46,47,48,49,50,51,52,53,54,138],[92,138],[95,138],[96,101,129,138],[97,108,109,116,126,137,138],[97,98,108,116,138],[99,138],[100,101,109,117,138],[101,126,134,138],[102,104,108,116,138],[103,138],[104,105,138],[108,138],[106,108,138],[108,109,110,126,137,138],[108,109,110,123,126,129,138],[138,142],[138],[111,116,126,137,138],[108,109,111,112,116,126,134,137,138],[111,113,126,134,137,138],[92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[108,114,138],[115,137,138],[104,108,116,126,138],[117,138],[118,138],[95,119,138],[120,136,138,142],[121,138],[122,138],[108,123,124,138],[123,125,138,140],[96,108,126,127,128,129,138],[96,126,128,138],[126,127,138],[129,138],[130,138],[108,132,133,138],[132,133,138],[101,116,126,134,138],[135,138],[116,136,138],[96,111,122,137,138],[101,138],[126,138,139],[138,140],[138,141],[96,101,108,110,119,126,137,138,140,142],[126,138,143],[42,57,138],[42,56,138],[42,56,57,138],[42,55,56,62,138],[42,56,62,138],[42,76,138],[42,138],[42,58,59,60,61,63,64,65,66,67,68,69,70,71,138],[42,78,79,80,81,82,83,84,85,86,87,88,89,90,138],[57],[56],[56,57],[62],[56,62],[58,59,60,61,63,64,65,66,67,68,69,70,71]],"referencedMap":[[56,1],[44,2],[45,3],[43,4],[46,5],[47,6],[48,7],[49,8],[50,9],[51,10],[52,11],[53,12],[54,13],[55,14],[92,15],[93,15],[95,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,22],[102,23],[103,24],[104,25],[105,25],[107,26],[106,27],[108,26],[109,28],[110,29],[94,30],[144,31],[111,32],[112,33],[113,34],[145,35],[114,36],[115,37],[116,38],[117,39],[118,40],[119,41],[120,42],[121,43],[122,44],[123,45],[124,45],[125,46],[126,47],[128,48],[127,49],[129,50],[130,51],[131,31],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,60],[141,61],[142,62],[143,63],[42,31],[8,31],[10,31],[9,31],[2,31],[11,31],[12,31],[13,31],[14,31],[15,31],[16,31],[17,31],[18,31],[3,31],[4,31],[22,31],[19,31],[20,31],[21,31],[23,31],[24,31],[25,31],[5,31],[26,31],[27,31],[28,31],[29,31],[6,31],[30,31],[31,31],[32,31],[33,31],[7,31],[34,31],[39,31],[40,31],[35,31],[36,31],[37,31],[38,31],[1,31],[41,31],[73,64],[62,65],[57,65],[58,66],[59,66],[60,66],[61,66],[63,67],[64,65],[65,66],[66,68],[67,68],[68,66],[69,68],[70,66],[71,66],[74,31],[75,31],[77,69],[76,70],[72,71],[78,70],[79,70],[80,70],[81,70],[82,70],[83,70],[84,70],[85,70],[86,70],[87,70],[88,70],[89,70],[90,70],[91,72]],"exportedModulesMap":[[56,1],[44,2],[45,3],[43,4],[46,5],[47,6],[48,7],[49,8],[50,9],[51,10],[52,11],[53,12],[54,13],[55,14],[92,15],[93,15],[95,16],[96,17],[97,18],[98,19],[99,20],[100,21],[101,22],[102,23],[103,24],[104,25],[105,25],[107,26],[106,27],[108,26],[109,28],[110,29],[94,30],[144,31],[111,32],[112,33],[113,34],[145,35],[114,36],[115,37],[116,38],[117,39],[118,40],[119,41],[120,42],[121,43],[122,44],[123,45],[124,45],[125,46],[126,47],[128,48],[127,49],[129,50],[130,51],[131,31],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,60],[141,61],[142,62],[143,63],[42,31],[8,31],[10,31],[9,31],[2,31],[11,31],[12,31],[13,31],[14,31],[15,31],[16,31],[17,31],[18,31],[3,31],[4,31],[22,31],[19,31],[20,31],[21,31],[23,31],[24,31],[25,31],[5,31],[26,31],[27,31],[28,31],[29,31],[6,31],[30,31],[31,31],[32,31],[33,31],[7,31],[34,31],[39,31],[40,31],[35,31],[36,31],[37,31],[38,31],[1,31],[41,31],[73,73],[62,74],[57,74],[58,75],[59,75],[60,75],[61,75],[63,76],[64,74],[65,75],[66,76],[67,77],[68,75],[69,76],[70,75],[71,75],[74,31],[75,31],[72,78]],"semanticDiagnosticsPerFile":[56,44,45,43,46,47,48,49,50,51,52,53,54,55,92,93,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,94,144,111,112,113,145,114,115,116,117,118,119,120,121,122,123,124,125,126,128,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,42,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,73,62,57,58,59,60,61,63,64,65,66,67,68,69,70,71,74,75,77,76,72,78,79,80,81,82,83,84,85,86,87,88,89,90,91]},"version":"4.8.4"}
|