ApprovalQueue
stableQueue of pending human approvals with priority ordering
import { ApprovalQueue } from "@nodus/design-system/patterns"Loading demo…
Props
| Prop | Type | Default | Description |
|---|---|---|---|
itemsreq | ApprovalItem[] | — | Pending items with id, agent, action, risk, timestamp |
onApprove | (ids: string[]) => void | — | Batch approval handler |
onReject | (ids: string[]) => void | — | Batch reject handler |
itemsrequiredType
ApprovalItem[]Default —Pending items with id, agent, action, risk, timestamp
onApproveType
(ids: string[]) => voidDefault —Batch approval handler
onRejectType
(ids: string[]) => voidDefault —Batch reject handler
Design Rationale
This component was designed to express:
Explore Related
Was this helpful?