Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/pages/guides/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ contributors:

# Changelog

## [4.23.14] 2025-03-25

### Added

- [`BaseContainerConfig`](../../v4/shared/src/types/ContainerConfig.types/interfaces/BaseContainerConfig.md): Added two new properties to customize the Adobe Express loader experience:
- `showExpressIconWithText`: Show a white Adobe Express text below the icon.
- `showDarkerBackgroundForLoader`: Enable a darker background overlay.

### Bug Fixes

- [`EditImageDocConfig.EditImageIntent`](../../v4/shared/src/types/module/DocConfig.types/type-aliases/EditImageIntent.md): Removed unsupported intents (`add-text`, `add-icons-and-shapes`, `add-images` and `resize-image`) from the list of permitted intents for Edit Image Module.

## [4.22.9] 2025-03-12

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
| Enumeration Member | Value |
| ------ | ------ |
| `EDIT_IMAGE` | `"edit-image"` |
| `EDIT_IMAGE_V2` | `"edit-image-v2"` |
| `CREATE_IMAGE_FROM_TEXT` | `"create-image-from-text"` |
| `CREATE_TEMPLATE_FROM_TEXT` | `"create-template-from-text"` |
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,12 @@ PATH: string;
CLIENT_ID: string;
```

### CLIENTS.CCX.QUICK\_ACTION.WARMUP

```ts
WARMUP: string;
```

### CLIENTS.CCX.QUICK\_ACTION.QUERY\_PARAMS

```ts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@
| `hideCloseButton?` | `public` | `boolean` | Don't show close button for container and header bars |
| `zIndex?` | `public` | `number` | Set the z-index of of the root container |
| `showReaderView?` | `readonly` | `boolean` | Show Reader Loading View |
| `showExpressIconWithText?` | `readonly` | `boolean` | Show new express icon with text |
| `showDarkerBackgroundForLoader?` | `readonly` | `boolean` | Show darker background for loader |
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
| `hideCloseButton?` | `public` | `boolean` | Don't show close button for container and header bars | [`BaseContainerConfig`](BaseContainerConfig.md).`hideCloseButton` |
| `zIndex?` | `public` | `number` | Set the z-index of of the root container | [`BaseContainerConfig`](BaseContainerConfig.md).`zIndex` |
| `showReaderView?` | `readonly` | `boolean` | Show Reader Loading View | [`BaseContainerConfig`](BaseContainerConfig.md).`showReaderView` |
| `showExpressIconWithText?` | `readonly` | `boolean` | Show new express icon with text | [`BaseContainerConfig`](BaseContainerConfig.md).`showExpressIconWithText` |
| `showDarkerBackgroundForLoader?` | `readonly` | `boolean` | Show darker background for loader | [`BaseContainerConfig`](BaseContainerConfig.md).`showDarkerBackgroundForLoader` |
| `mode` | `public` | `FILL` | - | - |
| `parentElementId?` | `public` | `string` | Id of element to which iframe must be appended. By default it is appended to body. | - |
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
| `hideCloseButton?` | `public` | `boolean` | Don't show close button for container and header bars | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`hideCloseButton` |
| `zIndex?` | `public` | `number` | Set the z-index of of the root container | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`zIndex` |
| `showReaderView?` | `readonly` | `boolean` | Show Reader Loading View | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`showReaderView` |
| `showExpressIconWithText?` | `readonly` | `boolean` | Show new express icon with text | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`showExpressIconWithText` |
| `showDarkerBackgroundForLoader?` | `readonly` | `boolean` | Show darker background for loader | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`showDarkerBackgroundForLoader` |
| `size?` | `public` | [`PixelSize`](../../Asset.types/interfaces/PixelSize.md) | Maximum size boundary of the iframe. | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`size` |
| `minSize?` | `public` | [`PixelSize`](../../Asset.types/interfaces/PixelSize.md) | Minimum size boundary of the iframe. | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`minSize` |
| `padding?` | `public` | `number` | Padding applied to the iframe in pixels. | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`padding` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
| `hideCloseButton?` | `public` | `boolean` | Don't show close button for container and header bars | [`BaseContainerConfig`](BaseContainerConfig.md).`hideCloseButton` |
| `zIndex?` | `public` | `number` | Set the z-index of of the root container | [`BaseContainerConfig`](BaseContainerConfig.md).`zIndex` |
| `showReaderView?` | `readonly` | `boolean` | Show Reader Loading View | [`BaseContainerConfig`](BaseContainerConfig.md).`showReaderView` |
| `showExpressIconWithText?` | `readonly` | `boolean` | Show new express icon with text | [`BaseContainerConfig`](BaseContainerConfig.md).`showExpressIconWithText` |
| `showDarkerBackgroundForLoader?` | `readonly` | `boolean` | Show darker background for loader | [`BaseContainerConfig`](BaseContainerConfig.md).`showDarkerBackgroundForLoader` |
| `size?` | `public` | [`PixelSize`](../../Asset.types/interfaces/PixelSize.md) | Maximum size boundary of the iframe. | - |
| `minSize?` | `public` | [`PixelSize`](../../Asset.types/interfaces/PixelSize.md) | Minimum size boundary of the iframe. | - |
| `padding?` | `public` | `number` | Padding applied to the iframe in pixels. | - |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
| `hideCloseButton?` | `public` | `boolean` | Don't show close button for container and header bars | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`hideCloseButton` |
| `zIndex?` | `public` | `number` | Set the z-index of of the root container | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`zIndex` |
| `showReaderView?` | `readonly` | `boolean` | Show Reader Loading View | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`showReaderView` |
| `showExpressIconWithText?` | `readonly` | `boolean` | Show new express icon with text | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`showExpressIconWithText` |
| `showDarkerBackgroundForLoader?` | `readonly` | `boolean` | Show darker background for loader | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`showDarkerBackgroundForLoader` |
| `size?` | `public` | [`PixelSize`](../../Asset.types/interfaces/PixelSize.md) | Maximum size boundary of the iframe. | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`size` |
| `minSize?` | `public` | [`PixelSize`](../../Asset.types/interfaces/PixelSize.md) | Minimum size boundary of the iframe. | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`minSize` |
| `padding?` | `public` | `number` | Padding applied to the iframe in pixels. | [`InlineOrModalContainerConfig`](InlineOrModalContainerConfig.md).`padding` |
Expand Down
6 changes: 6 additions & 0 deletions src/pages/v4/shared/src/types/module/DocConfig.types/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@
| Interface | Description |
| ------ | ------ |
| [EditImageDocConfig](interfaces/EditImageDocConfig.md) | - |

