New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sequential-workflow-designer

Package Overview
Dependencies
Maintainers
0
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sequential-workflow-designer - npm Package Versions

1
10

0.13.8

Diff

b4rtaz
published 0.14.2 •

Changelog

Source

0.14.2

This is a re-release of the 0.14.1 version.

b4rtaz
published 0.15.2 •

Changelog

Source

0.15.2

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.

Breaking Changes

  • The sqd-grid-path class of the line grid is renamed to sqd-line-grid-path.
  • Selectors in the designer.css, designer-light.css and designer-dark.css files have been changed.
b4rtaz
published 0.15.1 •

b4rtaz
published 0.15.0 •

b4rtaz
published 0.14.1 •

Changelog

Source

0.14.1

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.

b4rtaz
published 0.14.0 •

Changelog

Source

0.14.0

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;
    },
  },
  // ...
};
b4rtaz
published 0.13.7 •

Changelog

Source

0.13.7

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

b4rtaz
published 0.13.6 •

Changelog

Source

0.13.6

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.

b4rtaz
published 0.13.5 •

Changelog

Source

0.13.5

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

function stepEditorProvider(step, stepContext, definition) { /* ... */ }
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc