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
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,38 @@
1
+
## 0.9.0
2
+
3
+
#### Breaking Changes
4
+
5
+
This version changes the main configuration. The "isHidden" properties are depreciated now and will be removed. Also we added a possibility to hide the control bar. To hide the control bar or other UI component you need to set `false` in the corresponding configuration property.
6
+
7
+
```js
8
+
constconfiguration= {
9
+
toolbox:false,
10
+
editors:false,
11
+
controlBar:false,
12
+
// ...
13
+
};
14
+
```
15
+
16
+
To display components you need to set a proper value.
17
+
18
+
```js
19
+
constconfiguration= {
20
+
toolbox: {
21
+
groups: [ /* ... */ ]
22
+
},
23
+
editors: {
24
+
globalEditorProvider: () => { /* ... */ },
25
+
stepEditorProvider: () => { /* ... */ },
26
+
},
27
+
controlBar:true,
28
+
// ...
29
+
};
30
+
```
31
+
32
+
## React & Angular
33
+
34
+
The `controlBar` property is required from now. This change applies for the `sequential-workflow-designer-angular` and `sequential-workflow-designer-react` packages as well.
0 commit comments