Skip to main content
161

Search Lumen

Find components, APIs, guides, and recipes.

GitHub
Web docs
Layout

KanbanBoard

Organizes controlled workflow columns with keyboard, pointer, and touch movement requests.

FrameworksAstro · React · Elements

Registry commandlumen add KanbanBoard

InteractionNative markup

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.

AstroSame visual contract, native framework API

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 and ui-* class contract.
astro
---
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>
Edit KanbanBoard in browser
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.

bash@santi020k/lumen-astro
pnpm add @santi020k/lumen-astro
pnpm add @santi020k/lumen-astro
bashAstro wrapper
lumen add KanbanBoard
lumen add KanbanBoard

API 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.

AttributeValuesDefaultDescription
ui:kanban-move-requestCustomEvent<LumenKanbanMoveDetail>-Requests a controlled move without changing item ownership or persistence.
data-ui-kanban-itemstable item idrequired per movable itemIdentifies each movable card with its stable application id.
data-ui-kanban-handledescendant attributerequired per movable itemMarks the dedicated keyboard, pointer, and touch movement control.
class, classNamestring""Merges custom classes with the generated ui-* root classes.
...native attributesHTML attributes-Forwards standard attributes to the root element unless the component consumes them.

Web docsFull catalog