@mx-cartographer/experiences 6.26.22-alpha.al2 → 6.26.22-alpha.sms1

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,7 +1,3 @@
1
- ## [6.26.22] - 09-09-2025
2
-
3
- - **UPDATED** - new trends widget category detail chart now displays subcategories and amounts in chart tooltip
4
-
5
1
  ## [6.26.21] - 09-09-2025
6
2
 
7
3
  - **UPDATED** - new trends widget to filter out transfer category
@@ -8,9 +8,6 @@ export type LineChartLabel = string | {
8
8
  label: string;
9
9
  amount: number;
10
10
  };
11
- export type TooltipLabel = LineChartLabel & {
12
- header?: string;
13
- };
14
11
  type LineChartCurve = 'catmullRom' | 'linear' | 'monotoneX' | 'monotoneY' | 'natural' | 'step' | 'stepBefore' | 'stepAfter' | 'bump' | 'bumpX' | 'bumpY';
15
12
  interface LineChartProps {
16
13
  axisColor?: string;
@@ -18,7 +15,6 @@ interface LineChartProps {
18
15
  colors: (string | undefined)[];
19
16
  curveType?: LineChartCurve;
20
17
  customLegendVariant?: string;
21
- customTooltipLabels?: TooltipLabel[][];
22
18
  datasets: LineChartDataset[];
23
19
  height?: number;
24
20
  isGraphClippingXAxis?: boolean;
@@ -1,8 +1,7 @@
1
- import { LineChartLabel, TooltipLabel } from '../LineChart';
1
+ import { LineChartLabel } from '../LineChart';
2
2
  interface CustomTooltipProps {
3
- customLabels?: TooltipLabel[][];
4
3
  labels?: LineChartLabel[];
5
4
  valueFormatterString?: string;
6
5
  }
7
- export declare function CustomTooltip({ customLabels, labels, valueFormatterString, }: CustomTooltipProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function CustomTooltip({ labels, valueFormatterString }: CustomTooltipProps): import("react/jsx-runtime").JSX.Element;
8
7
  export {};