0.16.4
This version introduces the isAutoSelectDisabled option. Now it's possible to disable the auto-select feature.
const configuration = {
steps: {
isAutoSelectDisabled: true,
// ...
}
};Additionally, this version introduces possibility to initialize the designer with the undo stack from the previous session.
const configuration = {
undoStackSize: 10,
undoStack: myUndoStack,
// ...
};To read the current stack you should use the dumpUndoStack() method.
const myUndoStack = designer.dumpUndoStack();