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.16.4
Name Modified Size InfoDownloads / Week
Parent folder
0.16.4 source code.tar.gz 2023-10-05 533.2 kB
0.16.4 source code.zip 2023-10-05 675.9 kB
README.md 2023-10-05 624 Bytes
Totals: 3 Items   1.2 MB 0

This version introduces the isAutoSelectDisabled option. Now it's possible to disable the auto-select feature.

:::js
const configuration = {
  steps: {
    isAutoSelectDisabled: true,
    // ...
  }
};

Additionally, this version introduces possibility to initialize the designer with the undo stack from the previous session.

:::js
const configuration = {
  undoStackSize: 10,
  undoStack: myUndoStack,
  // ...
};

To read the current stack you should use the dumpUndoStack() method.

:::js
const myUndoStack = designer.dumpUndoStack();
Source: README.md, updated 2023-10-05