Skip to content

Releases: SebastianBaltes/react-grid-db-editor

v1.0.5 — sticky column header fix

Choose a tag to compare

@SebastianBaltes SebastianBaltes released this 09 Jul 17:11

Fix: sticky column headers no longer scroll away.

The <th> carries the .col-header class, whose position: relative rule (specificity 0,2,0) overrode the intended thead th { position: sticky } (0,1,2). position: sticky; top: 0 is now declared directly on .col-header, so the header row stays pinned while scrolling. Verified via headless Chrome.

npm: https://www.npmjs.com/package/react-grid-db-editor/v/1.0.5

v1.0.1

Choose a tag to compare

@SebastianBaltes SebastianBaltes released this 01 Apr 16:02

react-grid-db-editor v1.0.1

A schema-bound data grid for React — built for keyboard-driven bulk editing of structured datasets.

Highlights

  • 10 built-in column types (String, Number, Boolean, Combobox, Date, DateTime, Time, Duration, Color)
  • Spreadsheet-style keyboard navigation, fill drag, copy & paste, undo/redo
  • Search & Replace with regex support
  • Async backend integration with optimistic updates and rollback
  • 8 built-in themes + CSS variable customization
  • Column resizing, reordering, sticky columns & headers
  • Context menu with undo/redo, filter by value, search & replace
  • ~25 kB gzipped

Install

npm install react-grid-db-editor

Links