// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`restoreElements should restore arrow element correctly 1`] = ` Object { "angle": 0, "backgroundColor": "transparent", "boundElements": Array [], "endArrowhead": null, "endBinding": null, "fillStyle": "hachure", "groupIds": Array [], "height": 0, "id": "id-arrow01", "isDeleted": false, "lastCommittedPoint": null, "opacity": 100, "points": Array [ Array [ 0, 0, ], Array [ 0, 0, ], ], "roughness": 1, "seed": Any, "startArrowhead": null, "startBinding": null, "strokeColor": "#000000", "strokeSharpness": "sharp", "strokeStyle": "solid", "strokeWidth": 1, "type": "arrow", "updated": 1, "version": 1, "versionNonce": 0, "width": 0, "x": 0, "y": 0, } `; exports[`restoreElements should restore correctly with rectangle, ellipse and diamond elements 1`] = ` Object { "angle": 0, "backgroundColor": "blue", "boundElements": Array [], "fillStyle": "cross-hatch", "groupIds": Array [ "1", "2", "3", ], "height": 200, "id": "1", "isDeleted": false, "opacity": 10, "roughness": 2, "seed": Any, "strokeColor": "red", "strokeSharpness": "round", "strokeStyle": "dashed", "strokeWidth": 2, "type": "rectangle", "updated": 1, "version": 1, "versionNonce": 0, "width": 100, "x": 10, "y": 20, } `; exports[`restoreElements should restore correctly with rectangle, ellipse and diamond elements 2`] = ` Object { "angle": 0, "backgroundColor": "blue", "boundElements": Array [], "fillStyle": "cross-hatch", "groupIds": Array [ "1", "2", "3", ], "height": 200, "id": "2", "isDeleted": false, "opacity": 10, "roughness": 2, "seed": Any, "strokeColor": "red", "strokeSharpness": "round", "strokeStyle": "dashed", "strokeWidth": 2, "type": "ellipse", "updated": 1, "version": 1, "versionNonce": 0, "width": 100, "x": 10, "y": 20, } `; exports[`restoreElements should restore correctly with rectangle, ellipse and diamond elements 3`] = ` Object { "angle": 0, "backgroundColor": "blue", "boundElements": Array [], "fillStyle": "cross-hatch", "groupIds": Array [ "1", "2", "3", ], "height": 200, "id": "3", "isDeleted": false, "opacity": 10, "roughness": 2, "seed": Any, "strokeColor": "red", "strokeSharpness": "round", "strokeStyle": "dashed", "strokeWidth": 2, "type": "diamond", "updated": 1, "version": 1, "versionNonce": 0, "width": 100, "x": 10, "y": 20, } `; exports[`restoreElements should restore freedraw element correctly 1`] = ` Object { "angle": 0, "backgroundColor": "transparent", "boundElements": Array [], "fillStyle": "hachure", "groupIds": Array [], "height": 0, "id": "id-freedraw01", "isDeleted": false, "lastCommittedPoint": null, "opacity": 100, "points": Array [], "pressures": Array [], "roughness": 1, "seed": Any, "simulatePressure": true, "strokeColor": "#000000", "strokeSharpness": "sharp", "strokeStyle": "solid", "strokeWidth": 1, "type": "freedraw", "updated": 1, "version": 1, "versionNonce": 0, "width": 0, "x": 0, "y": 0, } `; exports[`restoreElements should restore line and draw elements correctly 1`] = ` Object { "angle": 0, "backgroundColor": "transparent", "boundElements": Array [], "endArrowhead": null, "endBinding": null, "fillStyle": "hachure", "groupIds": Array [], "height": 0, "id": "id-line01", "isDeleted": false, "lastCommittedPoint": null, "opacity": 100, "points": Array [ Array [ 0, 0, ], Array [ 0, 0, ], ], "roughness": 1, "seed": Any, "startArrowhead": null, "startBinding": null, "strokeColor": "#000000", "strokeSharpness": "sharp", "strokeStyle": "solid", "strokeWidth": 1, "type": "line", "updated": 1, "version": 1, "versionNonce": 0, "width": 0, "x": 0, "y": 0, } `; exports[`restoreElements should restore line and draw elements correctly 2`] = ` Object { "angle": 0, "backgroundColor": "transparent", "boundElements": Array [], "endArrowhead": null, "endBinding": null, "fillStyle": "hachure", "groupIds": Array [], "height": 0, "id": "id-draw01", "isDeleted": false, "lastCommittedPoint": null, "opacity": 100, "points": Array [ Array [ 0, 0, ], Array [ 0, 0, ], ], "roughness": 1, "seed": Any, "startArrowhead": null, "startBinding": null, "strokeColor": "#000000", "strokeSharpness": "sharp", "strokeStyle": "solid", "strokeWidth": 1, "type": "line", "updated": 1, "version": 1, "versionNonce": 0, "width": 0, "x": 0, "y": 0, } `; exports[`restoreElements should restore text element correctly passing value for each attribute 1`] = ` Object { "angle": 0, "backgroundColor": "transparent", "baseline": 0, "boundElements": Array [], "containerId": null, "fillStyle": "hachure", "fontFamily": 1, "fontSize": 14, "groupIds": Array [], "height": 100, "id": "id-text01", "isDeleted": false, "opacity": 100, "originalText": "text", "roughness": 1, "seed": Any, "strokeColor": "#000000", "strokeSharpness": "sharp", "strokeStyle": "solid", "strokeWidth": 1, "text": "text", "textAlign": "center", "type": "text", "updated": 1, "version": 1, "versionNonce": 0, "verticalAlign": "middle", "width": 100, "x": 0, "y": 0, } `; exports[`restoreElements should restore text element correctly with unknown font family, null text and undefined alignment 1`] = ` Object { "angle": 0, "backgroundColor": "transparent", "baseline": 0, "boundElements": Array [], "containerId": null, "fillStyle": "hachure", "fontFamily": 1, "fontSize": 10, "groupIds": Array [], "height": 100, "id": "id-text01", "isDeleted": false, "opacity": 100, "originalText": "test", "roughness": 1, "seed": Any, "strokeColor": "#000000", "strokeSharpness": "sharp", "strokeStyle": "solid", "strokeWidth": 1, "text": "", "textAlign": "left", "type": "text", "updated": 1, "version": 1, "versionNonce": 0, "verticalAlign": "top", "width": 100, "x": 0, "y": 0, } `;