Skip to content

Releases: nocode-js/sequential-workflow-designer

0.22.0

21 Jul 08:46
878fa18
Compare
Choose a tag to compare

This version refactors the code responsible for displaying placeholders.

0.21.4

11 Jul 22:23
864b61a
Compare
Choose a tag to compare

This version fixes the problem with scrolling the toolbox on mobile devices by using two fingers.

0.21.3

11 Jul 22:02
70d2c40
Compare
Choose a tag to compare

This version resolves the problem of unwanted text selection in the toolbox in Safari 17.5 #153.

0.21.2

11 Jun 14:14
b04acda
Compare
Choose a tag to compare

This version resolves the problem of unwanted dragging of the image element in the toolbox #149.

0.21.1

19 May 20:27
97876eb
Compare
Choose a tag to compare

Added support for Angular 17 #145.

0.21.0

16 May 20:59
1b2d319
Compare
Choose a tag to compare

This version introduces several changes related with the collapsible regions in the pro version.

Check the new feature of the pro version:

0.20.0

03 May 21:37
0298467
Compare
Choose a tag to compare

This version introduces the localization feature. Now you can localize the designer to any language you want.

const configuration = {
  i18n: (key, defaultValue) => {
    if (currentLang === 'pl') {
      if (key === 'controlBar.undo') {
        return 'Cofnij';
      }
    }
    return defaultValue;
  }
  // ...
};

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.