BaseValueField
@ng-forge/dynamic-forms
Signature
interface BaseValueField<
TProps,
TValue,
TMeta extends FieldMeta = FieldMeta,
TNullable extends boolean = false
>
extends FieldDef<TProps, TMeta>, FieldWithValidationType Parameters
Properties
| Name | Type | Description |
|---|---|---|
value ? | TNullable extends true ? TValue : TValue | - |
placeholder ? | DynamicText | Placeholder text displayed when the field is empty. Supports static strings, Observables, and Signals for dynamic content. Note: placeholder lives at the field level, NOT inside |
required ? | boolean | - |
nullable ? | TNullable | Whether the field accepts When Read-side caveat: a user clearing a text input reads back as |
packages/dynamic-forms/src/lib/definitions/base/base-value-field.ts:14