@tstrv/angular-2-daterangepicker
Version:
Bootstrap Daterange picker for angular2 and 4
43 lines (42 loc) • 1.21 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var DateRange = /** @class */ (function () {
function DateRange() {
}
return DateRange;
}());
var DefinedDateRange = /** @class */ (function () {
function DefinedDateRange() {
}
return DefinedDateRange;
}());
var Timepicker = /** @class */ (function () {
function Timepicker() {
this.minuteInterval = 1;
this.twentyFourHourFormat = true;
}
return Timepicker;
}());
exports.Timepicker = Timepicker;
var Options = /** @class */ (function () {
function Options() {
this.startDate = null;
this.endDate = null;
this.minDate = null;
this.maxDate = null;
this.format = "YYYY-MM-DD";
this.displayFormat = "YYYY-MM-DD";
this.inactiveBeforeStart = false;
this.autoApply = false;
this.singleCalendar = false;
this.noDefaultRangeSelected = false;
this.showRanges = false;
this.position = 'left';
this.disabled = false;
this.timePicker = null;
this.disableBeforeStart = false;
this.alwaysOpen = false;
}
return Options;
}());
exports.Options = Options;