@imgly/plugin-ai-sticker-generation-web 0.2.6 → 0.2.8

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 CHANGED
@@ -2,6 +2,35 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.2.8] - 2025-09-29
6
+
7
+ ### New Features
8
+
9
+ - [image-generation] **SeedreamV4 Provider**: Added ByteDance Seedream 4.0 text-to-image provider via fal.ai for high-quality image generation with multiple size presets (square HD 2048×2048, square 1024×1024, portrait/landscape variants), custom dimensions support (1024-4096 pixels), and safety checker enabled by default
10
+ - [image-generation] **SeedreamV4Edit Provider**: Added ByteDance Seedream 4.0 image-to-image provider via fal.ai for advanced image editing with unified generation/editing architecture, support for multiple input images (up to 10), and full canvas quick actions support (editImage, swapBackground, styleTransfer, artistTransfer, createVariant, combineImages, remixPage, remixPageWithPrompt)
11
+
12
+ ### Fixed
13
+
14
+ - [sticker-generation] **Fixed Input Types Not Enabled**: Fixed an issue where the sticker generation panel would show "No input types are enabled" error by properly enabling the `fromText` and `fromImage` feature flags during plugin initialization
15
+
16
+ ## [0.2.7] - 2025-09-26
17
+
18
+ ### New Features
19
+
20
+ - [image-generation] **QwenImageEdit Provider**: Added Qwen image editing provider via fal.ai for advanced image-to-image transformation with text prompts, supporting all standard quick actions
21
+ - [video-generation] **MinimaxHailuo02StandardImageToVideo Provider**: Added Minimax Hailuo-02 Standard image-to-video provider via fal.ai for transforming still images into videos with selectable resolutions (512P: 912×512, 768P: 1280×720) and adjustable durations (6 or 10 seconds)
22
+ - [video-generation] **ByteDance Seedance v1 Pro Providers**: Added ByteDance Seedance v1 Pro text-to-video and image-to-video providers via fal.ai with:
23
+ - Text-to-video generation from text descriptions with customizable aspect ratios
24
+ - Image-to-video transformation with dynamic motion generation from still images
25
+ - Multiple aspect ratio options (21:9, 16:9, 4:3, 1:1, 3:4, 9:16, or auto from image for i2v)
26
+ - Adjustable duration (3-12 seconds, default 5)
27
+ - Resolution options (480p, 720p, 1080p)
28
+ - Proper aspect ratio handling in placeholder blocks based on user selection
29
+
30
+ - [all] **Property Configuration System**: Providers can now define default values for their properties. Defaults can be static values or dynamic based on context (language, design state, etc.)
31
+
32
+ - [image-generation] **Recraft Provider Defaults**: Recraft providers (V3 and 20b) now support configurable default values for all properties, including dynamic style defaults based on the selected style type
33
+
5
34
  ## [0.2.6] - 2025-09-09
6
35
 
7
36
  ### New Features
package/README.md CHANGED
@@ -47,6 +47,12 @@ CreativeEditorSDK.create(domElement, {
47
47
  headers: {
48
48
  'x-custom-header': 'value',
49
49
  'x-client-version': '1.0.0'
50
+ },
51
+ // Optional: Configure default property values
52
+ properties: {
53
+ style: { default: 'broken_line' }, // Default icon style for stickers
54
+ image_size: { default: 'square' }, // Default size
55
+ n_colors: { default: 2 } // Default color count
50
56
  }
51
57
  }),
52
58