Skip to content

Releases: nocode-js/sequential-workflow-designer

0.16.2

02 Oct 15:11
80c6301
Compare
Choose a tag to compare

This version adds the onSelectedStepIdChanged event to the Angular package.

<sqd-designer ...
  (onSelectedStepIdChanged)="onSelectedStepIdChanged($event)">
</sqd-designer>

0.16.1

24 Sep 21:13
b409e1b
Compare
Choose a tag to compare

This version addresses the bug related to deselecting a step when a click is made using the middle mouse button.

0.16.0

17 Sep 20:03
c9f4d7b
Compare
Choose a tag to compare

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

14 Sep 19:20
ca2b494
Compare
Choose a tag to compare

This version adds rounding configuration to the designer-theme.scss file.

0.15.3

10 Sep 23:09
b05189a
Compare
Choose a tag to compare

This is a re-release of the 0.15.2 version.

0.15.2

10 Sep 22:42
4d24e21
Compare
Choose a tag to compare

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.

0.14.2

10 Sep 22:41
a4971e6
Compare
Choose a tag to compare

This is a re-release of the 0.14.1 version.

0.14.1

04 Aug 11:33
233073a
Compare
Choose a tag to compare

This version includes the ability to hide the context menu for Angular and React packages.

// React
<SequentialWorkflowDesigner contextMenu={false} ... />
<!-- Angular -->
<sqd-designer [contextMenu]="false" ...></sqd-designer>

🌟 The pro version introduces the loading badge. Check the badges example.

0.14.0

27 Jul 22:06
f6e889c
Compare
Choose a tag to compare

This version introduces the context menu, providing a new and interactive way to engage with the designer. If you want, you can disable this feature using the contextMenu property in the configuration.

const configuration = {
  contextMenu: false,
  // ...
};

Introducing a new feature: step duplication! Now, you have the ability to duplicate any step in your definition along with its children. This convenient option can be accessed from the context menu. Please note that the feature is disabled by default. To enable it, you must set your own callback for the isDuplicable property.

const configuration = {
  steps: {
    isDuplicable: (step, parentSequence) => {
      return true;
    },
  },
  // ...
};

0.13.7

23 Jul 10:50
21907a3
Compare
Choose a tag to compare

This version fixes change detection in the Angular package. Thanks @wildercarrot!