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
+29
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,32 @@
1
+
## 0.16.4
2
+
3
+
This version introduces the `isAutoSelectDisabled` option. Now it's possible to disable the auto-select feature.
4
+
5
+
```js
6
+
constconfiguration= {
7
+
steps: {
8
+
isAutoSelectDisabled:true,
9
+
// ...
10
+
}
11
+
};
12
+
```
13
+
14
+
Additionally, this version introduces possibility to initialize the designer with the undo stack from the previous session.
15
+
16
+
```js
17
+
constconfiguration= {
18
+
undoStackSize:10,
19
+
undoStack: myUndoStack,
20
+
// ...
21
+
};
22
+
```
23
+
24
+
To read the current stack you should use the `dumpUndoStack()` method.
25
+
26
+
```js
27
+
constmyUndoStack=designer.dumpUndoStack();
28
+
```
29
+
1
30
## 0.16.3
2
31
3
32
This version adds: `isReadonly`, `selectedStepId`, `uidGenerator`, `isToolboxCollapsed` and `isEditorCollapsed` properties and `onIsToolboxCollapsedChanged` and `onIsEditorCollapsedChanged` events to the Angular package.
0 commit comments