@mx-cartographer/experiences 6.25.6 → 6.25.8

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,13 @@
1
+ ## [6.25.8] - 08-25-2025
2
+
3
+ - **FIXED** - Spending widget so that it displays all income categories
4
+ - **FIXED** - Spending widget so that it exlucdes investment categories
5
+ - **FIXED** - Transaction list on Spending widget so that it displays the correct transactions
6
+
7
+ ## [6.25.7] - 08-25-2025
8
+
9
+ - **UPDATED** - StackedLineChart to have responsive height based on widget and legend dimensions
10
+
1
11
  ## [6.25.6] - 08-25-2025
2
12
 
3
13
  - **CHANGED** - new Trends Widget to use Detailed Categories
@@ -18,8 +18,8 @@ interface StackedLineChartProps {
18
18
  onHoverPoint?: (category: string) => void;
19
19
  onHoverLegend?: (category: string) => void;
20
20
  onClickLegend?: (category: string) => void;
21
- height?: number;
22
- width?: number;
21
+ availableHeight?: number;
22
+ minimumHeight?: number;
23
23
  }
24
24
  export declare const StackedLineChart: React.FC<StackedLineChartProps>;
25
25
  export {};
@@ -6,6 +6,7 @@ interface CustomLegendProps {
6
6
  top_level_guid: string;
7
7
  }[];
8
8
  hoveredLegend: string | null;
9
+ legendRef?: (instance: HTMLElement | null) => void;
9
10
  onHoverLegend: (label: string | null) => void;
10
11
  onClickLegend: (label: string | null) => void;
11
12
  }