@scaleflex/widget-pixaforge 4.8.6 → 4.8.7

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.
Files changed (31) hide show
  1. package/dist/style.css +317 -0
  2. package/dist/style.min.css +1 -0
  3. package/lib/api.service.js +93 -0
  4. package/lib/common.slice.js +77 -0
  5. package/lib/components/CategoriesCards/CategoryCard.js +33 -0
  6. package/lib/components/CategoriesCards/index.js +48 -0
  7. package/lib/components/CategoriesCards/index.scss +27 -0
  8. package/lib/components/CustomizeIcons/ColorCustomization.js +159 -0
  9. package/lib/components/CustomizeIcons/index.js +105 -0
  10. package/lib/components/CustomizeIcons/index.scss +33 -0
  11. package/lib/components/GalleryViewsOptionsMenu.js +97 -0
  12. package/lib/components/IconsGallery/SingleIcon.js +49 -0
  13. package/lib/components/IconsGallery/index.js +153 -0
  14. package/lib/components/IconsGallery/index.scss +53 -0
  15. package/lib/components/ImagesGallery/ImageCell.js +59 -0
  16. package/lib/components/ImagesGallery/LandscapesContainer.js +28 -0
  17. package/lib/components/ImagesGallery/PortraitsColumns.js +72 -0
  18. package/lib/components/ImagesGallery/index.js +183 -0
  19. package/lib/components/ImagesGallery/index.scss +120 -0
  20. package/lib/components/MainView.js +102 -0
  21. package/lib/components/TagsAndFoundLabel/TagItem.js +23 -0
  22. package/lib/components/TagsAndFoundLabel/index.js +72 -0
  23. package/lib/components/TagsAndFoundLabel/index.scss +25 -0
  24. package/lib/components/TopBar.js +113 -0
  25. package/lib/components/index.scss +48 -0
  26. package/lib/constants.js +19 -0
  27. package/lib/defaultLocale.js +22 -0
  28. package/lib/index.js +327 -0
  29. package/lib/style.scss +8 -0
  30. package/package.json +35 -35
  31. package/CHANGELOG.md +0 -7757
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
- {
2
- "name": "@scaleflex/widget-pixaforge",
3
- "description": "Import free images & icons from Pixaforge that has free gallery for both.",
4
- "version": "4.8.6",
5
- "license": "MIT",
6
- "main": "lib/index.js",
7
- "types": "types/index.d.ts",
8
- "publishConfig": {
9
- "access": "public"
10
- },
11
- "dependencies": {
12
- "@scaleflex/icons": "^3.0.0-beta.11",
13
- "@scaleflex/ui": "^3.0.0-beta.11",
14
- "@scaleflex/widget-common": "^4.8.6",
15
- "@scaleflex/widget-companion-client": "^4.8.6",
16
- "@scaleflex/widget-icons": "^4.8.6",
17
- "@scaleflex/widget-utils": "^4.8.6"
18
- },
19
- "devDependencies": {
20
- "react": "^19.0.0",
21
- "react-dom": "^19.0.0"
22
- },
23
- "peerDependencies": {
24
- "@scaleflex/widget-core": "^0.0.3",
25
- "@scaleflex/widget-explorer": "^0.0.3",
26
- "react": ">=19.0.0",
27
- "react-dom": ">=19.0.0"
28
- },
29
- "files": [
30
- "/dist",
31
- "/lib",
32
- "/types"
33
- ],
34
- "gitHead": "cbb232cc92583c3888556df91ff90b4654e64790"
35
- }
1
+ {
2
+ "name": "@scaleflex/widget-pixaforge",
3
+ "description": "Import free images & icons from Pixaforge that has free gallery for both.",
4
+ "version": "4.8.7",
5
+ "license": "MIT",
6
+ "main": "lib/index.js",
7
+ "types": "types/index.d.ts",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "dependencies": {
12
+ "@scaleflex/icons": "^3.0.0-beta.11",
13
+ "@scaleflex/ui": "^3.0.0-beta.11",
14
+ "@scaleflex/widget-common": "^4.8.7",
15
+ "@scaleflex/widget-companion-client": "^4.8.7",
16
+ "@scaleflex/widget-icons": "^4.8.7",
17
+ "@scaleflex/widget-utils": "^4.8.7"
18
+ },
19
+ "devDependencies": {
20
+ "react": "^19.0.0",
21
+ "react-dom": "^19.0.0"
22
+ },
23
+ "peerDependencies": {
24
+ "@scaleflex/widget-core": "^0.0.3",
25
+ "@scaleflex/widget-explorer": "^0.0.3",
26
+ "react": ">=19.0.0",
27
+ "react-dom": ">=19.0.0"
28
+ },
29
+ "files": [
30
+ "/dist",
31
+ "/lib",
32
+ "/types"
33
+ ],
34
+ "gitHead": "712930995f6dfd4a0d874c0638dde61065fd0683"
35
+ }