Reset Class Properties to separate css style into a property

This commit is contained in:
Eric NGUYEN 2022-08-16 10:11:16 +02:00
parent 3d7baafc17
commit 706f9624cc
6 changed files with 17 additions and 16 deletions

View file

@ -22,7 +22,7 @@ export const Container: React.FC<IContainerProps> = (props: IContainerProps) =>
props.model.properties.x,
props.model.properties.y,
props.model.properties.width,
props.model.properties.XPositionReference
props.model.properties.xPositionReference
);
const transform = `translate(${transformedX}, ${transformedY})`;
@ -36,12 +36,8 @@ export const Container: React.FC<IContainerProps> = (props: IContainerProps) =>
// Rect style
const style = Object.assign(
JSON.parse(JSON.stringify(defaultStyle)),
props.model.properties
props.model.properties.style
);
style.x = 0;
style.y = 0;
delete style.height;
delete style.width;
// Dimension props
const depth = getDepth(props.model);