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.9.0
Name Modified Size InfoDownloads / Week
Parent folder
0.9.0 source code.tar.gz 2023-03-13 492.7 kB
0.9.0 source code.zip 2023-03-13 607.4 kB
README.md 2023-03-13 696 Bytes
Totals: 3 Items   1.1 MB 0

Breaking Changes

This version changes the main configuration. The "isHidden" properties are prohibited. To hide the control bar or other UI component you need to set false in the corresponding configuration property.

:::js
const configuration = {
  toolbox: false,
  editors: false,
  controlBar: false,
  // ...
};

To display components you need to set a proper value.

:::js
const configuration = {
  toolbox: {
    groups: [ /* ... */ ]
  },
  editors: {
    globalEditorProvider: () => { /* ... */ },
    stepEditorProvider: () => { /* ... */ },
  },
  controlBar: true,
  // ...
};
Source: README.md, updated 2023-03-13