Sticky selection panel for applying actions to many items.
BulkEditPanel appears when a selection is active and keeps batch actions close to the working context without taking over the page.
Use a compact sticky panel for selected rows.
<BulkEditPanel
selectedCount={8}
actions={
<>
<Button variant="secondary" size="sm">Assign owner</Button>
<Button variant="destructive" size="sm">Archive</Button>
</>
}
/>import { BulkEditPanel } from "@froggdesign/enter-ui-react";Use BulkEditPanel below tables, grids, inboxes, and task queues after row selection. Keep actions direct and task-oriented.
The panel renders as a labelled region, includes the selected count, and gives the clear selection button an explicit label.
selectedCount: number displayed in the panel label.actions: action buttons or menus for the current selection.children: optional supporting content.onClearSelection: called from the clear selection button.open: when false, the panel is not rendered.BulkEditPanel uses .eui-bulk-edit-panel classes and FroggDesign tokens for layout, state, focus, and disabled styling.