Pilates
    Preparing search index...

    Interface FocusProviderProps

    interface FocusProviderProps {
        autoTab?: boolean;
        blurOnEscape?: boolean;
        children?: ReactNode;
        enabled?: boolean;
    }
    Index

    Properties

    autoTab?: boolean

    If true (default), the provider installs its own useInput for Tab / Shift+Tab cycling. Set false to drive cycling manually via useFocusManager().focusNext().

    blurOnEscape?: boolean

    If true, Esc clears the currently focused id. Default false — Esc remains free for app-level handlers (e.g., closing a modal, exiting).

    children?: ReactNode
    enabled?: boolean

    Initial enabled state. Default true.