@scaleflex/widget-core 4.8.1 → 4.8.2
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/README.md +3 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.2](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.8.1...v4.8.2) (2026-01-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @scaleflex/widget-core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [4.8.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.8.0...v4.8.1) (2025-12-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @scaleflex/widget-core
|
package/README.md
CHANGED
|
@@ -185,15 +185,15 @@ The SMAW supports multiple **modes** to fit different use cases:
|
|
|
185
185
|
|
|
186
186
|
- **Uploader**: *File upload interface (default mode).* Enables your users to upload files to your DAM. The widget shows an upload panel (with drag & drop zone) and optionally allows selecting sources (local files or connected cloud sources).
|
|
187
187
|
Use case: a web app where users upload media (images/videos) or documents (UGC) into a central library.
|
|
188
|
-
[Demo](https://scaleflex.cloudimg.io/v7/plugins/widget/v4/demo/index.html?func=proxy#uploader-section)
|
|
188
|
+
[Demo & Example code](https://scaleflex.cloudimg.io/v7/plugins/widget/v4/demo/index.html?func=proxy#uploader-section)
|
|
189
189
|
|
|
190
190
|
- **Asset Picker**: *Media selector dialog.* Enables your users to browse existing assets in the DAM (without the ability to modify or delete them) and select one or more assets for use in the application the widget is integrated into.
|
|
191
191
|
Use case: content editors or e-commerce managers working in a CMD search for product assets in the DAM and insert them into an editorial page or product details page.
|
|
192
|
-
[Demo](https://scaleflex.cloudimg.io/v7/plugins/widget/v4/demo/index.html?func=proxy#assets-picker-section)
|
|
192
|
+
[Demo & Example code](https://scaleflex.cloudimg.io/v7/plugins/widget/v4/demo/index.html?func=proxy#assets-picker-section)
|
|
193
193
|
|
|
194
194
|
- **Asset Manager (aka Light DAM)**: *Embedded light DAM library.* Enables a lightweight DAM experience inside your application – users can navigate folders and files, upload new files, add tags, edit metadata and move/rename/delete assets.
|
|
195
195
|
Use case: users of your application need DAM-like functionality to upload and tag assets, set their metadata and view advanced information before using assets.
|
|
196
|
-
[Example code](
|
|
196
|
+
[Example code](#asset-manager-mode-light-dam)
|
|
197
197
|
|
|
198
198
|
## Core package and plugins
|
|
199
199
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleflex/widget-core",
|
|
3
3
|
"description": "Core module for the extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, Box, One Drive, S3 and more.",
|
|
4
|
-
"version": "4.8.
|
|
4
|
+
"version": "4.8.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"style": "dist/style.min.css",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@reduxjs/toolkit": "^1.9.5",
|
|
19
19
|
"@scaleflex/icons": "^3.0.0-beta.11",
|
|
20
20
|
"@scaleflex/ui": "^3.0.0-beta.11",
|
|
21
|
-
"@scaleflex/widget-utils": "^4.8.
|
|
21
|
+
"@scaleflex/widget-utils": "^4.8.2",
|
|
22
22
|
"@transloadit/prettier-bytes": "0.1.0",
|
|
23
23
|
"cuid": "^3.0.0",
|
|
24
24
|
"lodash.throttle": "^4.1.1",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"react": ">=19.0.0",
|
|
35
35
|
"react-dom": ">=19.0.0"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "9fbca6b6aa609c15bf2b4fb0f88a15e183e5739f"
|
|
38
38
|
}
|