@getsoren/design-system 4.47.0 → 4.48.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,6 +5,11 @@ type Option<T = OptionValue> = {
|
|
|
5
5
|
id?: string | number;
|
|
6
6
|
label: string;
|
|
7
7
|
value: T;
|
|
8
|
+
/**
|
|
9
|
+
* Optional information text. When provided, an info icon is displayed next to the
|
|
10
|
+
* option label, showing this text in a tooltip on hover.
|
|
11
|
+
*/
|
|
12
|
+
info?: string;
|
|
8
13
|
};
|
|
9
14
|
interface ChipFilterBaseProps<T = OptionValue> {
|
|
10
15
|
/**
|