Skip to main content

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.

MemberMeaning
skipDescendantsSkips recursively touching and committing descendants; the current node still commits its own pending input.