1.0.0 • Published 2 years ago

ngx-at-chip-input v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Usage notes:

Using form control as input

chipList = new FormControl();
chipList.setValue('test1', 'chip1', 'another chip');

<ngx-at-chip-input placeholder="custom placeholder" formControl="chipList">
\

Using array as input

chipArray='Hydrogen', 'Helium', 'Lithium', 'Berilium';

\<ngx-at-chip-input
  placeholder="custom placeholder"
  chipArray="chipArray"
  (chipListChange)="chipListChangeHandler($event)"
>
\

Two way binding with Array

chipArray='Hydrogen', 'Helium', 'Lithium', 'Berilium';

\<ngx-at-chip-input
  placeholder="custom placeholder"
  (chipArray)="chipArray"
>
\

How does it look and feel?

Chip Input Image

Live Demo

Click to see Live Demo