@pqina/pintura 8.72.1 → 8.72.3
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/locale/de_DE/retouch/index.js +1 -1
- package/locale/es_ES/retouch/index.js +1 -1
- package/locale/fr_FR/retouch/index.js +1 -1
- package/locale/hi_IN/retouch/index.js +1 -1
- package/locale/it_IT/retouch/index.js +1 -1
- package/locale/ja_JP/retouch/index.js +1 -1
- package/locale/nb_NO/retouch/index.js +1 -1
- package/locale/nl_NL/retouch/index.js +1 -1
- package/locale/pt_PT/retouch/index.js +1 -1
- package/locale/ru_RU/retouch/index.js +1 -1
- package/locale/sv_SE/retouch/index.js +1 -1
- package/locale/zh_CN/retouch/index.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.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.72.3 | 2024-02-07
|
|
4
|
+
|
|
5
|
+
- Fix issue where an error would be thrown when loading the markup editor.
|
|
6
|
+
|
|
7
|
+
## 8.72.2 | 2024-02-05
|
|
8
|
+
|
|
9
|
+
- Fix issue where Retouch plugin locale files were imported incorrectly.
|
|
10
|
+
|
|
3
11
|
## 8.72.1 | 2024-02-02
|
|
4
12
|
|
|
5
13
|
- Fix issue where line start and end styles wouldn't be rendered above frame.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './de_DE.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './es_ES.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './fr_FR.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './hi_IN.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './it_IT.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './ja_JP.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './nb_NO.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './nl_NL.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './pt_PT.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './ru_RU.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './sv_SE.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './
|
|
1
|
+
export { default } from './zh_CN.js';
|
package/package.json
CHANGED