18 lines
492 B
HTML
18 lines
492 B
HTML
<div class="chips-wrapper">
|
|
@for (tag of value; track tag; let i = $index) {
|
|
<span class="chip">
|
|
{{ tag }}
|
|
<button type="button" class="chip-remove" (click)="remove(i)" [title]="'chipsInput.removeTag' | translate">
|
|
<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>
|