Undo and redo for moving and adding objects

This commit is contained in:
1ilit
2023-09-19 15:49:44 +03:00
parent 59609b1cd8
commit c79999d773
4 changed files with 243 additions and 59 deletions

View File

@@ -75,6 +75,11 @@ const ObjectType = {
NOTE: 3,
};
const Action = {
ADD: 0,
MOVE: 1,
}
export {
bgBlue,
sqlDataTypes,
@@ -86,4 +91,5 @@ export {
Constraint,
Tab,
ObjectType,
Action
};