Theia API Documentation v1.75.0
    Preparing search index...
    interface AiConfigurationSectionProps {
        actions?: ReactNode;
        children: ReactNode;
        className?: string;
        collapsible?: boolean;
        count?: number;
        forceExpanded?: boolean;
        subtitle?: string;
        title?: string;
    }
    Index

    Properties

    actions?: ReactNode

    Optional actions shown on the title line, aligned to the right (e.g. a toolbar of "copy all" buttons).

    children: ReactNode
    className?: string
    collapsible?: boolean

    Lets the user fold the section away by clicking its title line. Sections start expanded: these pages exist to be browsed, so nothing is hidden until the user chooses to hide it.

    count?: number

    Number of entries in the section, shown next to the title. Lets a long list state its size without being scrolled, which is the point of folding it in the first place.

    forceExpanded?: boolean

    Keeps the content visible regardless of the user's fold state, e.g. while a filter is active — a match inside a folded section would otherwise be silently unreachable.

    subtitle?: string

    Optional short subtitle shown next to the title.

    title?: string

    Group title. Omit for an untitled group of rows.