Function

rowFieldMapper

@ng-forge/dynamic-forms

Maps a row field definition to container component inputs.

row is a virtual field type: it resolves to ContainerFieldComponent with a synthesized { type: 'row' } wrapper, so the user-facing config stays { type: 'row', fields: [...] } while the runtime uses the container + wrapper pipeline.

Supports hidden state resolution via logic array or static hidden property.

Signature

function rowFieldMapper(fieldDef: RowField<readonly ContainerAllowedChildren[]>): Signal<Record<string, unknown>>

Parameters

NameTypeDescription
fieldDefRowField<readonly ContainerAllowedChildren[]>-

Returns

Signal<Record<string, unknown>>