@hpcc-js/other 3.2.0 → 3.2.2
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -2593,7 +2593,7 @@ class Opportunity extends SVGWidget {
|
|
|
2593
2593
|
changeLines.enter().append("line").attr("class", "arrow update"), changeLines.attr("x1", function(d2) {
|
|
2594
2594
|
return d2.delta > 0 ? nodeRectWidth : 0;
|
|
2595
2595
|
}).attr("y1", nodeRectHeight / 2).attr("x2", function(d2) {
|
|
2596
|
-
return d2.delta > 0 ? nodeRectWidth + nodeRectWidthPadding - 4 + (Math.abs(d2.delta) - 1) * (w / context.groupCount) : -
|
|
2596
|
+
return d2.delta > 0 ? nodeRectWidth + nodeRectWidthPadding - 4 + (Math.abs(d2.delta) - 1) * (w / context.groupCount) : -30 - (Math.abs(d2.delta) - 1) * (w / context.groupCount) + 4;
|
|
2597
2597
|
}).attr("y2", nodeRectHeight / 2).style("stroke-dasharray", "3, 3").style("stroke", "rgb(100,100,100)").style("marker-end", "url(#end-arrow)").style("opacity", "1"), changeLines.exit().remove();
|
|
2598
2598
|
}), node_prev_group.select(".node_prev_rect").attr("width", nodeRectWidth).attr("height", nodeRectHeight), node_prev_group.select(".node_prev_text").attr("dy", nodeRectHeight / 2 + 3).attr("dx", nodeRectWidth / 4).text(function(d) {
|
|
2599
2599
|
return typeof d[dropDownOption] == "number" ? d[dropDownOption] : d[dropDownOption].substring(0, 14);
|