Skip to content

Bump react-data-table-component from 7.6.2 to 8.8.0 in /enatega-multivendor-admin - #2376

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/enatega-multivendor-admin/react-data-table-component-8.8.0
Closed

Bump react-data-table-component from 7.6.2 to 8.8.0 in /enatega-multivendor-admin#2376
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/enatega-multivendor-admin/react-data-table-component-8.8.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Bumps react-data-table-component from 7.6.2 to 8.8.0.

Release notes

Sourced from react-data-table-component's releases.

v8.8.0

New features

  • filterType: 'datetime' — filter to a specific date and time via a datetime-local input; Equals matches the exact instant. → Filtering (#1362)
  • filterType: 'time' — filter by time of day across all dates; supports seconds and Between windows that wrap past midnight. → Filtering

Bug fixes

  • Client-side filtering now runs before pagination, so filters match across all pages instead of just the current one. → Filtering (#1364)
  • A filterable column with no explicit id now filters instead of silently doing nothing. → Filtering (#1363)
  • A custom filterFunction now runs for value-less operators, not only when a value is entered. → Filtering (#1366)
  • The date filter's Equals no longer skips by a day for timestamped cells in non-UTC timezones. → Filtering
  • animateRows: fixed sort animation breaking across a sort cycle, not animating under fixedHeader, entrance animations being skipped with a numeric keyField, stale styles from an interrupted animation, and the expander close animation being cut short or leaking a timer. Sort movement is also smoother. → Animations (#1368)
  • The loading skeleton shimmer and the default spinner now stop under prefers-reduced-motion: reduce.

Full changelog: https://reactdatatable.com/docs/changelog

v8.7.1

Bug fixes

  • Faster cell rendering on large tables: non-editable cells now skip editing state entirely and share hoisted style objects, and rows inside a fixed-header scroll container use content-visibility: auto so off-screen rows skip layout and paint. → Performance (#1360)
  • Applying a column filter that matched no rows hid the table head along with the rows, leaving no way to clear the filter. The head now stays visible while any column filter is active. → Filtering (#1359)
  • A column filter with only its second condition filled was silently ignored; it now applies on its own, and an empty first condition no longer force-matches every row under OR logic. → Filtering
  • A between filter with one empty bound filtered out every row; the empty side is now unbounded (lower-only acts as ≥, upper-only as ≤) for both number and date columns. → Filtering
  • Hiding a column via the context menu now clears that column's active filter, which otherwise kept filtering rows with no visible way to clear it. → Context menu
  • Pressing Escape while typing in a filter input now closes the filter panel, and closing via Escape, Apply, or Clear returns focus to the filter icon. → Filtering

Full changelog: https://reactdatatable.com/docs/changelog

v8.7.0

New features

  • ctx.error for custom editors — the custom editor render context now includes the current validation error (string | null), so custom editors can style their own invalid state when validate rejects a commit. → Inline editing (#1355)
  • ctx.inputRef for custom editors — attach it as the ref of your focusable element to get auto-focus when the editor opens and refocus after a rejected commit, matching the built-in editors. → Inline editing (#1355)

Full changelog: https://reactdatatable.com/docs/changelog

v8.6.2

Bug fixes

  • A numeric pixel value for TableColumn.hide (e.g. hide: 480) was a no-op — the column stayed visible at every width. Numeric breakpoints stopped working in the v8 refactor; the type now accepts only Media ('sm' | 'md' | 'lg') to match. For a custom breakpoint, track viewport width yourself and toggle the column's omit prop instead. → Mobile (#1346)
  • Fixed highlightOnHover not showing when a row's background color was set via customStyles.rows.style, since the inline style was winning over the hover class. → Styling (#1351)

Full changelog: https://reactdatatable.com/docs/changelog

v8.6.1

... (truncated)

Changelog

Sourced from react-data-table-component's changelog.

8.8.0

New features

  • filterType: 'datetime' — filter to a specific date and time via a datetime-local input; Equals matches the exact instant. → Filtering (#1362)
  • filterType: 'time' — filter by time of day across all dates; supports seconds and Between windows that wrap past midnight. → Filtering

Bug fixes

  • Client-side filtering now runs before pagination, so filters match across all pages instead of just the current one. → Filtering (#1364)
  • A filterable column with no explicit id now filters instead of silently doing nothing. → Filtering (#1363)
  • A custom filterFunction now runs for value-less operators, not only when a value is entered. → Filtering (#1366)
  • The date filter's Equals no longer skips by a day for timestamped cells in non-UTC timezones. → Filtering
  • animateRows: fixed sort animation breaking across a sort cycle, not animating under fixedHeader, entrance animations being skipped with a numeric keyField, stale styles from an interrupted animation, and the expander close animation being cut short or leaking a timer. Sort movement is also smoother. → Animations (#1368)
  • The loading skeleton shimmer and the default spinner now stop under prefers-reduced-motion: reduce.

8.7.1

Bug fixes

  • Faster cell rendering on large tables: non-editable cells now skip editing state entirely and share hoisted style objects, and rows inside a fixed-header scroll container use content-visibility: auto so off-screen rows skip layout and paint. → Performance (#1360)
  • Applying a column filter that matched no rows hid the table head along with the rows, leaving no way to clear the filter. The head now stays visible while any column filter is active. → Filtering (#1359)
  • A column filter with only its second condition filled was silently ignored; it now applies on its own, and an empty first condition no longer force-matches every row under OR logic. → Filtering
  • A between filter with one empty bound filtered out every row; the empty side is now unbounded (lower-only acts as ≥, upper-only as ≤) for both number and date columns. → Filtering
  • Hiding a column via the context menu now clears that column's active filter, which otherwise kept filtering rows with no visible way to clear it. → Context menu
  • Pressing Escape while typing in a filter input now closes the filter panel, and closing via Escape, Apply, or Clear returns focus to the filter icon. → Filtering

8.7.0

New features

  • ctx.error for custom editors — the custom editor render context now includes the current validation error (string | null), so custom editors can style their own invalid state when validate rejects a commit. → Inline editing (#1355)
  • ctx.inputRef for custom editors — attach it as the ref of your focusable element to get auto-focus when the editor opens and refocus after a rejected commit, matching the built-in editors. → Inline editing (#1355)

8.6.2

Bug fixes

  • A numeric pixel value for TableColumn.hide (e.g. hide: 480) was a no-op — the column stayed visible at every width. Numeric breakpoints stopped working in the v8 refactor; the type now accepts only Media ('sm' | 'md' | 'lg') to match. For a custom breakpoint, track viewport width yourself and toggle the column's omit prop instead. → Mobile (#1346)
  • Fixed highlightOnHover not showing when a row's background color was set via customStyles.rows.style, since the inline style was winning over the hover class. → Styling (#1351)

8.6.1

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-data-table-component since your current version.


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 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 [react-data-table-component](https://github.com/jbetancur/react-data-table-component) from 7.6.2 to 8.8.0.
- [Release notes](https://github.com/jbetancur/react-data-table-component/releases)
- [Changelog](https://github.com/jbetancur/react-data-table-component/blob/master/CHANGELOG.md)
- [Commits](jbetancur/react-data-table-component@v7.6.2...v8.8.0)

---
updated-dependencies:
- dependency-name: react-data-table-component
  dependency-version: 8.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 27, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 30, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/enatega-multivendor-admin/react-data-table-component-8.8.0 branch July 30, 2026 09:21
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant