form-graph
    Preparing search index...

    Interface StoreOptions<Ext>

    interface StoreOptions<Ext> {
        defaults?: Record<string, unknown>;
        ext: Ext;
        revalidate?: "submit" | "touched";
        storage?: StorageAdapter;
        warnOnCodecChurn?: boolean;
    }

    Type Parameters

    • Ext
    Index
    defaults?: Record<string, unknown>

    Seed values — treated as boundary input, so their input schemas run.

    ext: Ext
    revalidate?: "submit" | "touched"

    When errors surface. 'submit' (default): only at validate()/parse. 'touched': a field the user has written is judged on every recompute — touched = written, the store stays UI-blind. Pristine fields never scold.

    storage?: StorageAdapter
    warnOnCodecChurn?: boolean

    Set false to silence the codec-churn warning (see getCodecChurn).