Skip to content

Commit e5b1ea3

Browse files
committed
fixup! feat(dynamic-label): remove beta tag
1 parent 9619ffc commit e5b1ea3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

etc/lime-elements.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,7 @@ export namespace JSX {
19161916
}
19171917
}
19181918

1919-
// @beta (undocumented)
1919+
// @public
19201920
export interface Label<T = LabelValue> {
19211921
icon?: string | Icon;
19221922
text?: string;

src/components/dynamic-label/label.types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import { Icon } from '../../interface';
22

33
export type LabelValue = string | number | boolean | null | undefined;
44

5+
/**
6+
* Represents a label that can be displayed in the `limel-dynamic-label` component.
7+
* Each label has a value that is used to match with the current value of the component.
8+
*
9+
* @public
10+
*/
511
export interface Label<T = LabelValue> {
612
/**
713
* The value of the label

0 commit comments

Comments
 (0)