UNPKG

ng-daterangepicker-ext

Version:
27 lines (24 loc) 783 B
import { Component, OnInit } from '@angular/core'; import { NgDateRangePickerOptions } from '../ng-daterangepicker'; @Component({ selector: 'app-root', templateUrl: 'app.component.html' }) export class AppComponent implements OnInit { value: string; options: NgDateRangePickerOptions; ngOnInit() { this.options = { theme: 'default', range: 'tm', dayNames: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], presetNames: ['This Month', 'Last Month', 'This Week', 'Last Week', 'This Year', 'Last Year', 'Start', 'End', 'Hours', 'Minutes', 'Seconds'], outputFormat: 'DD/MM/YYYY', startOfWeek: 0, showTime: true, timeFormat: 'HH:mm:ss', container: 'app-root' }; } }