Migration Angular 18 -> 19 (ng update, standalone par defaut, build OK)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-10 14:47:19 +02:00
parent d772e969ea
commit 05bbe64841
75 changed files with 3267 additions and 2013 deletions

View File

@@ -20,11 +20,10 @@ import { LucideAngularModule, X } from 'lucide-angular';
* - Clic sur X retire le chip
*/
@Component({
selector: 'app-chips-input',
standalone: true,
imports: [CommonModule, FormsModule, LucideAngularModule],
templateUrl: './chips-input.component.html',
styleUrls: ['./chips-input.component.scss']
selector: 'app-chips-input',
imports: [CommonModule, FormsModule, LucideAngularModule],
templateUrl: './chips-input.component.html',
styleUrls: ['./chips-input.component.scss']
})
export class ChipsInputComponent {
readonly X = X;