@bizdoc/core 3.4.8 → 3.4.9
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/fesm2022/bizdoc-core.mjs
CHANGED
@@ -15404,13 +15404,13 @@ class FlowViewComponent extends TraceBase {
|
|
15404
15404
|
}
|
15405
15405
|
created() {
|
15406
15406
|
const [layer1 /*, layer2*/] = this.diagram.layers;
|
15407
|
-
layer1.visible = false;
|
15407
|
+
//layer1.visible = false;
|
15408
15408
|
//setTimeout(() => {
|
15409
15409
|
this.diagram.doLayout();
|
15410
15410
|
this._addIndicators();
|
15411
15411
|
this.diagram.fitToPage();
|
15412
15412
|
//}, 100)
|
15413
|
-
layer1.visible = true;
|
15413
|
+
//layer1.visible = true;
|
15414
15414
|
// layer2.visible = true;
|
15415
15415
|
}
|
15416
15416
|
async _initialize() {
|
@@ -15542,7 +15542,7 @@ class FlowViewComponent extends TraceBase {
|
|
15542
15542
|
annotations: [{
|
15543
15543
|
style: {
|
15544
15544
|
color: node.estimate ? this.dimColor : this.defaultColor,
|
15545
|
-
fill: this.transparentColor
|
15545
|
+
//fill: this.transparentColor
|
15546
15546
|
//opacity: node.estimate ? .6 : 1,
|
15547
15547
|
},
|
15548
15548
|
content: annotation,
|
@@ -15654,7 +15654,7 @@ class FlowViewComponent extends TraceBase {
|
|
15654
15654
|
} : { x: .5 },
|
15655
15655
|
style: {
|
15656
15656
|
color: node.estimate ? this.dimColor : this.defaultColor,
|
15657
|
-
fill: this.transparentColor
|
15657
|
+
//fill: this.transparentColor
|
15658
15658
|
//opacity: node.estimate ? .6 : 1,
|
15659
15659
|
},
|
15660
15660
|
verticalAlignment: shape.type === 'Path' ? 'Top' : 'Center'
|