Skip to content

Commit

Permalink
docs(text editor): update ui typing
Browse files Browse the repository at this point in the history
  • Loading branch information
john-traas committed Nov 11, 2024
1 parent c65260e commit 71ac81e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions etc/lime-elements.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ export namespace Components {
"required"?: boolean;
// @alpha
"triggers": TriggerCharacter[];
"ui"?: 'standard' | 'minimal';
"ui"?: EditorUiType;
"value": string;
}
// @beta
Expand Down Expand Up @@ -761,6 +761,11 @@ export type EditorTextLink = {
href: string;
};

// Warning: (ae-missing-release-tag) "EditorUiType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type EditorUiType = 'standard' | 'minimal';

// Warning: (ae-missing-release-tag) "EventEmitter" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
Expand Down Expand Up @@ -1683,7 +1688,7 @@ namespace JSX_2 {
"required"?: boolean;
// @alpha
"triggers"?: TriggerCharacter[];
"ui"?: 'standard' | 'minimal';
"ui"?: EditorUiType;
"value"?: string;
}
// @beta
Expand Down

0 comments on commit 71ac81e

Please sign in to comment.