Axinom Mosaic Libraries
    Preparing search index...

    Interface AccordionItemProps

    interface AccordionItemProps {
        allowLeftSpacing?: boolean;
        className?: string;
        header: Element;
        isExpanded?: boolean;
        sticky?: boolean;
        toggleExpanded?: () => void;
    }
    Index

    Properties

    allowLeftSpacing?: boolean

    Determines if spacing will be added to align with the Accordion header (default: true)

    className?: string

    CSS Class name for additional styles

    header: Element
    isExpanded?: boolean

    The current expanded state of the item. When used within the Accordion component, this prop will be overridden.

    sticky?: boolean

    Sticky state of the current row. When used within the Accordion component, this prop will be overridden with the value from stickyRows.

    toggleExpanded?: () => void

    Callback to emit when the expand button is clicked. When used within the Accordion component, this callback will be overridden.