@pqina/pintura 8.81.0 → 8.82.0
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 +10 -0
- package/package.json +1 -1
- package/pintura-iife.js +2 -2
- package/pintura-umd.js +2 -2
- package/pintura.css +2 -2
- package/pintura.d.ts +1 -1
- package/pintura.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.82.0 | 2024-05-30
|
|
4
|
+
|
|
5
|
+
- Add option to easier override default markup shape styles using `createMarkupEditorShapeStyleControls`
|
|
6
|
+
- Add `pan` property, set to target position `{ x:100, y:100 }` to pan view towards that position.
|
|
7
|
+
|
|
8
|
+
## 8.81.1 | 2024-05-23
|
|
9
|
+
|
|
10
|
+
- Fix issue with XMLHttpRequest being replaced with a custom object on some third-party platforms.
|
|
11
|
+
- Fix issue with vignette color adjustment not rendering correctly in editor.
|
|
12
|
+
|
|
3
13
|
## 8.81.0 | 2024-05-15
|
|
4
14
|
|
|
5
15
|
- Add basic multi-select interaction. Enable by setting `enableMultiSelect` to `true`. Hold shift to select multiple shapes. Shapes can be styled and translated as a group. If a style is disabled on one of the selected shape that style won't be shown in the style panel. When a shape that can't be moved is part of a group the group as a whole cannot be moved.
|
package/package.json
CHANGED