@thepalaceproject/circulation-admin
    Preparing search index...
    interface CollectionTaskPanelProps {
        collectionId?: string | number;
        controls: ReactNode;
        description: ReactNode;
        docs: ReactNode;
        feedback: string;
        headerText: string;
        id: string;
        success: boolean;
    }
    Index

    Properties

    collectionId?: string | number

    The edited collection's id. Used as the <details> key so the "More details" disclosure collapses when the collection changes.

    controls: ReactNode

    The action button(s) and any related controls.

    description: ReactNode

    Short inline description shown under the controls.

    docs: ReactNode

    Long-form documentation revealed under "More details".

    feedback: string

    The success or error message to display, or null when idle.

    headerText: string

    Collapsible panel header text.

    id: string

    DOM id for the underlying Panel.

    success: boolean

    True when feedback describes a success rather than a failure.