Releases: nocode-js/sequential-workflow-designer
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.
0.15.4
0.15.3
This is a re-release of the 0.15.2 version.
0.15.2
This version introduces a new approach to customizing the designer. Prior to this version, customization was challenging and required numerous CSS overrides. Now, the designer provides SCSS files with mixins, simplifying the customization process.
We have prepared a tutorial on creating a custom theme, which is exclusively available for pro version clients.
Please note that the designer.css
, designer-light.css
, and designer-dark.css
files are still available as they were before. If you have been using these files without any overrides, you don't need to make any changes.