useScrollOverflow@xds/core · hooks

Usage

Tracks scroll overflow state for a horizontally scrollable container. Returns a ref callback and state booleans that update as the user scrolls or the container resizes. Uses scroll event listeners and ResizeObserver for reactive updates. Tolerance of 1px is applied to avoid sub-pixel false positives.

Best practices

GuidancePractices
DoUse to show/hide scroll navigation buttons or fade edges on carousels and horizontal lists.
DoApply the scrollRef to a container with overflow-x: auto or overflow-x: scroll.
Don'tUse for vertical scroll tracking — this hook only measures horizontal overflow.

Returns

FieldTypeDescription
scrollRefReact.RefCallback<HTMLElement>Ref callback to attach to the horizontally scrollable container element.
overflowStartbooleanWhether content overflows the start edge (left in LTR, right in RTL).
overflowEndbooleanWhether content overflows the end edge (right in LTR, left in RTL).
hasOverflowbooleanWhether the container has any scroll overflow at all (scrollWidth > clientWidth).

Import

ts
import {useScrollOverflow} from '@xds/core/hooks'