@bizdoc/core 1.13.0-next.4 → 1.13.0-next.5
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/esm2020/lib/compose/trace/flow.component.mjs +4 -4
- package/esm2020/lib/core/models.mjs +1 -1
- package/fesm2015/bizdoc-core.mjs +3 -3
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +3 -3
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/models.d.ts +2 -2
- package/package.json +1 -1
package/fesm2020/bizdoc-core.mjs
CHANGED
@@ -13288,7 +13288,6 @@ class FlowViewComponent extends TraceBase {
|
|
13288
13288
|
obj.style.strokeWidth = 0;
|
13289
13289
|
}
|
13290
13290
|
else {
|
13291
|
-
// obj.shape = { type: 'Bpmn', shape: 'Event' } as BpmnShapeModel;
|
13292
13291
|
obj.width = obj.height = 50;
|
13293
13292
|
if (obj.annotations && obj.annotations.length)
|
13294
13293
|
obj.annotations[0].style.color = this._session.theme.dark ? 'white' : 'black';
|
@@ -13299,7 +13298,8 @@ class FlowViewComponent extends TraceBase {
|
|
13299
13298
|
}
|
13300
13299
|
else {
|
13301
13300
|
obj.style.strokeColor = this._accentColor;
|
13302
|
-
obj.style.fill = recipient && recipient.pending ?
|
13301
|
+
obj.style.fill = recipient && recipient.pending ?
|
13302
|
+
this._session.getAccent(recipient.userId === this._session.userId ? 500 : 400) : 'transparent';
|
13303
13303
|
}
|
13304
13304
|
obj.style.strokeWidth = 2;
|
13305
13305
|
}
|
@@ -13406,7 +13406,7 @@ class FlowViewComponent extends TraceBase {
|
|
13406
13406
|
});
|
13407
13407
|
if (c.sourceId === node.id) {
|
13408
13408
|
//
|
13409
|
-
if (c.
|
13409
|
+
if (c.virtual && c.originId !== recipient.id)
|
13410
13410
|
return;
|
13411
13411
|
connectors.push({
|
13412
13412
|
sourceID: nod.id,
|