The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
Get an email when there's a new version of Sequential Workflow Designer
| Name | Modified | Size | InfoDownloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.12.0 source code.tar.gz | 2023年05月16日 | 510.9 kB | |
| 0.12.0 source code.zip | 2023年05月16日 | 641.4 kB | |
| README.md | 2023年05月16日 | 852 Bytes | |
| Totals: 3 Items | 1.2 MB | 0 | |
The designer has allowed only the validation of the steps so far. The root of the definition could be edited by the global editor, but the validation was not possible. This version adds a new type of the validator: the root validator. The new validator affects on the result of the definition validation (designer.isValid()).
Breaking Changes
- The
validatorproperty in thestepsgroup of the configuration is deleted. Use thestepproperty in thevalidatorgroup instead. - The step validator has a new parameter:
definition. -
Added the root validator.
:::js const configuration = { steps: { validator: / DEPRECIATED /, }, validator: { step: (step, parentSequence, definition) => { / ... / }, root: (definition) => { / ... / } }, // ... };