@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
|
@@ -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;
|