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

    Interface UseAutoHideOptions

    Options for the useAutoHide hook

    interface UseAutoHideOptions {
        animationDuration: number;
        animationEasing: string;
        onVisibilityChange?: (visible: boolean) => void;
        timeout: number | undefined;
    }
    Index

    Properties

    animationDuration: number

    Duration of the show/hide animation in milliseconds

    animationEasing: string

    CSS easing function for the animation

    onVisibilityChange?: (visible: boolean) => void

    Callback fired when visibility changes

    timeout: number | undefined

    Timeout in milliseconds before hiding. 0 or undefined = always visible.