Releases: nocode-js/sequential-workflow-designer
Releases · nocode-js/sequential-workflow-designer
0.21.3
This version resolves the problem of unwanted text selection in the toolbox in Safari 17.5 #153.
0.21.2
This version resolves the problem of unwanted dragging of the image element in the toolbox #149.
0.21.1
Added support for Angular 17 #145.
0.21.0
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
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
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
This version improves the experience of scrolling in the toolbox via the touchpad.
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.
0.19.1
Fixed the bug with refreshing the state modifier dependencies.
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.