Releases: nocode-js/sequential-workflow-designer
Releases · nocode-js/sequential-workflow-designer
0.24.0
This version introduces a new function in the Designer
class: updateLayout()
. You can now manually update the layout of the designer, which is particularly useful when you change the size of the designer container. Previously, the layout was updated automatically only when the browser window was resized. However, if you changed the container size dynamically, there was no way to update the layout manually.
0.23.0
0.22.1
0.22.0
0.21.4
0.21.3
0.21.2
0.21.1
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;
}
// ...
};