ng-forgeDynamic Forms
Installation Quick Start
Material Design PREVIEW PrimeNG PREVIEW Bootstrap PREVIEW Ionic PREVIEW
Field Types
Basics Reference Advanced Custom Validators
Conditional Logic Value Derivation Internationalization (i18n) Form Submission
Form Rows Form Groups Form Arrays Form Pages Text Components Hidden Fields
Overview Angular Schema Zod Validation
Type Safety Event Bus Expression Parser Security Custom Integrations
AI Integration (MCP) API Reference
dynamic-forms / Interface

FieldRegistryContainers

Container fields registry - augment this interface to add custom container fields

Properties

NameTypeDescription
array
ArrayField<readonly ArrayAllowedChildren[]>
group
GroupField<readonly GroupAllowedChildren[]>
page
PageField<PageAllowedChildren[]>
row
RowField<readonly RowAllowedChildren[]>

Example usage

declare module '@ng-forge/dynamic-forms' {
  interface FieldRegistryContainers {
    'my-container': MyContainerFieldDef;
  }
}
  • Properties
  • Example usage