
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
react-kanbanui
Advanced tools
A modern, high-performance React Kanban board component with drag-and-drop functionality
KanbanUI is a high-performance, fully customizable React Kanban board component built with TypeScript. It features smooth drag-and-drop functionality, optimized rendering, and a clean, modern design.
npm install react-kanbanui
# or
yarn add react-kanbanui
IMPORTANT: You MUST import the CSS file for styles to work!
// Import the CSS file in your main app file (e.g., main.tsx, index.tsx, App.tsx)
import "react-kanbanui/dist/cjs/index.css";
// or for ESM
import "react-kanbanui/dist/esm/index.css";
// Then import the components
import { KanbanBoard, type IKanbanColumn } from "react-kanbanui";
Note: The CSS file includes all necessary styles - no need to install Tailwind CSS separately!
import React, { useState } from "react";
import { KanbanBoard, IKanbanColumn } from "react-kanbanui";
const MyApp = () => {
const [columns, setColumns] = useState<IKanbanColumn[]>([
{
id: "todo",
title: "To Do",
status: "todo",
cards: [
{
id: "card-1",
title: "Implement login",
description: "Create user authentication system",
priority: "high",
status: "todo",
assignee: "John Doe",
tags: ["frontend", "auth"],
},
],
},
]);
const handleColumnsChange = (newColumns: IKanbanColumn[]) => {
setColumns(newColumns);
};
return (
<KanbanBoard
columns={columns}
onColumnsChange={handleColumnsChange}
theme="light"
columnHeight="600px"
/>
);
};
KanbanUI uses Tailwind CSS classes by default but can be fully customized:
<KanbanBoard
columns={columns}
useOwnStyles={true}
className="my-custom-board"
columnHeight="700px"
/>
const columns: IKanbanColumn[] = [
{
id: "in-progress",
title: "In Progress",
status: "in-progress",
maxCards: 3, // Limit to 3 cards
cards: [],
},
];
import { KanbanCard } from "react-kanbanui";
const CustomCard = ({ card, ...props }) => (
<KanbanCard {...props} card={card} className="custom-card-style" />
);
KanbanUI is optimized for performance with:
See the Performance Guide for detailed testing instructions.
KanbanUI supports both light and dark themes:
// Light theme (default)
<KanbanBoard columns={columns} theme="light" />
// Dark theme
<KanbanBoard columns={columns} theme="dark" />
| Prop | Type | Default | Description |
|---|---|---|---|
columns | IKanbanColumn[] | - | Array of columns with cards |
onColumnsChange | (columns: IKanbanColumn[]) => void | - | Callback when columns change |
useOwnStyles | boolean | false | Use your own CSS classes |
theme | "light" | "dark" | "light" | Theme variant |
columnHeight | string | "600px" | Height of columns |
className | string | "" | Additional CSS classes |
interface IKanbanColumn {
id: string;
title: string;
status: "todo" | "in-progress" | "review" | "done";
cards: IKanbanCard[];
color?: string;
maxCards?: number;
}
interface IKanbanCard {
id: string;
title: string;
description?: string;
priority: "low" | "medium" | "high" | "urgent";
status: "todo" | "in-progress" | "review" | "done";
assignee?: string;
tags?: string[];
}
MIT License - see LICENSE.md for details.
See Contributing Guide for development setup and guidelines.
FAQs
A modern, high-performance React Kanban board component with drag-and-drop functionality
The npm package react-kanbanui receives a total of 2 weekly downloads. As such, react-kanbanui popularity was classified as not popular.
We found that react-kanbanui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.