Interface
DynamicFormFieldRegistry
@ng-forge/dynamic-forms
Global interface for dynamic form field definitions with categorization This interface combines containers and leaves from their respective registries
Container fields: Layout fields that contain other fields (page, row, group, array) Leaf fields: Fields that can hold values or display content (input, text, etc.)
To add custom fields, augment FieldRegistryContainers or FieldRegistryLeaves
Signature
interface DynamicFormFieldRegistryProperties
| Name | Type | Description |
|---|---|---|
containers | FieldRegistryContainers | Container fields that hold other fields (no value, have children) |
leaves | FieldRegistryLeaves | Leaf fields that have values or display content |
wrappers | FieldRegistryWrappers | Field wrappers types |
packages/dynamic-forms/src/lib/models/registry/field-registry.ts:76