Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
0.16.4 source code.tar.gz | 2023-10-05 | 533.2 kB | |
0.16.4 source code.zip | 2023-10-05 | 675.9 kB | |
README.md | 2023-10-05 | 624 Bytes | |
Totals: 3 Items | 1.2 MB | 0 |
This version introduces the isAutoSelectDisabled
option. Now it's possible to disable the auto-select feature.
:::js
const configuration = {
steps: {
isAutoSelectDisabled: true,
// ...
}
};
Additionally, this version introduces possibility to initialize the designer with the undo stack from the previous session.
:::js
const configuration = {
undoStackSize: 10,
undoStack: myUndoStack,
// ...
};
To read the current stack you should use the dumpUndoStack()
method.
:::js
const myUndoStack = designer.dumpUndoStack();