ng-daterangepicker-ext
Version:
Angular PayPal Datepicker
27 lines (24 loc) • 783 B
text/typescript
import { Component, OnInit } from '@angular/core';
import { NgDateRangePickerOptions } from '../ng-daterangepicker';
({
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'
};
}
}