@imgly/plugin-ai-video-generation-web 0.2.5 → 0.2.6
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 +10 -0
- package/README.md +20 -0
- package/dist/fal-ai/index.mjs +5 -5
- package/dist/fal-ai/index.mjs.map +4 -4
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.2.6] - 2025-09-09
|
|
6
|
+
|
|
7
|
+
### New Features
|
|
8
|
+
|
|
9
|
+
- [all] **Feature API Integration**: Added comprehensive Feature API support across all AI plugins to control visibility and availability of features through feature flags. Core features include `providerSelect`, `quickAction`, `quickAction.providerSelect`, `fromText`, and `fromImage` flags.
|
|
10
|
+
- [all] **Quick Action Feature Flags**: Each quick action now automatically registers and respects its own feature flag (e.g., `ly.img.plugin-ai-image-generation-web.quickAction.editImage`), allowing fine-grained control over which quick actions are available to users.
|
|
11
|
+
- [image-generation] **Provider Style Group Control**: Added Feature API support for Recraft providers to control style group visibility. RecraftV3 supports `style.image` and `style.vector` flags, while Recraft20b adds `style.icon` flag for controlling icon style availability.
|
|
12
|
+
- [all] **Provider Selection Feature Flags**: Added support for controlling provider selection UI in both panels (`providerSelect`) and quick actions (`quickAction.providerSelect`), with proper handling when multiple providers are configured.
|
|
13
|
+
|
|
5
14
|
## [0.2.5] - 2025-09-03
|
|
6
15
|
|
|
7
16
|
### New Features
|
|
8
17
|
|
|
9
18
|
- [image-generation] **NanoBanana Provider**: Added NanoBanana text-to-image provider via fal.ai with fast generation times, 1024×1024 resolution, support for multiple output formats (JPEG, PNG), configurable number of images (1-4), and remixPageWithPrompt quick action
|
|
10
19
|
- [image-generation] **NanoBananaEdit Provider**: Added NanoBananaEdit image-to-image provider via fal.ai for editing existing images with text prompts, supporting all standard quick actions (editImage, swapBackground, styleTransfer, artistTransfer, createVariant, combineImages with up to 10 images, remixPage, remixPageWithPrompt)
|
|
20
|
+
- [all] **AI Style Asset Library Translations**: AI style presets in asset libraries now automatically use localized names and descriptions from provider translation files, eliminating the need for manual translation configuration
|
|
11
21
|
|
|
12
22
|
### Bug Fixes
|
|
13
23
|
|
package/README.md
CHANGED
|
@@ -258,6 +258,26 @@ Key features:
|
|
|
258
258
|
- Fixed duration of 8 seconds
|
|
259
259
|
- Optional audio generation via `generate_audio`
|
|
260
260
|
|
|
261
|
+
### Feature Control
|
|
262
|
+
|
|
263
|
+
You can control various aspects of the video generation plugin using the Feature API:
|
|
264
|
+
|
|
265
|
+
```typescript
|
|
266
|
+
// Disable text-to-video generation
|
|
267
|
+
cesdk.feature.enable('ly.img.plugin-ai-video-generation-web.fromText', false);
|
|
268
|
+
|
|
269
|
+
// Disable image-to-video generation
|
|
270
|
+
cesdk.feature.enable('ly.img.plugin-ai-video-generation-web.fromImage', false);
|
|
271
|
+
|
|
272
|
+
// Disable provider selection
|
|
273
|
+
cesdk.feature.enable('ly.img.plugin-ai-video-generation-web.providerSelect', false);
|
|
274
|
+
|
|
275
|
+
// Disable specific quick actions
|
|
276
|
+
cesdk.feature.enable('ly.img.plugin-ai-video-generation-web.quickAction.createVideo', false);
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
For more information about Feature API and available feature flags, see the [@imgly/plugin-ai-generation-web documentation](https://github.com/imgly/plugins/tree/main/packages/plugin-ai-generation-web#available-feature-flags).
|
|
280
|
+
|
|
261
281
|
### Customizing Labels and Translations
|
|
262
282
|
|
|
263
283
|
You can customize all labels and text in the AI video generation interface using the translation system. This allows you to provide better labels for your users in any language.
|