Layout
KanbanBoard
Organizes controlled workflow columns with keyboard, pointer, and touch movement requests.
01
See it and copy it
Framework example
Choose Astro, React, or Elements to compare native usage against the shared visual output. Each example assumes the framework-level setup is already complete.
Planned
Release notesDocs
In progress
Released
Framework usage
Switch targets to compare the adapter code. The preview stays visually stable because all three packages share the same tokens andui-* class contract.---
import {
Badge,
Button,
Card,
KanbanBoard,
KanbanColumn
} from '@santi020k/lumen-astro'
const columns = [
{ label: 'Planned', value: 'planned' },
{ label: 'In progress', value: 'active' },
{ label: 'Released', value: 'released' }
]
---
<KanbanBoard aria-label="Editorial workflow" style="--ui-kanban-column-min-height: 12rem">
{columns.map((column, index) => (
<KanbanColumn value={column.value}>
<h3>{column.label}</h3>
{index === 0 && (
<Card data-ui-kanban-item="release-notes">
<Button
aria-label="Move Release notes"
data-ui-kanban-handle
draggable="true"
size="sm"
variant="ghost"
>Move</Button>
<strong>Release notes</strong>
<Badge variant="secondary">Docs</Badge>
</Card>
)}
</KanbanColumn>
))}
</KanbanBoard>import { Badge, Button, Card, KanbanBoard, KanbanColumn } from '@santi020k/lumen-react'
export const Example = () => (
<>
<KanbanBoard aria-label="Editorial workflow" style={{ -UiKanbanColumnMinHeight: '12rem' }}>
{columns.map((column, index) => (
<KanbanColumn value={column.value}>
<h3>{column.label}</h3>
{index === 0 && (
<Card data-ui-kanban-item="release-notes">
<Button
aria-label="Move Release notes"
data-ui-kanban-handle
draggable="true"
size="sm"
variant="ghost"
>Move</Button>
<strong>Release notes</strong>
<Badge variant="secondary">Docs</Badge>
</Card>
)}
</KanbanColumn>
))}
</KanbanBoard>
</>
)<script type="module">
import { defineLumenElements } from '@santi020k/lumen-elements/define'
defineLumenElements()
</script>
<lumen-kanban-board aria-label="Editorial workflow" style="--ui-kanban-column-min-height: 12rem">
{columns.map((column, index) => (
<lumen-kanban-column value={column.value}>
<h3>{column.label}</h3>
{index === 0 && (
<lumen-card data-ui-kanban-item="release-notes">
<lumen-button
aria-label="Move Release notes"
data-ui-kanban-handle
draggable="true"
size="sm"
variant="ghost"
>Move</lumen-button>
<strong>Release notes</strong>
<lumen-badge variant="secondary">Docs</lumen-badge>
</lumen-card>
)}
</lumen-kanban-column>
))}
</lumen-kanban-board>02
Choose your target
Add this component
Choose the package for your runtime. All adapters share the Lumen stylesheet. Use the matching registry command when you want a local wrapper for that framework.
pnpm add @santi020k/lumen-astropnpm add @santi020k/lumen-astrolumen add KanbanBoardlumen add KanbanBoardpnpm add @santi020k/lumen-reactpnpm add @santi020k/lumen-reactlumen add KanbanBoard --target reactlumen add KanbanBoard --target reactpnpm add @santi020k/lumen-elementspnpm add @santi020k/lumen-elementslumen add KanbanBoard --target elementslumen add KanbanBoard --target elementsAPI reference
Lumen-specific props and runtime attributes for the Astro primitive. React props follow the same names; Elements use equivalent kebab-case attributes where custom elements expose them.
| Attribute | Values | Default | Description |
|---|---|---|---|
| ui:kanban-move-request | CustomEvent<LumenKanbanMoveDetail> | - | Requests a controlled move without changing item ownership or persistence. |
| data-ui-kanban-item | stable item id | required per movable item | Identifies each movable card with its stable application id. |
| data-ui-kanban-handle | descendant attribute | required per movable item | Marks the dedicated keyboard, pointer, and touch movement control. |
| class, className | string | "" | Merges custom classes with the generated ui-* root classes. |
| ...native attributes | HTML attributes | - | Forwards standard attributes to the root element unless the component consumes them. |