@mx-cartographer/experiences 6.24.16 → 6.24.18

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,11 @@
1
+ ## [6.24.18] - 08-19-2025
2
+
3
+ - **UPDATED** - Modified existing LineChart component to support Finstrong requirements.
4
+
5
+ ## [6.24.17] - 08-18-2025
6
+
7
+ - **FIXED** - Mini Goals track type null check fix
8
+
1
9
  ## [6.24.16] - 08-15-2025
2
10
 
3
11
  - **REMOVED** - Manually throwing honey badgers; they should be handled by the app consuming experiences
@@ -3,12 +3,18 @@ import { MarkHandlers } from './linechart/CustomMark';
3
3
  interface LineChartProps {
4
4
  baseline?: string;
5
5
  colors: (string | undefined)[];
6
+ curveType?: string;
6
7
  datasets: {
7
8
  x: string;
8
9
  y: number;
9
10
  }[][];
11
+ disableXAxis?: boolean;
10
12
  height?: number;
13
+ isValuesFormatted?: boolean;
14
+ isGraphClippingXAxis?: boolean;
11
15
  labels: string[];
16
+ labelBackgroundColor?: string;
17
+ labelFontColor?: string;
12
18
  margin?: {
13
19
  top?: number;
14
20
  right?: number;
@@ -21,6 +27,7 @@ interface LineChartProps {
21
27
  showAverage?: boolean;
22
28
  showBars?: boolean;
23
29
  showMarkLabel?: boolean;
30
+ title?: string;
24
31
  useCustomMark?: boolean;
25
32
  valueFormatterString?: string;
26
33
  width?: number;
@@ -1,6 +1,8 @@
1
- declare const _default: (({ series, average, style, }: {
1
+ declare const _default: (({ average, isValuesFormatted, series, style, title, }: {
2
2
  average: number;
3
+ isValuesFormatted: boolean;
3
4
  series: any[];
5
+ title?: string;
4
6
  style: any;
5
7
  }) => import("react/jsx-runtime").JSX.Element) & {
6
8
  displayName: string;
@@ -9,6 +9,9 @@ interface CustomMarkProps extends MarkElementProps {
9
9
  handlers?: MarkHandlers;
10
10
  showLabel: boolean;
11
11
  yData: number[];
12
+ isValuesFormatted?: boolean;
13
+ labelBackgroundColor?: string;
14
+ labelFontColor?: string;
12
15
  }
13
16
  export declare const CustomMark: React.FC<CustomMarkProps>;
14
17
  export {};