Undo / Redo
The designer supports undo/redo operations. By default this feature is disabled.
Example
Check the Fullscreen Example.
To enable the undo / redo feature you need to set the undoStackSize
property in your configuration.
const configuration = {
undoStackSize: 10,
// ...
};
This property sets a limit of undo/redo operations. Be careful with this property. If you set it to a big number it may cause performance issues.