GlassKanbanBoard
A simpler kanban board surface for embedding.
Live previewProduction package import
#Overview
Loading preview
Status
live
Category
Data Display
Package
aura-glass
#Install and Import
Install the package once, import the component from the public entry, and load styles a single time at the app root.
shell
npm install aura-glass@4.0.0import
import { GlassKanbanBoard } from 'aura-glass'styles
import 'aura-glass/styles';#Examples
Three baseline shapes flagship components use across docs and AI-agent guidance:
Basic
tsx
import { GlassKanbanBoard } from 'aura-glass';
import 'aura-glass/styles';
export function KanbanExample() {
return (
<GlassKanbanBoard
contained
height={520}
showHeader
showToolbar
/>
);
}Production
tsx
import { GlassKanbanBoard, GlassCard } from 'aura-glass';
import 'aura-glass/styles';
export function GlassKanbanBoardSurface() {
return (
<GlassCard depth="medium" tint="neutral">
<GlassKanbanBoard
aria-label="Data Display production surface"
/>
</GlassCard>
);
}Contained
tsx
import { GlassKanbanBoard, GlassCard } from 'aura-glass';
import 'aura-glass/styles';
export function GlassKanbanBoardContainedPreview() {
return (
<GlassCard style={{ maxWidth: 420 }}>
<GlassKanbanBoard />
</GlassCard>
);
}#Accessibility
Expose column names, task titles, and selected task details without requiring drag gestures.
#SSR and Performance
Virtualize large boards and keep task detail drawers mounted only while editing.
#Theming
Theme with public props, `className`, `style`, and AuraGlass CSS variables. Avoid private DOM selectors so the component can upgrade with the package.