Skip to content

v24.4.0

Choose a tag to compare

@github-actions github-actions released this 07 Aug 18:24
· 462 commits to develop since this release

Added

  • <ExtendedCodeEditor />
    • height and readOnly properties to forward them to <CodeEditor/>
  • <CodeAutocompleteField />:
    • outerDivAttributes property: allows to set parameter of the container element
    • height and readOnly properties to forward them to <ExtendedCodeEditor/>
  • <ActivityControlWidget />
    • additionalActions property to include other more complex components between the action buttons and the context menu of the widget
  • <Tooltip />
    • swapPlaceholderDelay property to allow configuration of the delay time before the placeholder element is replaced by the actual tooltip component

Fixed

  • <CodeEditor />
    • Editor is re-created after certain property changes and is reset, i.e. loses it current state.
    • Enter key handling (adding new line) was broken when onKeyDown is defined.
  • <CodeAutocompleteField />
    • First auto-completion item not marked as active when drop down first shown.
    • Read-only mode does not work correctly. It is still possible to change the value via pressing Enter (in multiline mode) or clicking the clear button.

Changed

  • <NodeContent />
    • prevent start of a react flow drag action of a node when user clicks in the node menu section

Deprecated

  • <CodeEditor />
    • onChange property: support for (v: any) => void type will be exchanged to more specific (v: string) => void