0.9.0
Breaking Changes
This version changes the main configuration. The "isHidden" properties are prohibited. To hide the control bar or other UI component you need to set false
in the corresponding configuration property.
const configuration = {
toolbox: false,
editors: false,
controlBar: false,
// ...
};
To display components you need to set a proper value.
const configuration = {
toolbox: {
groups: [ /* ... */ ]
},
editors: {
globalEditorProvider: () => { /* ... */ },
stepEditorProvider: () => { /* ... */ },
},
controlBar: true,
// ...
};