ink-cartridge
    Preparing search index...

    Interface SkipOptions

    Options for skip — navigation flags when moving to a child screen.

    interface SkipOptions {
        onlyAttribute?: boolean;
    }
    Index
    onlyAttribute?: boolean

    Only meaningful when the skip target is the CURRENT screen (refreshing it in place):

    • true — only the component's props are updated; the component is not remounted, so its internal state and mouse regionFocus survive. Useful for performance or when preserving internal state.
    • false (default) — the current screen is remounted with the new props, resetting its internal state.

    Ignored (silently) when skipping to a different child screen. In either case, non-crossPage layers are filtered out, same as any navigation.