Skip to content

Glide Data Grid 3.0.3

Choose a tag to compare

@jassmith jassmith released this 10 Nov 19:57
· 478 commits to main since this release

3.0.3 Release Notes

This is a minor release focused on fixing issues found in the 3.0.0 release.

🐛 Bug Fixes

📜 Data grid sometimes would not scroll to show selected cell

The data grid now scrolls to exactly the selected cells location to ensure a consistent keyboard experience.

🖱 Multiple drag and drop bugs fixed

The data grid will no longer get stuck in drag and drop mode as easily. Nor will it accidentally trigger menus when dragging a column.

🎉 New Features / Improvements

🦄 Custom Cell

New API!

interface CustomCell<T extends {} = {}> extends BaseGridCell {
    readonly kind: GridCellKind.Custom;
    readonly data: T;
    readonly copyData: string;
}

Custom cell can be used to create new cell types quickly and easily. We are already using it in our glide-data-grid-cells package in order to ship to you brand new cells. These cells can include custom input editors as well!

🌽 Round image corners

All images rendered in the grid are rounded by default now to give a better visual appearance.

📊 Sparklines and Stars

With the introduction of the new glide-data-grid-cells package we are also introducing Sparklines and Star cells to the glide-data-grid.

image

Both can be dynamically updated just like any other cell type. No strings attached.