white-ui-kit
Version:
Модуль компонентов UI Имя модуля: `white-ui-kit`
20 lines (16 loc) • 581 B
text/typescript
import { Component } from '@angular/core';
// Компоненты
import { HitContextPopupComponent } from '../hit-context-popup/hit-context-popup.component';
// Всплывающее окно календаря
export class HitDatepickerPopupComponent extends HitContextPopupComponent {
// Выбор даты
public onSelectDate(date: Date): void {
this.data.select.emit(date);
this.close();
}
}