Files
LoreMind/web/src/app/shared/chips-input/chips-input.component.html
IETM_FIXE\ietm6 ba8a503b3e
All checks were successful
Build & Push Images / build (brain) (push) Successful in 46s
Build & Push Images / build (core) (push) Successful in 1m21s
Build & Push Images / build (web) (push) Successful in 1m25s
Mise en ligne de la version 0.2.0
2026-04-21 14:25:17 +02:00

16 lines
437 B
HTML

<div class="chips-wrapper">
<span class="chip" *ngFor="let tag of value; let i = index">
{{ tag }}
<button type="button" class="chip-remove" (click)="remove(i)" title="Retirer">
<lucide-icon [img]="X" [size]="12"></lucide-icon>
</button>
</span>
<input
type="text"
class="chip-input"
[placeholder]="placeholder"
[(ngModel)]="current"
(keydown)="onKeyDown($event)"
(blur)="add()" />
</div>