@mx-cartographer/experiences 6.24.8 → 6.24.9-alpha.san1

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,12 @@
1
+
2
+ ## [6.24.10] - 11-11-2025
3
+
4
+ - **UPDATED** - Modified existing LineChart component to support Finstrong requirements.
5
+
6
+ ## [6.24.9] - 08-11-2025
7
+
8
+ - **FIXED** - Added decimal support for manual transactions on compact devices
9
+
1
10
  ## [6.24.8] - 08-11-2025
2
11
 
3
12
  - **FIXED** - Unwanted horizontal scrolling on the Micro Widget layout
@@ -3,12 +3,17 @@ 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;
12
17
  margin?: {
13
18
  top?: number;
14
19
  right?: number;
@@ -1,5 +1,6 @@
1
- declare const _default: (({ series, average, style, }: {
1
+ declare const _default: (({ series, average, style, isValuesFormatted, }: {
2
2
  average: number;
3
+ isValuesFormatted: boolean;
3
4
  series: any[];
4
5
  style: any;
5
6
  }) => import("react/jsx-runtime").JSX.Element) & {
@@ -9,6 +9,8 @@ interface CustomMarkProps extends MarkElementProps {
9
9
  handlers?: MarkHandlers;
10
10
  showLabel: boolean;
11
11
  yData: number[];
12
+ isValuesFormatted?: boolean;
13
+ labelBackgroundColor?: string;
12
14
  }
13
15
  export declare const CustomMark: React.FC<CustomMarkProps>;
14
16
  export {};