v13.37.0
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.
#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
- #2782 The Elyra Canvas getting started docs should mentioned how to g… by @tomlyn in #2783
- #2784 Allow cc-contents to run in strict mode by @tomlyn in #2785
- #2786 Enabling keyboard navigation prevents drag in React Nodes - Dra… by @tomlyn in #2787
- #2788 Enable Typescript and get app-tiny and documentation up to date… by @tomlyn in #2789
- #2790 Need a case-insensitive parameter so that all occurrences of the… by @tomlyn in #2791
- #2792 Draggable sample app should specify default action required by @tomlyn in #2793
- #2794 Tiny app in docs by @tomlyn in #2795
- #2794 Embed tiny-app in mkdocs (part 2) by @tomlyn in #2796
- #2797 Build better Tiny App by @tomlyn in #2798
- #2799 On Windows, Ctrl + Shift + does not create a link with … by @tomlyn in #2800
Full Changelog: v13.36.0...v13.37.0