UNPKG

white-ui-kit

Version:

Модуль компонентов UI Имя модуля: `white-ui-kit`

25 lines (20 loc) 548 B
import { Component, Input, Output, EventEmitter, } from '@angular/core'; // Список селектора @Component({ selector: 'hit-selector-list', templateUrl: './hit-selector-list.component.html', styleUrls: ['./hit-selector-list.component.scss'], }) export class HitSelectorListComponent { // Список @Input() public list: any[]; // Выбранный элемент @Input() public selected: any; // Событие выбора @Output() public select = new EventEmitter<any>(); }