Update custom components API to have @alpha stability.

This commit is contained in:
Half-Shot
2025-06-17 14:03:10 +01:00
parent e2a89888c2
commit 0d4a45d447
3 changed files with 7 additions and 21 deletions
@@ -48,7 +48,7 @@ export type CustomMessageRenderHints = {
/**
* Function used to render a message component.
* @alpha Unlikely to change
* @alpha Subject to change.
*/
export type CustomMessageRenderFunction = (
/**
@@ -63,7 +63,7 @@ export type CustomMessageRenderFunction = (
/**
* API for inserting custom components into Element.
* @public
* @alpha Subject to change.
*/
export interface CustomComponentsApi {
/**
@@ -90,7 +90,7 @@ export interface Api extends LegacyModuleApiExtension, LegacyCustomisationsApiEx
/**
* The custom message component API.
* @public
* @alpha
*/
readonly customComponents: CustomComponentsApi;
/**