Complete form state for an entity, persisted to User Settings

interface FormState {
    sections: Record<string, FormSectionState>;
    showEmptyFields: boolean;
}

Properties

sections: Record<string, FormSectionState>

Per-section state, keyed by sectionKey

showEmptyFields: boolean

Whether to show fields with empty values