@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface KanbanColumn<T>

    Represents a column (lane) in the kanban board.

    interface KanbanColumn<T = unknown> {
        cards: KanbanCard<T>[];
        color?: string;
        id: string;
        title: string;
    }

    Type Parameters

    • T = unknown

      The shape of the card payload.

    Index

    Properties

    Properties

    cards: KanbanCard<T>[]

    Ordered list of cards in this column (mutated during drag operations).

    color?: string

    Optional accent colour rendered as a top-border stripe.

    id: string

    Unique column identifier.

    title: string

    Display title for the column header.