• Overview
@angular/forms/signals

Applies a predefined schema to a given FieldPath.

API

function apply<TValue>(  path: SchemaPath<TValue>,  schema: NoInfer<SchemaOrSchemaFn<TValue>>,): void;

Usage Notes

const nameSchema = schema<{first: string, last: string}>((name) => {  required(name.first);  required(name.last);});const profileForm = form(signal({name: {first: '', last: ''}, age: 0}), (profile) => {  apply(profile.name, nameSchema);});
Jump to details