Type

ResolvedValueExclusionConfig

@ng-forge/dynamic-forms

Fully resolved exclusion config with all properties required. Produced by the 3-tier resolution: field ?? form ?? global.

@public

Signature

type ResolvedValueExclusionConfig = Required<ValueExclusionConfig>;

Properties

NameTypeDescription
excludeValueIfHidden boolean

Whether to exclude the value of hidden fields from submission output.

When true, fields whose hidden() state is true will have their values omitted from the submitted form value.

excludeValueIfDisabled boolean

Whether to exclude the value of disabled fields from submission output.

When true, fields whose disabled() state is true will have their values omitted from the submitted form value.

excludeValueIfReadonly boolean

Whether to exclude the value of readonly fields from submission output.

When true, fields whose readonly() state is true will have their values omitted from the submitted form value.