Version:
Install
shell
npm i @mate-angular/multi-select-combo-boxImport
typescript
import { MateMultiSelectComboBoxComponent } from '@mate-angular/multi-select-combo-box';Variants
Default
html
<mate-multi-select-combo-box-ng
label="Select options"
[items]="items"
itemLabelPath="label"
itemValuePath="value"
(selectedItemsChanged)="onChanged($event)">
</mate-multi-select-combo-box-ng>With custom renderer
html
<mate-multi-select-combo-box-ng label="Custom" [items]="items">
<ng-template let-item>
<b>{{ item.label }}</b>
</ng-template>
</mate-multi-select-combo-box-ng>