Skip to content

deps(deps): bump @glideapps/glide-data-grid from 4.99.0-beta2 to 6.0.4-alpha19 in /packages/source #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 17, 2025

Bumps @glideapps/glide-data-grid from 4.99.0-beta2 to 6.0.4-alpha19.

Release notes

Sourced from @​glideapps/glide-data-grid's releases.

Glide Data Grid 6.0.3

Fun fact: this release was done while riding in a 737 MAX. If this is the last release of GDG ever I pray I shorted Boeing on the way down. I guess this also puts me in the mile high npm club? Hurrah.

Improvements

  • src now included in the package to make sure sourcemaps work
  • readonly no longer sometimes ignore by uri cell, thanks @​LukasMasuch
  • Fixed the focus ring sometimes being clipped
  • There is now an API editOnType to control if the overlay editor can be triggered by simply typing or not.

Glide Data Grid 6.0.2

New Features

  • Add multiselect cell
  • Add support for circular checkboxes in row marker
  • Add ability to configure the editor bloom amount

Enhancement

  • Bump react-select version

Bug Fixes

  • Fix issue where highlight regions would sometimes not show when center region is only 1 column wide
  • Trailing row no longer selectable via DND when not sticky
  • onItemHovered no longer emitted when resizing a column, thanks @​BrianHung
  • FIx bug where disabling the focus ring did not disable the background color
  • Fix a clipping issue when vertical borders are not drawn
  • Add ability to have a hover effect on text cells to preview editing

Glide Data Grid 6.0.1

Bug Fixes

  • Fix bug where headers would not always redraw when animating
  • Fix full API docs link, thank you @​alistairholt

Glide Data Grid 6.0.0

🚨 Breaking Changes

New dependency

  • canvas-hypertxt bumped to 1.0.3
  • @​linaria/react now added as dep (extremely tiny)

✌️ Farewell create react app 4

CRA 4 is no longer officially supported. While it is definitely possible to make it work, it may require extra work. CRA 5 works fine.

🚢 Better exports

... (truncated)

Changelog

Sourced from @​glideapps/glide-data-grid's changelog.

5.0.0 Release notes

🚨🚨 Breaking changes and porting guide

Glide Data Grid 5.0 no longer depends on styled-components! This means the Theme for your data grid is no longer provided via the ThemeProvider API.

Mandatory CSS file

Because Glide Data Grid no longer uses a CSS-in-JS solution, the CSS must be imported by consumers. This is usually achieved by doing the following somewhere in your project source.

import "@glideapps/glide-data-grid/dist/index.css";

Your bundler will take care of packing this in with the rest of the CSS your project requires. This is tested working with both next-js and create-react-app. Examples can be found in the test-projects folder.

Theme porting

If you are not providing a custom theme to your data grid there is nothing to do. If you are using a custom theme you should replace:

return (
    <ThemeProvider theme={gridTheme}>
        <DataEditor {...myEditorProps} />
    </ThemeProvider>
);

with:

return <DataEditor theme={gridTheme} {...myEditorProps} />;

Porting custom editors

All theme variables can now be accessed as a CSS variable:

.my-editor {
    background-color: var(--gdg-bg-cell);
    color: var(--gdg-text-dark);
}

All variables except lineHeight are available in this manner. The full list includes

--gdg-accent-color
--gdg-accent-fg
</tr></table> 

... (truncated)

Commits
  • 081d2e5 6.0.4-alpha19
  • e975744 Clear all search results on search when opened programmatically (#1085)
  • ec392f4 feat: customizable fill handle config (#1068)
  • 09d3f65 bug: getSkipPoint never returns number type value (#1080)
  • 6143a3c Remove memory allocation for interpolateColors following FIXME comment (#1077)
  • 8257c8f Additional checks
  • 0a10841 Fix wrong css var usage
  • 8aae076 refactor: migrate from @​storybook/addons to manager-api for Storybook 9 (#1079)
  • 158cb5e 6.0.4-alpha18
  • 3a4e40b feat: expose compact selection items and create static method (#1073)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@glideapps/glide-data-grid](https://github.com/glideapps/glide-data-grid/tree/HEAD/packages/core) from 4.99.0-beta2 to 6.0.4-alpha19.
- [Release notes](https://github.com/glideapps/glide-data-grid/releases)
- [Changelog](https://github.com/glideapps/glide-data-grid/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/glideapps/glide-data-grid/commits/v6.0.4-alpha19/packages/core)

---
updated-dependencies:
- dependency-name: "@glideapps/glide-data-grid"
  dependency-version: 6.0.4-alpha19
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants