Skip to content

Releases: nocode-js/sequential-workflow-designer

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!

0.13.6

22 Jul 18:26
d91c037
Compare
Choose a tag to compare

Now it's possible to configure the size of grid cells. The default size is 48 as before.

🌟 In the pro version you can change the pattern of the grid from now. The pro version supports two new patterns: dot and cross.

0.13.5

05 Jul 20:49
622cb46
Compare
Choose a tag to compare

We have added a third parameter, definition, to the step editor provider.

function stepEditorProvider(step, stepContext, definition) { /* ... */ }

0.13.4

30 Jun 17:57
033427b
Compare
Choose a tag to compare

The getStepParents method of the Designer class supports now a step id as an argument. It is possible to get parents of a step by its id. The method still supports a step object or a sequence as an argument.

designer.getStepParents('eb4f481ee1b90c6e3fc9b42dd010d2a5');