Skip to content

v13.23.0

Choose a tag to compare

@tomlyn tomlyn released this 15 Apr 22:54
edd6ab6

Minor Release

Common Canvas

#2457 For multi-line text display, text can sometimes appear after the ellipsis when text is truncated

This is a bug fix to prevent truncated text from being displayed. See the issue for details.

Warning: If you override the CSS properties line-clamp and/or -webkit-line-clamp the display of multi-line text in your application may be affected. Check your CSS to see if you have overridden these properties and if you have make the following change.

If you have something like this:

    .d3-label-multi-line {
           line-clamp: 3;
           -webkit-line-clamp: 3;
    }

change it be inside a span like this:

    .d3-label-multi-line {
          span {
               line-clamp: 3;
               -webkit-line-clamp: 3;
          } 
    }

#2444 Node connection parity: drag connector

A new configuration property called enableSplitLinkDroppedOnNode, has been introduced in this release. This feature allows users to drag a link from the center towards a node and rewire the flow by dropping the link on the target node. The feature is only available when enableLinkType is set to “Straight” and enableLinkMethod is set to “Feeform”.

When enableSplitLinkDroppedOnNode is set to true, the following behavior is enabled:

  • Drag a link from the center towards a node.
  • Drop the link on the target node.
  • The original link is deleted.
  • Two new links are created:
    - One link connects the original source to the target node.
    - Another link connects the target node to the original destination.

This feature provides a more intuitive and efficient way to rewire flows by allowing users to easily split and reconfigure links between nodes.

DrahLink

Common Properties

Just bug fixes

Issues Resolved

Full Changelog: v13.22.0...v13.23.0