js-draw 0.11.0 → 0.11.2
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 +8 -0
- package/dist/bundle.js +1 -1
- package/dist/src/Editor.d.ts +9 -2
- package/dist/src/Editor.js +24 -14
- package/dist/src/EditorImage.js +1 -1
- package/dist/src/tools/Eraser.d.ts +1 -1
- package/dist/src/tools/Eraser.js +18 -18
- package/dist/src/tools/SelectionTool/Selection.d.ts +2 -3
- package/dist/src/tools/SelectionTool/Selection.js +63 -26
- package/dist/src/tools/SelectionTool/SelectionTool.js +9 -0
- package/package.json +1 -1
- package/src/Editor.ts +28 -15
- package/src/EditorImage.ts +1 -1
- package/src/tools/Eraser.ts +21 -15
- package/src/tools/SelectionTool/Selection.ts +62 -22
- package/src/tools/SelectionTool/SelectionTool.ts +12 -0
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
# 0.11.2
|
2
|
+
* Fix eraser regression: Erasing multiple strokes, one after another, caused strokes to un-erase.
|
3
|
+
|
4
|
+
# 0.11.1
|
5
|
+
* Performance: Faster eraser and selection tools.
|
6
|
+
* Bug fixes
|
7
|
+
* Selection tool: Don't allow components to be in the selection multiple times.
|
8
|
+
|
1
9
|
# 0.11.0
|
2
10
|
* Added a dialog for inserting images and changing existing image alt text.
|
3
11
|
* Inertial scrolling: Workaround issue on some devices on touch gesture cancel.
|