• Overview
@angular/forms/signals

max

function
stablesince v22.0

Binds a validator to the given path that requires the value to be less than or equal to the given maxValue. This function can only be called on number paths. This function can only be called on number paths. In addition to binding a validator, this function adds MAX property to the field.

API

function max<
  TValue extends number | null,
  TPathKind extends PathKind = PathKind.Root,
>(
  path: SchemaPath<TValue, 1, TPathKind>,
  maxValue: number | LogicFn<TValue, number | undefined, TPathKind>,
  config?: BaseValidatorConfig<TValue, TPathKind> | undefined,
): void;
Jump to details