@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.
@@ -0,0 +1,3 @@
1
+ import { SvgIconProps } from '@mui/material/SvgIcon';
2
+ declare const InfoIcon: (props: SvgIconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export default InfoIcon;
@@ -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
  /**
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@getsoren/design-system",
3
3
  "description": "Design System React library",
4
4
  "sideEffects": false,
5
- "version": "4.47.0",
5
+ "version": "4.48.1",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",