Role Swimlane GridPRO

A responsibility swimlane crossing roles against stages, filling every cell by whether that role owns, helps, only reads, or has no access, with a legend keyed to the same tints.

Workflow52: Role Swimlane Grid

A responsibility swimlane crossing roles against stages, filling every cell by whether that role owns, helps, only reads or has no access, with a legend keyed to the same tints.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/workflow52?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/workflow52?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/workflow52.tsx plus the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

The installed file exports workflow52Demo alongside the block: the exact props behind the preview above. Spread it to get a working grid in one line.

tsx
import { Workflow52, workflow52Demo } from "@/components/beste/block/workflow52";

export default function ResponsibilitiesPage() {
  return <Workflow52 {...workflow52Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Workflow52 } from "@/components/beste/block/workflow52";

export default function ResponsibilitiesPage() {
  return (
    <Workflow52
      badge={{ label: "Who touches what" }}
      heading="Five stages, four roles, and no gap where nobody is responsible"
      description="Every column has exactly one owner."
      stages={["Referral", "Booking", "Visit", "Notes", "Billing"]}
      lanes={[
        {
          role: "Reception",
          detail: "The front desk, whoever is on shift",
          stages: ["owns", "owns", "helps", "none", "sees"],
        },
        {
          role: "Finance",
          detail: "Invoices, insurers, and month-end",
          stages: ["none", "none", "none", "none", "owns"],
        },
      ]}
      legend={[
        { key: "owns", label: "Owns the stage" },
        { key: "helps", label: "Steps in when asked" },
        { key: "sees", label: "Can read it, cannot change it" },
        { key: "none", label: "No access at all" },
      ]}
      footnote="Access follows this grid exactly."
      button={{ label: "See how roles are set", href: "/security/roles" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
stagesstring[][]Column headings, left to right
lanesLane[][]One row per role, each with a value per stage
legend{ key: Involvement; label: string }[][]What each tint means
footnotestringClosing note under the legend
button{ label: string; href: string }Outline action
classNamestringExtra classes for the outer section
ts
type Involvement = "owns" | "helps" | "sees" | "none";

type ActionLink = {
  label: string;
  href: string;
};

type Lane = {
  role: string;
  detail: string;
  stages: Involvement[];
};

Behavior notes

More Workflow blocks

View all Workflow
PRO

workflow37

Parallel Tracks

Two parallel workstream swimlanes aligned across shared phase columns.

PRO

workflow10

Tabbed Use Cases

Tabbed showcase where each tab swaps a team's typical workflow surface. Left side carries the story, right side carries the live asset.

PRO

workflow34

Phase Outcomes

Each engagement phase mapped from its inputs to its outcomes.

PRO

workflow39

Phase Index

A numbered phase index that cross-fades a sticky detail panel as each phase is hovered.

PRO

workflow51

Automation Coverage Map

A workflow that scores each stage on how much of it runs unattended, drawing an accent bar per stage and naming what still needs a person, against a sticky column with one headline figure and a live stage tracker.

PRO

workflow35

Method Pillars

A featured methodology panel alongside supporting principle pillars.