@scaleflex/widget-pixaforge 0.3.0 → 4.0.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 +34 -2
- package/README.md +1 -1
- package/lib/api.service.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,14 +3,46 @@
|
|
|
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
|
-
|
|
6
|
+
## [4.0.2](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.0.0...v4.0.2) (2025-08-26)
|
|
7
7
|
|
|
8
|
-
**Note:** Version bump only for package @scaleflex/widget-pixaforge
|
|
9
8
|
|
|
9
|
+
### Bug Fixes
|
|
10
10
|
|
|
11
|
+
* update output filename for Scaleflex widget CSS and adjust CDN links for consistency across various components ([244813e](https://code.scaleflex.cloud/scaleflex/widget/commits/244813e3100c606995ec8988484cf7697398f062))
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [4.0.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.0.0...v4.0.1) (2025-08-26)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* update output filename for Scaleflex widget CSS and adjust CDN links for consistency across various components ([244813e](https://code.scaleflex.cloud/scaleflex/widget/commits/244813e3100c606995ec8988484cf7697398f062))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# [4.0.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.3.0...v4.0.0) (2025-08-26)
|
|
30
|
+
|
|
31
|
+
**Note:** Version bump only for package @scaleflex/widget-pixaforge
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# [0.3.0](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.2.1...v0.3.0) (2025-08-12)
|
|
39
|
+
|
|
40
|
+
**Note:** Version bump only for package @scaleflex/widget-pixaforge
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
14
46
|
|
|
15
47
|
## [0.2.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v0.2.0...v0.2.1) (2025-08-06)
|
|
16
48
|
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
<div align='center'>
|
|
12
|
-
<img title="Scaleflex Widget logo" alt="Scaleflex Widget logo" src="https://
|
|
12
|
+
<img title="Scaleflex Widget logo" alt="Scaleflex Widget logo" src="https://assets.scaleflex.com/Corporate+Branding/%5B2025%5D+ALL+LOGOS+%2B+ICONS/SCALEFLEX/VXP+logo/Horizontal+White/VXP+logo+WHITE.png?vh=663932" width="140"/>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
Import free images & icons from Pixaforge in [Scaleflex Media Asset Widget](https://www.npmjs.com/package/@scaleflex/widget-core) that has free gallery for both.
|
package/lib/api.service.js
CHANGED
|
@@ -14,7 +14,7 @@ import { DEFAULT_ICONS_COLOR } from './constants';
|
|
|
14
14
|
var baseUrl = 'https://www.openpix.net/v3/';
|
|
15
15
|
var CDN_HOST_DOMAIN = '.cloudimg.io';
|
|
16
16
|
var CDN_URL = "https://scaleflex".concat(CDN_HOST_DOMAIN, "/v7/");
|
|
17
|
-
var categoriesImgsUrl = 'https://cdn.scaleflex.com/plugins/
|
|
17
|
+
var categoriesImgsUrl = 'https://cdn.scaleflex.com/plugins/widget/assets/categories.json?vh=ac2e9b&func=proxy';
|
|
18
18
|
|
|
19
19
|
// We didn't split them into thunks and reuse the apiClient from the redux store's middleware as it is not that bulky code.
|
|
20
20
|
var _send = function _send(endpoint) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleflex/widget-pixaforge",
|
|
3
3
|
"description": "Import free images & icons from Pixaforge that has free gallery for both.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "4.0.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "types/index.d.ts",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@scaleflex/icons": "^3.0.0-beta.11",
|
|
13
13
|
"@scaleflex/ui": "^3.0.0-beta.11",
|
|
14
|
-
"@scaleflex/widget-common": "^0.
|
|
15
|
-
"@scaleflex/widget-companion-client": "^0.
|
|
16
|
-
"@scaleflex/widget-icons": "^0.
|
|
17
|
-
"@scaleflex/widget-utils": "^0.
|
|
14
|
+
"@scaleflex/widget-common": "^4.0.2",
|
|
15
|
+
"@scaleflex/widget-companion-client": "^4.0.2",
|
|
16
|
+
"@scaleflex/widget-icons": "^4.0.2",
|
|
17
|
+
"@scaleflex/widget-utils": "^4.0.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"react": "^19.0.0",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"/lib",
|
|
32
32
|
"/types"
|
|
33
33
|
],
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "244f78ed198cf8709905eef721cf02d185f15051"
|
|
35
35
|
}
|