Release Notes / Version 12.2406.0
Table Of ContentsUpload Dialog Post Upload Actions
An extension point for the upload dialog is now available.
Example
import { postUploadRegistry } from "@coremedia/studio-client.cap-base-models";
postUploadRegistry._.registerPostUploadAction({
id: "an-action-id",
priority: 100, // Priority to sort and execute the actions in order
description: "descriptive text",
infoTooltip: "tooltip", // Optional, if not set, no explanation icon will be rendered
action: (content) => {
// your custom action
},
isCheckedByDefault: true, // Optional, if not set, false
});
Furthermore, the upload dialog is now wider and contains two columns. One for selecting the files and post actions and one to display the selected files.
(CMS-25550)
Content Hub: Improved initial page load behavior for small page sizes
While using the Content Hub with small page sizes in the library lists a flickering after each loaded page was observable. The flickering has been fixed.
(CMS-22625)


