js-draw 0.15.0 → 0.15.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/.github/ISSUE_TEMPLATE/translation.yml +16 -0
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +1 -1
- package/dist/src/components/AbstractComponent.js +12 -6
- package/dist/src/tools/SelectionTool/SelectionTool.js +3 -1
- package/package.json +1 -1
- package/src/components/AbstractComponent.transformBy.test.ts +22 -0
- package/src/components/AbstractComponent.ts +10 -3
- package/src/toolbar/toolbar.css +7 -0
- package/src/tools/SelectionTool/SelectionTool.ts +2 -0
@@ -69,6 +69,14 @@ body:
|
|
69
69
|
placeholder: "Image"
|
70
70
|
validations:
|
71
71
|
required: false
|
72
|
+
- type: input
|
73
|
+
id: translation-reformatSelection
|
74
|
+
attributes:
|
75
|
+
label: "reformatSelection"
|
76
|
+
description: "Translate `Format selection`."
|
77
|
+
placeholder: "Format selection"
|
78
|
+
validations:
|
79
|
+
required: false
|
72
80
|
- type: input
|
73
81
|
id: translation-inputAltText
|
74
82
|
attributes:
|
@@ -717,6 +725,14 @@ body:
|
|
717
725
|
placeholder: "SVG Object"
|
718
726
|
validations:
|
719
727
|
required: false
|
728
|
+
- type: input
|
729
|
+
id: translation-restyledElements
|
730
|
+
attributes:
|
731
|
+
label: "restyledElements"
|
732
|
+
description: "Translate `Restyled elements`."
|
733
|
+
placeholder: "Restyled elements"
|
734
|
+
validations:
|
735
|
+
required: false
|
720
736
|
- type: input
|
721
737
|
id: translation-text
|
722
738
|
attributes:
|
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
# 0.15.1
|
2
|
+
* Bug fixes
|
3
|
+
* Correctly restore the z-index of components on undo.
|
4
|
+
* Fix selection collapsing to a point on two-finger pan gesture.
|
5
|
+
* Move buttons into view when they don't fit on the screen
|
6
|
+
|
1
7
|
# 0.15.0
|
2
8
|
* Adds a "reformat selection" button that allows changing the color of the selection.
|
3
9
|
* Bug fixes:
|