### Type Aliases

| Type alias | Description |
| ------ | ------ |
| [EditImageIntent](type-aliases/EditImageIntent.md) | - |
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
| Property | Type | Description |
| ------ | ------ | ------ |
| `asset?` | [`Asset`](../../../Asset.types/type-aliases/Asset.md) | - |
| `intent?` | [`EditFurtherIntent`](../../../ExportConfig.types/enumerations/EditFurtherIntent.md) | intent that needs to be performed on the asset |
| `intent?` | [`EditImageIntent`](../type-aliases/EditImageIntent.md) | intent that needs to be performed on the asset |
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Type Alias: EditImageIntent

```ts
type EditImageIntent: Exclude<EditFurtherIntent, EditFurtherIntent.ADD_TEXT | EditFurtherIntent.ADD_ICONS_AND_SHAPES | EditFurtherIntent.ADD_IMAGES | EditFurtherIntent.RESIZE_IMAGE>;
```
6 changes: 6 additions & 0 deletions src/pages/v4/shared/src/types/module/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ Re-exports [WarmupDesignConfig](DesignConfig.types/interfaces/WarmupDesignConfig

***

### EditImageIntent

Re-exports [EditImageIntent](DocConfig.types/type-aliases/EditImageIntent.md)

***

### EditImageDocConfig

Re-exports [EditImageDocConfig](DocConfig.types/interfaces/EditImageDocConfig.md)