sequential-workflow-designer
Advanced tools
Changelog
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();
Changelog
0.16.3
This version adds: isReadonly
, selectedStepId
, uidGenerator
, isToolboxCollapsed
and isEditorCollapsed
properties and onIsToolboxCollapsedChanged
and onIsEditorCollapsedChanged
events to the Angular package.
Changelog
0.16.2
This version adds the onSelectedStepIdChanged
event to the Angular package.
<sqd-designer ...
(onSelectedStepIdChanged)="onSelectedStepIdChanged($event)">
</sqd-designer>
Changelog
0.16.1
This version addresses the bug related to deselecting a step when a click is made using the middle mouse button.
Changelog
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.