vendix-angular-forms
Installation
SKILL.md
Tip: Antes de usar InputComponent o ToggleComponent, consulta sus READMEs en
apps/frontend/src/app/shared/components/{input,toggle}/README.mdpara conocer sus inputs, outputs y variantes disponibles.
When to Use
Use this skill when:
- Creating new Angular Reactive Forms
- Fixing
Type 'AbstractControl | null' is not assignable to type 'FormControl'errors - Binding form controls to
[formControl]directive in templates - Working with typed FormControls in Angular 20+
Critical Patterns
Pattern 1: Typed FormControl Getters
PROBLEM: form.get('fieldName') returns AbstractControl | null, but [formControl] expects FormControl.
SOLUTION: Always create typed getters for each form control.