ashishgkwd/ngx-mat-daterange-picker

View on GitHub
src/app/modules/ngx-mat-drp/presets/presets.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
  Component,
  OnInit,
  Output,
  EventEmitter,
  Input,
  ChangeDetectionStrategy,
  ViewEncapsulation
} from '@angular/core';
import { PresetItem } from '../model/model';

@Component({
  selector: 'mat-drp-presets',
  templateUrl: './presets.component.html',
  styleUrls: ['./presets.component.css'],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class PresetsComponent implements OnInit {
  @Input()
  presets: Array<PresetItem>;
  @Output()
  readonly presetChanged: EventEmitter<any> = new EventEmitter<any>();

  constructor() {}

  ngOnInit() {}

  setPresetPeriod(event) {
    this.presetChanged.emit(event);
  }
}