@mx-cartographer/experiences 7.13.20 → 7.13.21

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [7.13.20] - 04-02-2026
2
+
3
+ - **ADDED** - DonutChartV2 component for Insights MUI Refresh.
4
+
1
5
  ## [7.13.19] - 04-01-2026
2
6
 
3
7
  - **ADDED** - Introduced `TransactionCard` component for `Insights`.
@@ -0,0 +1,13 @@
1
+ interface DonutSegment {
2
+ color: string;
3
+ label?: string;
4
+ labelValue?: React.ReactNode;
5
+ value: number;
6
+ }
7
+ interface DonutChartV2Props {
8
+ data: DonutSegment[];
9
+ centerLabel?: string;
10
+ centerValue: string;
11
+ }
12
+ declare const DonutChartV2: ({ data, centerLabel, centerValue }: DonutChartV2Props) => import("react/jsx-runtime").JSX.Element;
13
+ export default DonutChartV2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "7.13.20",
3
+ "version": "7.13.21",
4
4
  "description": "Library containing experience widgets",
5
5
  "author": "MX",
6
6
  "license": "MIT",