Releases: nocode-js/sequential-workflow-designer
0.16.9
0.16.8
Svelte package supports now native editors. If you want to use JavaScript/TypeScript code to create editors, you can do it now. Of course, you can still use Svelte components as editors.
<SequentialWorkflowDesigner ...
stepEditor={StepEditor}
rootEditor={RootEditor} />
<SequentialWorkflowDesigner ...
nativeStepEditor={nativeStepEditor}
nativeRootEditor={nativeRootEditor} />
0.16.7
0.16.6
0.16.5
0.16.4
This version introduces the isAutoSelectDisabled
option. Now it's possible to disable the auto-select feature.
const configuration = {
steps: {
isAutoSelectDisabled: true,
// ...
}
};
Additionally, this version introduces possibility to initialize the designer with the undo stack from the previous session.
const configuration = {
undoStackSize: 10,
undoStack: myUndoStack,
// ...
};
To read the current stack you should use the dumpUndoStack()
method.
const myUndoStack = designer.dumpUndoStack();
0.16.3
0.16.2
0.16.1
0.16.0
This version fixes the bug with search in the toolbox. The search now includes custom labels provided by the labelProvider
callback.
Additionally, this version adds the descriptionProvider
to the configuration of the toolbox. The description is visible when you put a mouse cursor on a step in the toolbox for a while.