ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...
    const props: ColumnDrawerSectionProps = {
    columnId: "supplier", config, expandedAccordion: "search-supplier", onAccordionChange,
    };
    interface ColumnDrawerSectionProps {
    /** Column id; the accordion's panel id is derived as `search-${columnId}`. */
    columnId: string;
    /** The column's `meta.drawer` payload describing the widget and state binding. */
    config: ColumnDrawerConfig;
    /** Currently expanded accordion panel id, or `false` for none. */
    expandedAccordion: string | false;
    /** Accordion expand/collapse handler factory for the given `panel`. */
    onAccordionChange: (panel: string) => (event: SyntheticEvent, isExpanded: boolean) => void;
    }
    interface ColumnDrawerSectionProps {
        columnId: string;
        config: ColumnDrawerConfig;
        expandedAccordion: string | false;
        onAccordionChange: (
            panel: string,
        ) => (event: SyntheticEvent, isExpanded: boolean) => void;
    }
    Index

    Properties

    columnId: string

    Column id; the accordion's panel id is derived as search-${columnId}.

    The column's meta.drawer payload describing the widget and state binding.

    expandedAccordion: string | false

    Currently expanded accordion panel id, or false for none.

    onAccordionChange: (
        panel: string,
    ) => (event: SyntheticEvent, isExpanded: boolean) => void

    Accordion expand/collapse handler factory for the given panel.