syncfusion-react-kanban — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-react-kanban (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A comprehensive skill for working with Syncfusion's React Kanban component to build flexible task management boards with cards, columns, swimlanes, and drag-and-drop interactions.
Use this skill when you need to:
The Kanban component provides a visual task management system with these core concepts:
Cards: Represent tasks or items. Each card displays a header (from a field) and content (from another field). Cards can have tags, custom templates, and be selected individually or in groups.
Columns: Define workflow stages (e.g., "To Do", "In Progress", "Done"). Each column has a header, can display item counts, and control drag/drop behavior independently.
Swimlanes: Optional horizontal grouping layers that organize cards by category (e.g., by user, priority, or team). Swimlanes help with organization and can have custom headers.
Drag-and-Drop: Built-in support for moving cards between columns, within columns, across swimlanes, or to external sources. Fully configurable per column.
Data Binding: Connect to static arrays or dynamic sources (DataManager with OData/REST APIs) for real-time updates.
Templates: Customize card layout, column headers, swimlane headers, tooltips, and dialogs with your own HTML/JSX.
Choose the reference that matches your current need:
📄 Read: references/getting-started.md
📄 Read: references/core-structure.md
📄 Read: references/swimlanes.md
📄 Read: references/drag-and-drop.md
📄 Read: references/data-binding.md
📄 Read: references/dialogs-and-templates.md
📄 Read: references/sorting-filtering-and-search.md
📄 Read: references/customization-and-styling.md
📄 Read: references/properties.md
📄 Read: references/methods.md
📄 Read: references/events.md
Here's a minimal Kanban board with 3 columns and 5 cards:
import React from 'react';
import { KanbanComponent, ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-react-kanban';
import '@syncfusion/ej2-react-kanban/styles/material.css';
export default function KanbanQuickStart(): JSX.Element {
const kanbanData: { [key: string]: Object } = [
{ Id: '1', Status: 'Open', Summary: 'Analyze requirements' },
{ Id: '2', Status: 'Open', Summary: 'Design UI mockups' },
{ Id: '3', Status: 'InProgress', Summary: 'Implement backend API' },
{ Id: '4', Status: 'InProgress', Summary: 'Build frontend components' },
{ Id: '5', Status: 'Closed', Summary: 'Deploy to production' }
];
return (
<KanbanComponent
dataSource={kanbanData}
keyField="Status"
cardSettings={{ contentField: 'Summary' }}
>
<ColumnsDirective>
<ColumnDirective key="0" keyField="Open" headerText="Open" />
<ColumnDirective key="1" keyField="InProgress" headerText="In Progress" />
<ColumnDirective key="2" keyField="Closed" headerText="Closed" />
</ColumnsDirective>
</KanbanComponent>
);
}What this does:
Status fieldimport { KanbanComponent, ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-react-kanban';
<KanbanComponent
dataSource={kanbanData}
keyField="Status"
cardSettings={{ contentField: 'Summary' }}
swimlaneSettings={{ keyField: 'Assignee' }}
>
<ColumnsDirective>
<ColumnDirective keyField="Open" headerText="Open" />
<ColumnDirective keyField="InProgress" headerText="In Progress" />
<ColumnDirective keyField="Closed" headerText="Closed" />
</ColumnsDirective>
</KanbanComponent>Cards are now grouped horizontally by the Assignee field, making it easy to see each user's tasks.
import { ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-react-kanban';
<ColumnsDirective>
<ColumnDirective keyField="Open" headerText="Open" allowDrag={true} allowDrop={true} />
<ColumnDirective keyField="Closed" headerText="Closed" allowDrag={false} allowDrop={false} />
</ColumnsDirective>Users can drag cards into "Open", but once in "Closed", cards are locked (read-only).
import { ColumnsDirective, ColumnDirective } from '@syncfusion/ej2-react-kanban';
<ColumnsDirective>
<ColumnDirective
keyField="InProgress"
headerText="In Progress"
maxCount={5}
minCount={1}
/>
</ColumnsDirective>The board will warn users if column has fewer than 1 or more than 5 cards, enforcing work-in-progress limits.
import { CardClickEventArgs } from '@syncfusion/ej2-react-kanban';
const handleCardDoubleClick = (args: CardClickEventArgs): void => {
console.log('Card clicked:', args.data);
// Open a dialog or form to edit the card
};
<KanbanComponent
dataSource={kanbanData}
cardDoubleClick={handleCardDoubleClick}
>
{/* ... */}
</KanbanComponent>This pattern enables inline editing workflows.
import { DataManager, UrlAdaptor } from '@syncfusion/ej2-data';
const dataManager: DataManager = new DataManager({
url: 'https://api.example.com/tasks',
adaptor: new UrlAdaptor()
});
<KanbanComponent
dataSource={dataManager}
keyField="Status"
cardSettings={{ contentField: 'Summary' }}
>
{/* ... */}
</KanbanComponent>~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.