@svar-ui/trial-react-kanban
v2.6.0
Published
A customizable, high-performance React Kanban component
Readme
SVAR React Kanban PRO (Trial Version)
SVAR React Kanban is a customizable, high-performance React Kanban board component for task and workflow management.
This package provides the trial version of SVAR React Kanban PRO with additional features:
- undo/redo history
- dynamic data loading
- export to PDF, PNG, and Excel
The trial includes a built-in SVAR watermark and is intended for evaluation and testing only. You can find the terms of the Trial License here.
⚠️ The trial version is not free software.
To use SVAR React Kanban PRO in a production or commercial project, you must purchase a commercial license - see the pricing details.
Get Help
If you have technical questions about using SVAR React Kanban, visit the SVAR forum.
To access timely email support from our team during your 30-day trial, please submit the trial request form on our website.
How to Use
To start using SVAR React Kanban, import the package, pass cards and columns arrays, and optionally attach the editor through the kanban API:
import { useState } from 'react';
import { Kanban, Editor } from '@svar-ui/trial-react-kanban';
import '@svar-ui/trial-react-kanban/all.css';
const columns = [
{ id: 'backlog', label: 'Backlog' },
{ id: 'inprogress', label: 'In Progress' },
{ id: 'done', label: 'Done' },
];
const cards = [
{ id: 1, label: 'Design landing page', column: 'backlog', priority: 'high' },
{ id: 2, label: 'Set up CI pipeline', column: 'inprogress' },
{ id: 3, label: 'Write API docs', column: 'done' },
];
export default function App() {
const [api, setApi] = useState(null);
return (
<>
<Kanban init={setApi} cards={cards} columns={columns} />
{api && <Editor api={api} />}
</>
);
}