7.3.7
This commit is contained in:
15
CHANGES.md
15
CHANGES.md
@@ -1,5 +1,20 @@
|
||||
# SVG-Edit CHANGES
|
||||
|
||||
## 7.3.7
|
||||
- Fixed issue where foreignObject styles were removed during object moves (#1053)
|
||||
- Fixed svgToString converting HTML elements to uppercase (#1051)
|
||||
- Updated README to correct config() and init() order (#1049) for proper initialization sequence.
|
||||
- Fixed rendering issue with SVG filters (#1042)
|
||||
- Added custom SVG cursors (commit)
|
||||
- update dependencies
|
||||
|
||||
## 7.3.6
|
||||
- #1040: Fixed bug in Editor.loadFromURL where the promise was not resolving
|
||||
- #1038: Fixed bug in ext-opensave.js when dropping text
|
||||
- #1035: Consider pathedit mode when zooming
|
||||
- #1033: Fix gradient
|
||||
- update dependencies
|
||||
|
||||
## 7.3.5
|
||||
- update dependencies
|
||||
- minor fixes
|
||||
|
||||
1300
package-lock.json
generated
1300
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
26
package.json
26
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "svgedit",
|
||||
"version": "7.3.6",
|
||||
"version": "7.3.7",
|
||||
"description": "Powerful SVG-Editor for your browser ",
|
||||
"main": "dist/editor/Editor.js",
|
||||
"module": "dist/editor/Editor.js",
|
||||
@@ -86,10 +86,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@svgedit/svgcanvas": "7.2.4",
|
||||
"browser-fs-access": "0.35.0",
|
||||
"core-js": "3.41.0",
|
||||
"browser-fs-access": "0.37.0",
|
||||
"core-js": "3.42.0",
|
||||
"elix": "15.0.1",
|
||||
"i18next": "24.2.3",
|
||||
"i18next": "25.1.2",
|
||||
"jspdf": "3.0.1",
|
||||
"pathseg": "1.2.1",
|
||||
"regenerator-runtime": "0.14.1",
|
||||
@@ -97,11 +97,11 @@
|
||||
"svg2pdf.js": "2.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.26.10",
|
||||
"@babel/preset-env": "7.26.9",
|
||||
"@babel/register": "7.25.9",
|
||||
"@babel/runtime-corejs3": "7.27.0",
|
||||
"@cypress/code-coverage": "3.14.0",
|
||||
"@babel/core": "7.27.1",
|
||||
"@babel/preset-env": "7.27.2",
|
||||
"@babel/register": "7.27.1",
|
||||
"@babel/runtime-corejs3": "7.27.1",
|
||||
"@cypress/code-coverage": "3.14.1",
|
||||
"@rollup/plugin-babel": "6.0.4",
|
||||
"@rollup/plugin-commonjs": "28.0.3",
|
||||
"@rollup/plugin-dynamic-import-vars": "2.1.5",
|
||||
@@ -113,9 +113,9 @@
|
||||
"@web/dev-server-rollup": "0.6.4",
|
||||
"babel-plugin-istanbul": "7.0.0",
|
||||
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
|
||||
"core-js-bundle": "3.41.0",
|
||||
"core-js-bundle": "3.42.0",
|
||||
"cp-cli": "2.0.0",
|
||||
"cypress": "14.2.1",
|
||||
"cypress": "14.3.3",
|
||||
"cypress-multi-reporters": "2.0.5",
|
||||
"jamilih": "0.60.0",
|
||||
"jsdoc": "4.0.4",
|
||||
@@ -129,7 +129,7 @@
|
||||
"remark-cli": "12.0.1",
|
||||
"remark-lint-ordered-list-marker-value": "4.0.1",
|
||||
"rimraf": "6.0.1",
|
||||
"rollup": "4.38.0",
|
||||
"rollup": "4.40.2",
|
||||
"rollup-plugin-copy": "3.5.0",
|
||||
"rollup-plugin-filesize": "10.0.0",
|
||||
"rollup-plugin-html": "0.2.1",
|
||||
@@ -139,6 +139,6 @@
|
||||
"start-server-and-test": "2.0.11"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@rollup/rollup-linux-x64-gnu": "4.38.0"
|
||||
"@rollup/rollup-linux-x64-gnu": "4.40.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@svgedit/react-test",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"description": "",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
@@ -31,10 +31,10 @@
|
||||
"author": "OptimistikSAS",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0"
|
||||
"react": "^19.1.0",
|
||||
"react-dom": "^19.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/preset-react": "^7.26.3"
|
||||
"@babel/preset-react": "^7.27.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
# svgcanvas CHANGES
|
||||
|
||||
## 7.2.5
|
||||
- update dependencies
|
||||
|
||||
## 7.2.4
|
||||
- bug fixes
|
||||
- update dependencies
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@svgedit/svgcanvas",
|
||||
"version": "7.2.5",
|
||||
"version": "7.2.6",
|
||||
"description": "SVG Canvas",
|
||||
"main": "dist/svgcanvas.js",
|
||||
"author": "Narendra Sisodiya",
|
||||
|
||||
Reference in New Issue
Block a user