Type
PageAllowedChildren
@ng-forge/dynamic-forms
Type constraints for field nesting rules These ensure that container fields can only contain valid child field types
Note: We explicitly list types instead of using Exclude to avoid circular dependencies
Fields that are allowed as children of Page fields Pages can contain: rows, groups, arrays, and leaf fields (but NOT other pages)
Signature
type PageAllowedChildren = LeafFieldTypes | RowField | GroupField | ArrayField | SimplifiedArrayField | ContainerField;packages/dynamic-forms/src/lib/models/types/nesting-constraints.ts:18