feat(base): floating selection action bar with bulk delete

This commit is contained in:
Philipinho
2026-04-18 16:44:07 +01:00
parent 4c4bbe9b15
commit 05406640f0
4 changed files with 117 additions and 0 deletions
@@ -24,6 +24,7 @@ import { useRowDrag } from "@/features/base/hooks/use-row-drag";
import { GridHeader } from "./grid-header";
import { GridRow } from "./grid-row";
import { AddRowButton } from "./add-row-button";
import { SelectionActionBar } from "./selection-action-bar";
import classes from "@/features/base/styles/grid.module.css";
const ROW_HEIGHT = 36;
@@ -251,6 +252,7 @@ export function GridContainer({
)}
<AddRowButton onClick={handleAddRow} />
{baseId && <SelectionActionBar baseId={baseId} />}
</div>
</div>
</DndContext>