Trilium Frontend API
    Preparing search index...

    Interface FormListItemOpts

    interface FormListItemOpts {
        active?: boolean;
        badges?: FormListBadge[];
        checked?: boolean;
        children: ComponentChildren;
        className?: string;
        container?: boolean;
        description?: string;
        disabled?: boolean;
        disabledTooltip?: string;
        icon?: string;
        itemRef?: RefObject<HTMLLIElement>;
        onClick?: (e: MouseEvent) => void;
        postContent?: ComponentChildren;
        rtl?: boolean;
        selected?: boolean;
        title?: string;
        triggerCommand?: keyof CommandMappings;
        value?: string;
    }
    Index

    Properties

    active?: boolean
    badges?: FormListBadge[]
    checked?: boolean
    className?: string
    container?: boolean
    description?: string
    disabled?: boolean
    disabledTooltip?: string

    Will indicate the reason why the item is disabled via an icon, when hovered over it.

    icon?: string
    onClick?: (e: MouseEvent) => void

    OptionalpostContent

    postContent?: ComponentChildren
    rtl?: boolean
    selected?: boolean
    title?: string
    triggerCommand?: keyof CommandMappings
    value?: string