Download Latest Version 0.30.0 source code.zip (801.0 kB)
Email in envelope

Get an email when there's a new version of Sequential Workflow Designer

Home / v0.14.0
Name Modified Size InfoDownloads / Week
Parent folder
0.14.0 source code.tar.gz 2023-07-27 524.5 kB
0.14.0 source code.zip 2023-07-27 661.5 kB
README.md 2023-07-27 803 Bytes
Totals: 3 Items   1.2 MB 0

This version introduces the context menu, providing a new and interactive way to engage with the designer. If you want, you can disable this feature using the contextMenu property in the configuration.

:::ts
const configuration = {
  contextMenu: false,
  // ...
};

Introducing a new feature: step duplication! Now, you have the ability to duplicate any step in your definition along with its children. This convenient option can be accessed from the context menu. Please note that the feature is disabled by default. To enable it, you must set your own callback for the isDuplicable property.

:::ts
const configuration = {
  steps: {
    isDuplicable: (step, parentSequence) => {
      return true;
    },
  },
  // ...
};
Source: README.md, updated 2023-07-27