Releases: nocode-js/sequential-workflow-designer
Releases · nocode-js/sequential-workflow-designer
0.16.10
This version fixes the error: Failed to execute 'removeChild' on 'Node'
when a user uses the undo feature #100.
Additionally, this version introduces getViewport
, setViewport
methods and onViewportChanged
event in the Designer
class.
0.16.9
This version adds a possibility to disable keyboard shortcuts. Additionally you may filter keyboard events handled by the designer.
// Disabled shortcuts
const configuration = {
keyboard: false,
// ...
};
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
Added two events to the Svelte package: on:isToolboxCollapsedChanged
and on:isEditorCollapsedChanged
.
0.16.6
This version introduces a wrapper for Svelte framework! 🎉
0.16.5
This version fixes the bug with scrolling in the toolbox #92.
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
This version adds: isReadonly
, selectedStepId
, uidGenerator
, isToolboxCollapsed
and isEditorCollapsed
properties and onIsToolboxCollapsedChanged
and onIsEditorCollapsedChanged
events to the Angular package.
0.16.2
This version adds the onSelectedStepIdChanged
event to the Angular package.
<sqd-designer ...
(onSelectedStepIdChanged)="onSelectedStepIdChanged($event)">
</sqd-designer>
0.16.1
This version addresses the bug related to deselecting a step when a click is made using the middle mouse button.