@mx-cartographer/experiences 6.25.6 → 6.25.7

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,7 @@
1
+ ## [6.25.7] - 08-25-2025
2
+
3
+ - **UPDATED** - StackedLineChart to have responsive height based on widget and legend dimensions
4
+
1
5
  ## [6.25.6] - 08-25-2025
2
6
 
3
7
  - **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
  }