Skip to content

Commit 71ac81e

Browse files
committed
docs(text editor): update ui typing
1 parent c65260e commit 71ac81e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

etc/lime-elements.api.md

Lines changed: 7 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,11 @@ export type EditorTextLink = {
761761
href: string;
762762
};
763763

764+
// 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)
765+
//
766+
// @public (undocumented)
767+
export type EditorUiType = 'standard' | 'minimal';
768+
764769
// 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)
765770
//
766771
// @public (undocumented)
@@ -1683,7 +1688,7 @@ namespace JSX_2 {
16831688
"required"?: boolean;
16841689
// @alpha
16851690
"triggers"?: TriggerCharacter[];
1686-
"ui"?: 'standard' | 'minimal';
1691+
"ui"?: EditorUiType;
16871692
"value"?: string;
16881693
}
16891694
// @beta

0 commit comments

Comments
 (0)