@pqina/pintura 8.93.2 → 8.94.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 +8 -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 +6 -1
- package/pintura.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.94.1 | 2025-09-25
|
|
4
|
+
|
|
5
|
+
- Fix issue where `imageStateToCanvas` would not correctly calculate canvas scalar when using `'force'` for `targetSize.fit`
|
|
6
|
+
|
|
7
|
+
## 8.94.0 | 2025-09-25
|
|
8
|
+
|
|
9
|
+
- Reverted previous changes to `enableBrowseImage` and introduced `accept` property to control which media types are accepted by user input via browse, drop, or paste. The value of the property is set to the accept attribute of the Pintura internal file input for selecting system files. The default value is `image/*`, set to `video/*` to only accept videos, set to `image/*, video/*` to accept both images and videos.
|
|
10
|
+
|
|
3
11
|
## 8.93.2 | 2025-09-25
|
|
4
12
|
|
|
5
13
|
- Fix issue where some video files wouldn't load correctly when accept attribute was set to `video/*`.
|
package/package.json
CHANGED