@scaleflex/widget-image-editor 4.7.0 → 4.8.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 +19 -0
- package/lib/ImageEditor.js +1 -1
- package/lib/defaultLocale.js +2 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.8.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.8.0...v4.8.1) (2025-12-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @scaleflex/widget-image-editor
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [4.8.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.7.0...v4.8.0) (2025-12-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* add video duplication label to image editor locale ([a92b919](https://code.scaleflex.cloud/scaleflex/widget/commits/a92b9191109fd57619b45fbdaa3057b6d4d7debb))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [4.7.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.6.1...v4.7.0) (2025-12-09)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @scaleflex/widget-image-editor
|
package/lib/ImageEditor.js
CHANGED
|
@@ -383,7 +383,7 @@ var ImageEditor = function ImageEditor(_ref) {
|
|
|
383
383
|
startSaving(handleSavingVideoAfterUpload);
|
|
384
384
|
}
|
|
385
385
|
}), _objectSpread({
|
|
386
|
-
label: i18n('
|
|
386
|
+
label: i18n('imageEditorDuplicateTheVideoLabel'),
|
|
387
387
|
icon: Duplicate,
|
|
388
388
|
onClick: function onClick(triggerSaveModal) {
|
|
389
389
|
triggerSaveModal(function (mediaFile, designState) {
|
package/lib/defaultLocale.js
CHANGED
|
@@ -9,5 +9,6 @@ export default {
|
|
|
9
9
|
imageEditorDuplicateTheImageLabel: 'Duplicate the image',
|
|
10
10
|
imageEditorInvalidImageUrl: 'Wrong image URL provided (not found or not valid).',
|
|
11
11
|
imageEditorImgPreparationForEditInfo: 'Please wait, Image is being prepared for editing...',
|
|
12
|
-
imageEditorImgNewVersionStartedUploading: 'New version started uploading'
|
|
12
|
+
imageEditorImgNewVersionStartedUploading: 'New version started uploading',
|
|
13
|
+
imageEditorDuplicateTheVideoLabel: 'Duplicate the video'
|
|
13
14
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleflex/widget-image-editor",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.1",
|
|
4
4
|
"description": "FilerobotImageEditor integration with Scaleflex",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@scaleflex/icons": "^3.0.0-beta.11",
|
|
17
17
|
"@scaleflex/ui": "^3.0.0-beta.11",
|
|
18
|
-
"@scaleflex/widget-common": "^4.
|
|
19
|
-
"@scaleflex/widget-icons": "^4.
|
|
20
|
-
"@scaleflex/widget-utils": "^4.
|
|
18
|
+
"@scaleflex/widget-common": "^4.8.1",
|
|
19
|
+
"@scaleflex/widget-icons": "^4.8.1",
|
|
20
|
+
"@scaleflex/widget-utils": "^4.8.1",
|
|
21
21
|
"react-filerobot-image-editor": "5.0.0-beta.93",
|
|
22
22
|
"react-filerobot-video-editor": "1.1.3"
|
|
23
23
|
},
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"react-konva": ">=19.0.3",
|
|
36
36
|
"react-redux": "^8.1.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "7794244f4a0a6fb15defbe8cab1aa37b3d5b9c1e"
|
|
39
39
|
}
|