Skip to content

0.16.4

Compare
Choose a tag to compare
@b4rtaz b4rtaz released this 05 Oct 14:09
· 61 commits to main since this release
365e409

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();