Hiyve Components - v1.0.0
    Preparing search index...

    Interface UseAutoHideResult

    Return value from the useAutoHide hook

    interface UseAutoHideResult {
        contentStyle: CSSProperties;
        isVisible: boolean;
        pauseAutoHide: () => void;
        resumeAutoHide: () => void;
        wrapperStyle: CSSProperties;
    }
    Index

    Properties

    contentStyle: CSSProperties

    Apply to the inner content element (overflow hidden + opacity fade)

    isVisible: boolean

    Whether the control bar is currently visible

    pauseAutoHide: () => void

    Pause auto-hide (e.g., when a menu opens). Supports nesting.

    resumeAutoHide: () => void

    Resume auto-hide (e.g., when a menu closes). Supports nesting.

    wrapperStyle: CSSProperties

    Apply to the outer wrapper element (CSS Grid row collapse)