UNPKG

white-ui-kit

Version:

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

20 lines (16 loc) 595 B
import { Component } from '@angular/core'; // Компоненты import { HitContextPopupComponent } from '../hit-context-popup/hit-context-popup.component'; // Всплывающее окно селектора @Component({ selector: 'hit-selector-popup', templateUrl: './hit-selector-popup.component.html', styleUrls: ['./hit-selector-popup.component.scss'], }) export class HitSelectorPopupComponent extends HitContextPopupComponent { // Выбор элемента public onSelect(item: any): void { this.data.select.emit(item); this.close(); } }