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
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,27 @@
1
+
## 0.14.0
2
+
3
+
This version introduces the context menu, providing a new and interactive way to engage with the designer. If you want, you can disable this feature using the `contextMenu` property in the configuration.
4
+
5
+
```ts
6
+
const configuration = {
7
+
contextMenu: false,
8
+
// ...
9
+
};
10
+
```
11
+
12
+
Introducing a new feature: step duplication! Now, you have the ability to duplicate any step in your definition along with its children. This convenient option can be accessed from the context menu. Please note that the feature is disabled by default. To enable it, you must set your own callback for the isDuplicable property.
13
+
14
+
```ts
15
+
const configuration = {
16
+
steps: {
17
+
isDuplicable: (step, parentSequence) => {
18
+
returntrue;
19
+
},
20
+
},
21
+
// ...
22
+
};
23
+
```
24
+
1
25
## 0.13.7
2
26
3
27
This version fixes change detections in the Angular package. Thanks @wildercarrot!
0 commit comments