What problem does it solve? Legacy Lucca Front textfields built with raw CSS classes (textfield, textfield-input, textfield-label) need to be migrated to modern Angular components like lu-form-field and lu-text-input, but doing this by hand across many templates is error-prone and risks functional regressions in forms. ## Core Features & Use Cases - Legacy Pattern Detection: Scans Angular HTML templates and inline TS templates for deprecated textfield wrappers, including variants with hidden labels, custom inner components, and hybrid legacy/modern markup. - Guided Transformation Rules: Maps legacy inputs to lu-text-input, lu-number-input, or lu-textarea-input, converts width modifiers (mod-short, mod-long) to lu-form-field width values, and preserves formControlName, ngModel, validation, and accessibility attributes. - Anti-Regression Safeguards: Automatically excludes selects, date pickers, textareas, and ambiguous cases from auto-migration, annotating them for manual review instead. - Use Case: While upgrading an Angular application to the latest Lucca Front design system, run this migration to convert dozens of legacy textfields per file, then receive a report split into automatic, partial, and manual migrations. ## Quick Start Migrate all deprecated textfields in my Angular templates to Lucca Front lu-form-field components and report which cases need manual review.