Skip to content

Commit 56f3a24

Browse files
committed
docs(text editor): update ui typing
1 parent b56fcbb commit 56f3a24

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

etc/lime-elements.api.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ export namespace Components {
677677
"required"?: boolean;
678678
// @alpha
679679
"triggers": TriggerCharacter[];
680-
"ui"?: 'standard' | 'minimal';
680+
"ui"?: EditorUiType;
681681
"value": string;
682682
}
683683
// @beta
@@ -761,6 +761,9 @@ export type EditorTextLink = {
761761
href: string;
762762
};
763763

764+
// @beta (undocumented)
765+
export type EditorUiType = 'standard' | 'minimal';
766+
764767
// 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)
765768
//
766769
// @public (undocumented)
@@ -1683,7 +1686,7 @@ namespace JSX_2 {
16831686
"required"?: boolean;
16841687
// @alpha
16851688
"triggers"?: TriggerCharacter[];
1686-
"ui"?: 'standard' | 'minimal';
1689+
"ui"?: EditorUiType;
16871690
"value"?: string;
16881691
}
16891692
// @beta

0 commit comments

Comments
 (0)