MarkAsTouchedOptions
Options controlling whether markAsTouched() propagates to descendants.
Import
import type { MarkAsTouchedOptions } from '@ngblocks/form-nodes';
When to use it
Use for reusable wrappers around markAsTouched(). skipDescendants limits propagation; node interactivity rules still govern whether touching applies.
Declaration
type MarkAsTouchedOptions = {
skipDescendants?: boolean;
};
Declared members
The declaration above also includes inherited contracts and overloads where applicable.
| Member | Meaning |
|---|---|
skipDescendants | Skips recursively touching and committing descendants; the current node still commits its own pending input. |