BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/Shadcn Kanban Board/kanban

Kanban Board

shadcn-kanban-board/kanban
FreeComponent

A Kanban board component with customizable circle colors.

Install it

npx shadcn@latest add https://shadcn-kanban-board.com/r/kanban.json

Source

registry/new-york/ui/kanban.tsxshadcn-kanban-board.com/r/kanban.json · first 6 KB
1/* eslint-disable @typescript-eslint/no-unsafe-member-access */
2/* eslint-disable unicorn/no-null */
3import type {
4 ChangeEvent,
5 ComponentProps,
6 KeyboardEvent,
7 RefObject,
8} from 'react';
9import {
10 createContext,
11 useCallback,
12 useContext,
13 useEffect,
14 useId,
15 useImperativeHandle,
16 useMemo,
17 useRef,
18 useState,
19} from 'react';
20import { createPortal } from 'react-dom';
21
22import { Button, buttonVariants } from '~/components/ui/button';
23import { Skeleton } from '~/components/ui/skeleton';
24import { Textarea } from '~/components/ui/textarea';
25import {
26 Tooltip,
27 TooltipContent,
28 TooltipProvider,
29 TooltipTrigger,
30} from '~/components/ui/tooltip';
31import { cn } from '~/lib/utils';
32
33/*
34Accessibility
35*/
36
37export type KanbanBoardDndMonitorEventHandler = {
38 onDragStart?: (activeId: string) => void;
39 onDragMove?: (activeId: string, overId?: string) => void;
40 onDragOver?: (activeId: string, overId?: string) => void;
41 onDragEnd?: (activeId: string, overId?: string) => void;
42 onDragCancel?: (activeId: string) => void;
43};
44
45export type KanbanBoardDndEventType = keyof KanbanBoardDndMonitorEventHandler;
46
47export type KanbanBoardDndMonitorContextValue = {
48 activeIdRef: RefObject<string>;
49 draggableDescribedById: string;
50 registerMonitor: (monitor: KanbanBoardDndMonitorEventHandler) => void;
51 unregisterMonitor: (monitor: KanbanBoardDndMonitorEventHandler) => void;
52 triggerEvent: (
53 eventType: KanbanBoardDndEventType,
54 activeId: string,
55 overId?: string,
56 ) => void;
57};
58
59export const KanbanBoardContext = createContext<
60 KanbanBoardDndMonitorContextValue | undefined
61>(undefined);
62
63function useDndMonitor(monitor: KanbanBoardDndMonitorEventHandler) {
64 const context = useContext(KanbanBoardContext);
65 if (!context) {
66 throw new Error('useDndMonitor must be used within a DndMonitorProvider');
67 }
68
69 const { registerMonitor, unregisterMonitor } = context;
70
71 useEffect(() => {
72 registerMonitor(monitor);
73 return () => {
74 unregisterMonitor(monitor);
75 };
76 }, [monitor, registerMonitor, unregisterMonitor]);
77}
78
79export function useDndEvents() {
80 const context = useContext(KanbanBoardContext);
81
82 if (!context) {
83 throw new Error('useDndEvents must be used within a DndMonitorProvider');
84 }
85
86 const { activeIdRef, draggableDescribedById, triggerEvent } = context;
87
88 const onDragStart = useCallback(
89 (activeId: string) => {
90 activeIdRef.current = activeId;
91 triggerEvent('onDragStart', activeId);
92 },
93// … truncated

What it pulls in

Other registry items

  • button
  • skeleton
  • textarea
  • tooltip

Files it writes

  • registry/new-york/ui/kanban.tsx

Facts

Registry
Shadcn Kanban Board
Type
registry:component
Access
Free
Files written
1
Theme wiring
ships cssVars
Licence
the repository states none
In the index
at or before 2026-08-13
Last confirmed
today

Go to the source

shadcn-kanban-board.com janhesters/shadcn-kanban-board on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex