publish 7.0.0-beta.5

master
JFH 2021-08-15 09:02:11 +02:00
parent 330670b5e4
commit 5a4f7f6d5b
3 changed files with 9 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{ {
"name": "svgedit", "name": "svgedit",
"version": "7.0.0-beta.4", "version": "7.0.0-beta.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"version": "7.0.0-beta.4", "version": "7.0.0-beta.5",
"license": "(MIT AND Apache-2.0 AND ISC AND LGPL-3.0-or-later AND X11)", "license": "(MIT AND Apache-2.0 AND ISC AND LGPL-3.0-or-later AND X11)",
"dependencies": { "dependencies": {
"@babel/polyfill": "7.12.1", "@babel/polyfill": "7.12.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "svgedit", "name": "svgedit",
"version": "7.0.0-beta.4", "version": "7.0.0-beta.5",
"description": "Powerful SVG-Editor for your browser ", "description": "Powerful SVG-Editor for your browser ",
"main": "dist/Editor.js", "main": "dist/Editor.js",
"module": "dist/Editor.js", "module": "dist/Editor.js",

View File

@ -50,10 +50,15 @@
<title>SVG-edit</title> <title>SVG-edit</title>
</head> </head>
<body> <body style="margin:0">
<!-- svgedit container can be positionned anywhere in the DOM
but it must have a width and a height -->
<!--
<h1>SVGEdit</h1> <h1>SVGEdit</h1>
<div id="container" style="width:100%;height:550px"></div> <div id="container" style="width:100%;height:550px"></div>
<h1>End</h1> <h1>End</h1>
-->
<div id="container" style="width:100%;height:100vh"></div>
</body> </body>
</html> </html>