Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sequential-workflow-designer

Package Overview
Dependencies
Maintainers
0
Versions
96
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.21.0

Diff

Changelog

Source

0.21.0

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

b4rtaz
published 0.20.0 •

Changelog

Source

0.20.0

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

Changelog

Source

0.19.4

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.

b4rtaz
published 0.19.3 •

Changelog

Source

0.19.3

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

b4rtaz
published 0.19.2 •

Changelog

Source

0.19.2

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.

b4rtaz
published 0.19.1 •

Changelog

Source

0.19.1

Fixed the bug with refreshing the state modifier dependencies.

b4rtaz
published 0.19.0 •

Changelog

Source

0.19.0

  • Added the isSelectable callback to the StepsConfiguration interface. Now it's possible to disable the selection of steps.
  • Deleted deprecated methods and interfaces.
b4rtaz
published 0.18.5 •

Changelog

Source

0.18.5

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

b4rtaz
published 0.18.4 •

Changelog

Source

0.18.4

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);
}
b4rtaz
published 0.18.3 •

Changelog

Source

0.18.3

Edited: changes are reverted in the 0.18.4 version.

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