The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
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,
// ...
};