blessed-components - v1.20.0
    Preparing search index...

    Interface AccordionDataSection

    Section data accepted by the Blessed accordion adapter.

    interface AccordionDataSection {
        content?: string;
        bodyHeight: number;
        disabled?: boolean;
        id: string;
        title: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    content?: string

    Plain text body content managed by the adapter.

    bodyHeight: number

    Intrinsic body height in terminal rows.

    disabled?: boolean

    Whether keyboard navigation and toggling must skip this section.

    id: string

    Stable section identifier.

    title: string

    Non-empty, single-line section title.