@pqina/pintura 8.74.4 → 8.76.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 +15 -0
- package/locale/ja_JP/core/ja_JP.js +1 -1
- 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 +3 -1
- package/pintura.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.76.0 | 2024-03-13
|
|
4
|
+
|
|
5
|
+
- Add tap polygon edge to add point.
|
|
6
|
+
- Add tap polygon point to select point.
|
|
7
|
+
- Add remove polygon point control menu.
|
|
8
|
+
- Add `selectedPoint` to shape, set to index of point to select a point.
|
|
9
|
+
- Add `disableAddPoints` to shape, set to `true` to prevent adding points to and removing points from a polygon shape.
|
|
10
|
+
- Fix issue where holding shift when drawing an ellipse or square would only draw in bottom right direction.
|
|
11
|
+
- Fix `animations` property type in TypeScript declarations.
|
|
12
|
+
- Fix issue where holding shift while nudging points with keyboard would snap point.
|
|
13
|
+
|
|
14
|
+
## 8.75.0 | 2024-03-11
|
|
15
|
+
|
|
16
|
+
- Add `Select` component for easier dropdown creation in `willRender` hooks.
|
|
17
|
+
|
|
3
18
|
## 8.74.4 | 2024-03-11
|
|
4
19
|
|
|
5
20
|
- Fix issue with video extension interacting with Pintura API.
|
|
@@ -187,7 +187,7 @@ export const MarkupEditor = {
|
|
|
187
187
|
|
|
188
188
|
shapeLabelToolMove: '移動',
|
|
189
189
|
shapeLabelToolView: '表示',
|
|
190
|
-
shapeLabelToolSharpie: '
|
|
190
|
+
shapeLabelToolSharpie: 'ペン',
|
|
191
191
|
shapeLabelToolEraser: '消しゴム',
|
|
192
192
|
shapeLabelToolPath: 'パス',
|
|
193
193
|
shapeLabelToolRectangle: '長方形',
|
package/package.json
CHANGED