| 279 | standalone: false, |
| 280 | }) |
| 281 | export class MinValidator extends AbstractValidatorDirective { |
| 282 | /** |
| 283 | * @description |
| 284 | * Tracks changes to the min bound to this directive. |
| 285 | */ |
| 286 | @Input() min!: string | number | null; |
| 287 | /** @internal */ |
| 288 | override inputName = 'min'; |
| 289 | /** @internal */ |
| 290 | override normalizeInput = (input: string | number): number => toFloat(input); |
| 291 | /** @internal */ |
| 292 | override createValidator = (min: number): ValidatorFn => minValidator(min); |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * @description |
nothing calls this directly
no test coverage detected
searching dependent graphs…