Skip to content

v55.0.0

Compare
Choose a tag to compare
@nickofthyme nickofthyme released this 21 Mar 15:59
· 362 commits to main since this release

55.0.0 (2023-03-21)

Bug Fixes

  • docs: lint and fix EUI breaking changes (0d14194)

Features

BREAKING CHANGES

  • heatmap: Removed unused properties maxColumnWidth and maxRowHeight under HeatmapStyle. Also removed grid height and width constraints (i.e. cellWidth and cellHeight) in favor of filled rendering and pagination driven by data from the consumer side.

    @@ -1424,25 +1424,13 @@ export interface HeatmapStyle {
         grid: {
    -        cellWidth: {
    -            min: Pixels;
    -            max: Pixels | 'fill';
    -        };
    -        cellHeight: {
    -            min: Pixels;
    -            max: Pixels | 'fill';
    -        };
             stroke: {
                 color: string;
                 width: number;
             };
         };
    -    maxColumnWidth: Pixels;
         maxLegendHeight?: number;
    -    maxRowHeight: Pixels;