HTML Flip Book - v0.0.0-alpha.36
    Preparing search index...

    Interface PageIndicatorProps

    Use PageIndicatorProps instead

    interface PageIndicatorProps {
        ariaLabel?: string;
        className?: string;
        editable?: boolean;
        maxLength?: number;
        mode?: PageIndicatorMode;
        placeholder?: string;
        showTotal?: boolean;
    }
    Index

    Properties

    ariaLabel?: string

    Input aria-label for accessibility

    className?: string

    Additional CSS class name

    editable?: boolean

    Whether the input is editable for navigation. Defaults to true in semantic mode.

    maxLength?: number

    Maximum input length

    Display mode:

    • "semantic": uses pageSemantics to show semantic names (e.g., "א", "ב")
    • "index": shows 1-based page numbers Defaults to "semantic" if pageSemantics is available, otherwise "index".
    placeholder?: string

    Placeholder when current page has no semantic name (semantic mode only)

    showTotal?: boolean

    Whether to show "/ total" after the current page(s). Defaults to true.