js-draw 0.16.0 → 0.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +1 -1
- package/dist/src/SVGLoader.js +6 -0
- package/dist/src/toolbar/HTMLToolbar.d.ts +1 -0
- package/dist/src/toolbar/HTMLToolbar.js +4 -1
- package/dist/src/tools/SelectionTool/SelectionTool.js +1 -1
- package/package.json +1 -1
- package/src/Editor.css +4 -0
- package/src/SVGLoader.test.ts +57 -0
- package/src/SVGLoader.ts +7 -0
- package/src/toolbar/HTMLToolbar.ts +6 -1
- package/src/tools/SelectionTool/SelectionTool.ts +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
# 0.16.1
|
2
|
+
* Bug fixes
|
3
|
+
- Fix editor not shrinking vertically in Chromium-based browsers with its container.
|
4
|
+
- Fixes an issue where (on some devices), `tspan`s could grow in font-size when loading from an SVG.
|
5
|
+
- Fix spacers not added in the correct locations in the toolbar.
|
6
|
+
|
1
7
|
# 0.16.0
|
2
8
|
* Configurable background color.
|
3
9
|
* Toolbar buttons are moved to an overflow menu instead of creating a second (or third) line of buttons.
|