Skip to content

Releases: nocode-js/sequential-workflow-designer

0.19.4

30 Apr 21:02
286a0a3
Compare
Choose a tag to compare

This version adds the data-step-id attribute to the root <g> elements of step components on the canvas. This attribute contains the ID of the step, enabling the use of CSS selectors to style step components #135.

0.19.3

11 Mar 19:42
220f1a1
Compare
Choose a tag to compare

This version improves the experience of scrolling in the toolbox via the touchpad.

0.19.2

25 Feb 17:52
0a84390
Compare
Choose a tag to compare

This version adds the alt key support. Now when you hold the alt key and click on the canvas, the drag and drop is disabled #126.

0.19.1

19 Feb 22:03
db49623
Compare
Choose a tag to compare

Fixed the bug with refreshing the state modifier dependencies.

0.19.0

18 Feb 18:45
58f6241
Compare
Choose a tag to compare
  • Added the isSelectable callback to the StepsConfiguration interface. Now it's possible to disable the selection of steps.
  • Deleted deprecated methods and interfaces.

0.18.5

12 Feb 14:51
b01321f
Compare
Choose a tag to compare

This version fixes a bug with unintended selection of HTML elements in Apple Vision Pro.

0.18.4

04 Feb 12:45
6d9829d
Compare
Choose a tag to compare

This version removes the features introduced in the previous release. We noticed that the proposed solution did not update the undo stack. As a result, we removed that feature in this version. Instead, we added a new method to the Designer class called replaceDefinition, which allows for the replacement of the entire definition and updates the undo stack.

function appendStep() {
  const newStep: Step = { /* ... */ };

  const newDefinition = ObjectCloner.deepClone(designer.getDefinition());
  newDefinition.sequence.push(newStep);
  await designer.replaceDefinition(newDefinition);
}

0.18.3

01 Feb 20:28
957b90d
Compare
Choose a tag to compare

Edited: changes are reverted in the 0.18.4 version.

0.18.2

29 Jan 23:11
20a2df9
Compare
Choose a tag to compare

This version corrects a bug in the moveViewportToStep method that caused the viewport to move to the incorrect position.

0.18.1

11 Jan 13:09
adfd055
Compare
Choose a tag to compare

This version exposes the definition walker from the Designer class #109.

const walker = designer.getWalker();