Skip to content

Commit 8c281c0

Browse files
Merge pull request #162 from AdobeDocs/minor-fixes
Adds temporalContentDuration and inline alerts for experimental in changelog
2 parents 274443e + 19c78f3 commit 8c281c0

File tree

4 files changed

+32
-8
lines changed

4 files changed

+32
-8
lines changed

src/pages/guides/getting_started/changelog.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ contributors:
2828

2929
- New Text Replacement APIs: [`appendText()`](../../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#appendtext), [`deleteText()`](../../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#deleteText), [`insertText()`](../../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#insertText), and [`replaceText()`](../../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#replaceText).
3030

31-
<InlineAlert slots="text" variant="warning"/>
31+
<InlineAlert slots="text" variant="warning" className="inline-alert-bullet-aligned"/>
3232

3333
**IMPORTANT:** The Text Replacement APIs are currently **_experimental only_** and should not be used in any add-ons you will be distributing until they have been declared stable. To use these APIs, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../../references/manifest/index.md#requirements) section of the `manifest.json`.
3434

35+
- New [`mediaAddOnData`](../../references/document-sandbox/document-apis/classes/ImageRectangleNode.md#mediaAddOnData) to support additional metadata on the `ImageRectangleNode`.
3536
- New `link` property in Character Style ranges [`CharacterStylesInput`](../../references/document-sandbox/document-apis/interfaces/CharacterStylesInput.md#link) to support hyperlinks.
3637
- The [Use Text](../learn/how_to/use_text.md) guide has been updated to include the new Text APIs.
3738
- The [Use Images](../learn/how_to/use_images.md) guide has been updated to include a `replaceMedia()` example.
@@ -41,11 +42,11 @@ contributors:
4142

4243
- Renamed `clone()` to [`cloneInPlace()`](../../references/document-sandbox/document-apis/classes/Node.md#cloneInPlace).
4344

44-
<InlineAlert slots="text" variant="warning"/>
45+
<InlineAlert slots="text" variant="warning" className="inline-alert-bullet-aligned"/>
4546

4647
**IMPORTANT:** The [`cloneInPlace()`](../../references/document-sandbox/document-apis/classes/Node.md#cloneInPlace) method is currently **_experimental only_** and should not be used in any add-ons you will be distributing until it has been declared stable. To use this method, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../../references/manifest/index.md#requirements) section of the `manifest.json`.
4748

48-
- Updated [`maskShape`](../../references/document-sandbox/document-apis/classes/GridCellNode.md#maskShape) in `GridCellNode` to be readonly.
49+
- Updated [`maskShape`](../../references/document-sandbox/document-apis/classes/GridCellNode.md#maskShape) in `GridCellNode` to readonly.
4950
- The [`BitmapImage`](../../references/document-sandbox/document-apis/classes/BitmapImage.md) has been converted from an interface to a class.
5051

5152
## 2025-09-01
@@ -144,6 +145,10 @@ The [Page Metadata API](../../references/addonsdk/app-document.md#pagemetadata)
144145

145146
- Added support for retrieving published (shared) document links via the new [`LinkOptions`](../../references/addonsdk/addonsdk-constants.md) enumerable in [`addOnUISdk.app.document.link()`](../../references/addonsdk/app-document.md#link), along with the `documentPublishedLinkAvailable` event, which is triggered when the published link becomes available. Both updates are reflected in the [Document Metadata How-to Guide](../learn/how_to/document_metadata.md).
146147

148+
<InlineAlert slots="text" variant="warning"/>
149+
150+
**IMPORTANT:** The [`link()`](../../references/addonsdk/app-document.md#link) method, the [`LinkOptions`](../../references/addonsdk/addonsdk-constants.md) parameter and the associated link events are currently **_experimental only_** and should not be used in any add-ons you will be distributing until they have been declared stable. To use this method, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../../references/manifest/index.md#requirements) section of the `manifest.json`.
151+
147152
### Updates
148153

149154
- [`@adobe-ccwebext/ccweb-add-on-sdk-types`](https://github.com/adobe/create-ccweb-add-on/releases): Type Definitions for the CLI have been updated to version `1.17.0`.

src/pages/references/addonsdk/app-document.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,11 @@ The metadata of a page.
234234
| `title` | `string` | The title of the page. |
235235
| `size` | `{ width: number, height: number }` | The size of the page in pixels. |
236236
| `hasPremiumContent` | `boolean` | `true` if the page has premium content, `false` if not. |
237+
| `hasAudioContent` | `boolean` | `true` if the page has audio content, `false` if not. |
238+
| `hasVideoContent` | `boolean` | `true` if the page has video content, `false` if not. |
239+
| `hasAnimatedContent` | `boolean` | `true` if the page has animated content, `false` if not. |
237240
| `hasTemporalContent` | `boolean` | `true` if the page has timelines, `false` if not. |
241+
| `temporalContentDuration?` | `number` | The duration of temporal content in milliseconds (only present when `hasTemporalContent` is `true`). |
238242
| `pixelsPerInch?` | `number` | The pixels per inch of the page. |
239243
| `isPrintReady?` | `boolean` | Indicates whether the page has passed various internal quality checks to ensure high quality output when printed. While the specifics may change over time, Adobe Express checks for sufficient image resolution and sizes to ensure that a print will be of good quality. If this is `false`, the output may be blurry or of poor quality (based on internal heuristics). |
240244
| `isBlank?` | `boolean` | Indicates whether the page is blank. |

src/pages/references/changelog.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ contributors:
3131

3232
- New Text Replacement APIs: [`appendText()`](../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#appendtext), [`deleteText()`](../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#deleteText), [`insertText()`](../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#insertText), and [`replaceText()`](../references/document-sandbox/document-apis/classes/TextNodeContentModel.md#replaceText).
3333

34-
<InlineAlert slots="text" variant="warning"/>
34+
<InlineAlert slots="text" variant="warning" className="inline-alert-bullet-aligned"/>
3535

36-
**IMPORTANT:** The Text Replacement APIs are currently **_experimental only_** and should not be used in any add-ons you will be distributing until they have been declared stable. To use these APIs, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../references/manifest/index.md#requirements) section of the `manifest.json`.
36+
**IMPORTANT:** The Text Replacement APIs are currently **_experimental only_** and should not be used in any add-ons you will be distributing until they have been declared stable. To use these APIs, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](./manifest/index.md#requirements) section of the `manifest.json`.
3737

38+
- New [`mediaAddOnData`](../references/document-sandbox/document-apis/classes/ImageRectangleNode.md#mediaAddOnData) to support additional metadata on the `ImageRectangleNode`.
3839
- New `link` property in Character Style ranges [`CharacterStylesInput`](../references/document-sandbox/document-apis/interfaces/CharacterStylesInput.md#link) to support hyperlinks.
3940
- The [Use Text](../guides/learn/how_to/use_text.md) guide has been updated to include the new Text APIs.
4041
- The [Use Images](../guides/learn/how_to/use_images.md) guide has been updated to include a `replaceMedia()` example.
@@ -44,11 +45,11 @@ contributors:
4445

4546
- Renamed `clone()` to [`cloneInPlace()`](../references/document-sandbox/document-apis/classes/Node.md#cloneInPlace).
4647

47-
<InlineAlert slots="text" variant="warning"/>
48+
<InlineAlert slots="text" variant="warning" className="inline-alert-bullet-aligned"/>
4849

49-
**IMPORTANT:** The [`cloneInPlace()`](../references/document-sandbox/document-apis/classes/Node.md#cloneInPlace) method is currently **_experimental only_** and should not be used in any add-ons you will be distributing until it has been declared stable. To use this method, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](../references/manifest/index.md#requirements) section of the `manifest.json`.
50+
**IMPORTANT:** The [`cloneInPlace()`](../references/document-sandbox/document-apis/classes/Node.md#cloneInPlace) method is currently **_experimental only_** and should not be used in any add-ons you will be distributing until it has been declared stable. To use this method, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](./manifest/index.md#requirements) section of the `manifest.json`.
5051

51-
- Updated [`maskShape`](../references/document-sandbox/document-apis/classes/GridCellNode.md#maskShape) in `GridCellNode` to be readonly.
52+
- Updated [`maskShape`](../references/document-sandbox/document-apis/classes/GridCellNode.md#maskShape) in `GridCellNode` to readonly.
5253
- The [`BitmapImage`](../references/document-sandbox/document-apis/classes/BitmapImage.md) has been converted from an interface to a class.
5354

5455
## 2025-09-01
@@ -141,6 +142,10 @@ The [Page Metadata API](./addonsdk/app-document.md#pagemetadata) now includes ne
141142

142143
- Added support for retrieving published (shared) document links via the new [`LinkOptions`](./addonsdk/addonsdk-constants.md) enumerable in [`addOnUISdk.app.document.link()`](../references/addonsdk/app-document.md#link), along with the `documentPublishedLinkAvailable` event, which is triggered when the published link becomes available. Both updates are reflected in the [Document Metadata How-to Guide](../guides/learn/how_to/document_metadata.md).
143144

145+
<InlineAlert slots="text" variant="warning"/>
146+
147+
**IMPORTANT:** The [`link()`](./addonsdk/app-document.md#link) method, the [`LinkOptions`](./addonsdk/addonsdk-constants.md) parameter and the associated link events are currently **_experimental only_** and should not be used in any add-ons you will be distributing until they have been declared stable. To use this method, you will first need to set the `experimentalApis` flag to `true` in the [`requirements`](./manifest/index.md#requirements) section of the `manifest.json`.
148+
144149
### Updates
145150

146151
- [`@adobe-ccwebext/ccweb-add-on-sdk-types`](https://github.com/adobe/create-ccweb-add-on/releases): Type Definitions for the CLI have been updated to version `1.17.0`.

src/styles.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ h1 {
7373
margin-left: 12px;
7474
}
7575

76+
/* Custom class to align InlineAlert with markdown bullets - Multiple approaches */
77+
li + .spectrum-InLineAlert,
78+
ul + .spectrum-InLineAlert,
79+
ol + .spectrum-InLineAlert {
80+
margin-left: 40px !important;
81+
min-width: 85% !important;
82+
box-sizing: border-box !important;
83+
display: block !important;
84+
}
85+
7686
/* Fix for the icons in the TextBlocks of the landing page
7787
* ugly hack until we migrate to EDS
7888
*/

0 commit comments

Comments
 (0)