Skip to content

Releases: nocode-js/sequential-workflow-designer

0.30.2

28 Aug 20:55
8ffc75f
Compare
Choose a tag to compare

This version fixes a bug related to identifying the touched element #195.

0.30.1

25 Aug 21:03
ce40b6b
Compare
Choose a tag to compare

Added a configurable branch name resolver for the switch step component, allowing you to define custom logic for resolving branch names #193.

import { StepsDesignerExtension } from 'sequential-workflow-designer';

const extensions = [
  StepsDesignerExtension.create({
    switch: {
      branchNamesResolver: (step) => Object.keys(step.branches)
    }
  })
];

0.30.0

22 Jun 17:48
62a8146
Compare
Choose a tag to compare

This version introduces a new step component: launchPad.

The launchPad step component allows you to place multiple steps along a horizontal axis. Its design suggests that any of the contained steps can be executed independently or simultaneously. You can use it as a container for parallel execution or as a trigger hub-waiting for one or more embedded trigger steps to activate the workflow.

The main goal of this addition is to enable the creation of workflows with multiple triggers in the standard version of the designer.

To see how it looks, please check out this example.

0.29.2

08 Jun 20:49
4430ec1
Compare
Choose a tag to compare

Added a new theme: soft.

0.29.1

22 May 21:28
1b8f080
Compare
Choose a tag to compare

This release includes a small code refactor.

0.29.0

19 Apr 08:42
585c570
Compare
Choose a tag to compare

This version adds support for 0 branches to the switch step component. The switch step component can now have 0 branches.

0.28.0

20 Mar 17:44
f215166
Compare
Choose a tag to compare

This update modifies the custom context menu in the pro version. The context menu items provider now retrieves the parent sequence of the selected workspace root sequence. If the root sequence is a folder sequence, the parent sequence is the folder sequence.

0.27.4

09 Mar 00:09
dccfe9e
Compare
Choose a tag to compare

Support for React 19 has been added.

0.27.3

20 Feb 20:53
3553aad
Compare
Choose a tag to compare

This version adds the onIsReadyChanged event to the SequentialWorkflowDesignerController class for React.

0.27.2

23 Jan 22:16
b2c26f6
Compare
Choose a tag to compare

Added a new method to the internal control bar api.