Member Junction
    Preparing search index...

    A single card displayed on the Kanban board.

    interface KanbanCardData {
        BadgeColor?: string;
        BadgeText?: string;
        Color?: string;
        ColumnKey: string;
        Data?: any;
        FooterText?: string;
        ID: string;
        Subtitle?: string;
        Title: string;
    }
    Index

    Properties

    BadgeColor?: string

    Background color for the badge.

    BadgeText?: string

    Small badge text, e.g. priority level.

    Color?: string

    Left-border accent color (CSS color value).

    ColumnKey: string

    The column key this card belongs to.

    Data?: any

    Arbitrary consumer data passed through with events.

    FooterText?: string

    Text shown in the card footer, e.g. a due date.

    ID: string

    Unique identifier for this card.

    Subtitle?: string

    Secondary text displayed below the title.

    Title: string

    Primary text displayed on the card.