Skip to content

v13.37.0

Choose a tag to compare

@tomlyn tomlyn released this 07 Nov 00:08
bef843a

Minor Release v13.37.0

Common Canvas

#2790 Need a case-insensitive parameter so that all occurrences of the text in comments are highlighted, regardless of case sensitivity by @tomlyn

The comment highlighting feature introduced in the previous release has been extended to:

  • highlight the search string if there are multiple occurrences of it in the comment
  • highlight text based on a case insensitive search

The Elyra Cavnas test harness has also been extended so the API panel can be used to specify a search string to be highlighted in comments in the flow.

image

#2792 Draggable sample app should specify default action required by @tomlyn

When nodes are displayed using a React object, applications can make the nodes draggable (independent of the in-built drag/drop behavior provided by Common Canvas) by setting the draggable property of the React's <div> to true. If this arrangement is used with keyboard navigation enabled (the config property enableKeyboardNavigation is set to true), a usability problem occurs when the drag begins because the node needs to be clicked before it can be dragged, rather than being dragged in one gesture.

To circumvent this problem, a new boolean node-layout property called onFocusAllowDefaultAction has been added. When set to true, Common Canvas will allow the default action (that is, the drag) to be enacted when the user presses the mouse button over the node and begins to drag. It can be set like this:

    config = {
        enableNodeLayout: {
            onFocusAllowDefaultAction: true
        }
    };

Common Properties

No changes

Issues Resolved

Full Changelog: v13.36.0...v13.37.0