You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,21 @@
1
+
## 0.20.0
2
+
3
+
This version introduces the localization feature. Now you can localize the designer to any language you want.
4
+
5
+
```js
6
+
constconfiguration= {
7
+
i18n: (key, defaultValue) => {
8
+
if (currentLang ==='pl') {
9
+
if (key ==='controlBar.undo') {
10
+
return'Cofnij';
11
+
}
12
+
}
13
+
return defaultValue;
14
+
}
15
+
// ...
16
+
};
17
+
```
18
+
1
19
## 0.19.4
2
20
3
21
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](https://github.com/nocode-js/sequential-workflow-designer/issues/135).
0 commit comments