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
+36
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,39 @@
1
+
## 0.17.0
2
+
3
+
This version introduces a new argument for editor providers: `isReadonly`. Now when the designer is in the read-only mode, the editor providers can render the read-only version of the editor.
4
+
5
+
### Breaking Changes
6
+
7
+
This version finally renames the "global editor" into the "root editor". This change is made in the designer package and all wrappers, except the Svelte package. The Svelte package uses a new name from the beginning.
8
+
9
+
```js
10
+
constconfiguration= {
11
+
editors: {
12
+
// globalEditorProvider: () => {}, is not supported anymore, use `rootEditorProvider` instead.
This version also renames the `sqd-global-editor` class of the root editor into the `sqd-root-editor` class.
20
+
21
+
### React
22
+
23
+
```tsx
24
+
// globalEditor={} is not supported anymore, use `rootEditor={}` instead.
25
+
<SequentialWorkflowDesigner
26
+
rootEditor={<RootEditor />}... />
27
+
```
28
+
29
+
### Angular
30
+
31
+
```html
32
+
<!-- [globalEditor]="" is not supported anymore, use [rootEditor]="" instead. -->
33
+
<sqd-designer...
34
+
[rootEditor]="rootEditor"></sqd-designer>
35
+
```
36
+
1
37
## 0.16.10
2
38
3
39
This version fixes the error: `Failed to execute 'removeChild' on 'Node'` when a user uses the undo feature [#100](https://github.com/nocode-js/sequential-workflow-designer/issues/100).
0 commit comments