Download Latest Version 0.30.0 source code.zip (801.0 kB)
Email in envelope

Get an email when there's a new version of Sequential Workflow Designer

Home / v0.20.0
Name Modified Size InfoDownloads / Week
Parent folder
0.20.0 source code.tar.gz 2024-05-03 560.9 kB
0.20.0 source code.zip 2024-05-03 720.5 kB
README.md 2024-05-03 385 Bytes
Totals: 3 Items   1.3 MB 0

This version introduces the localization feature. Now you can localize the designer to any language you want.

:::js
const configuration = {
  i18n: (key, defaultValue) => {
    if (currentLang === 'pl') {
      if (key === 'controlBar.undo') {
        return 'Cofnij';
      }
    }
    return defaultValue;
  }
  // ...
};
Source: README.md, updated 2024-05-03