Trilium Frontend API
    Preparing search index...

    Type Alias State

    type State = {
        attributes: { [key: string]: { [key: string]: string | boolean } };
        elements: {
            arrow?: HTMLElement;
            popper: HTMLElement;
            reference: Element | VirtualElement;
        };
        modifiersData: {
            arrow?: { centerOffset: number; x?: number; y?: number };
            hide?: {
                hasPopperEscaped: boolean;
                isReferenceHidden: boolean;
                popperEscapeOffsets: SideObject;
                referenceClippingOffsets: SideObject;
            };
            offset?: OffsetData;
            popperOffsets?: Offsets;
            preventOverflow?: Offsets;
            [key: string]: any;
        };
        options: OptionsGeneric<any>;
        orderedModifiers: Modifier<any, any>[];
        placement: Placement;
        rects: StateRects;
        reset: boolean;
        scrollParents: {
            popper: (Element | Window | VisualViewport)[];
            reference: (Element | Window | VisualViewport)[];
        };
        strategy: PositioningStrategy;
        styles: { [key: string]: Partial<CSSStyleDeclaration> };
    }
    Index

    Properties

    attributes: { [key: string]: { [key: string]: string | boolean } }
    elements: {
        arrow?: HTMLElement;
        popper: HTMLElement;
        reference: Element | VirtualElement;
    }
    modifiersData: {
        arrow?: { centerOffset: number; x?: number; y?: number };
        hide?: {
            hasPopperEscaped: boolean;
            isReferenceHidden: boolean;
            popperEscapeOffsets: SideObject;
            referenceClippingOffsets: SideObject;
        };
        offset?: OffsetData;
        popperOffsets?: Offsets;
        preventOverflow?: Offsets;
        [key: string]: any;
    }
    options: OptionsGeneric<any>
    orderedModifiers: Modifier<any, any>[]
    placement: Placement
    rects: StateRects
    reset: boolean
    scrollParents: {
        popper: (Element | Window | VisualViewport)[];
        reference: (Element | Window | VisualViewport)[];
    }
    styles: { [key: string]: Partial<CSSStyleDeclaration> }