dynamic-forms / Variable

DERIVATION_ENTRIES

Injection token for the collected derivation entries.

Provided at form level, contains the topologically sorted entries after validation. This is the "core data" that other derivation components consume.

Presentation

const DERIVATION_ENTRIES: InjectionToken<Signal<DerivationEntry[]>>;

Example usage

// In a component or service
private readonly entries = inject(DERIVATION_ENTRIES);

// Access the current entries
const currentEntries = this.entries();