igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
296 lines (295 loc) • 7.79 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { WebBaseComboBoxLikeDescription } from "./WebBaseComboBoxLikeDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebDatePickerDescription = /*@__PURE__*/ (() => {
class WebDatePickerDescription extends WebBaseComboBoxLikeDescription {
constructor() {
super();
this.ba = null;
this.bc = null;
this.ad = false;
this.af = false;
this.au = new Date();
this.ar = new Date();
this.at = new Date();
this.as = new Date();
this.a7 = null;
this.bf = null;
this.aa = false;
this.ab = false;
this.t = null;
this.u = null;
this.ae = false;
this.bg = null;
this.az = 0;
this.ah = false;
this.a6 = null;
this.a9 = null;
this.bb = null;
this.bh = null;
this.x = null;
this.bi = null;
this.z = false;
this.ag = false;
this.a1 = null;
this.ac = false;
this.be = null;
this.bd = null;
this.a5 = null;
this.a4 = null;
this.a3 = null;
this.a8 = null;
}
get_type() {
return "WebDatePicker";
}
get label() {
return this.ba;
}
set label(a) {
this.ba = a;
this.j("Label");
}
get mode() {
return this.bc;
}
set mode(a) {
this.bc = a;
this.j("Mode");
}
get nonEditable() {
return this.ad;
}
set nonEditable(a) {
this.ad = a;
this.j("NonEditable");
}
get readOnly() {
return this.af;
}
set readOnly(a) {
this.af = a;
this.j("ReadOnly");
}
get value() {
return this.au;
}
set value(a) {
this.au = a;
this.j("Value");
}
get activeDate() {
return this.ar;
}
set activeDate(a) {
this.ar = a;
this.j("ActiveDate");
}
get min() {
return this.at;
}
set min(a) {
this.at = a;
this.j("Min");
}
get max() {
return this.as;
}
set max(a) {
this.as = a;
this.j("Max");
}
get headerOrientation() {
return this.a7;
}
set headerOrientation(a) {
this.a7 = a;
this.j("HeaderOrientation");
}
get orientation() {
return this.bf;
}
set orientation(a) {
this.bf = a;
this.j("Orientation");
}
get hideHeader() {
return this.aa;
}
set hideHeader(a) {
this.aa = a;
this.j("HideHeader");
}
get hideOutsideDays() {
return this.ab;
}
set hideOutsideDays(a) {
this.ab = a;
this.j("HideOutsideDays");
}
get disabledDates() {
return this.t;
}
set disabledDates(a) {
this.t = a;
this.j("DisabledDates");
}
get specialDates() {
return this.u;
}
set specialDates(a) {
this.u = a;
this.j("SpecialDates");
}
get outlined() {
return this.ae;
}
set outlined(a) {
this.ae = a;
this.j("Outlined");
}
get placeholder() {
return this.bg;
}
set placeholder(a) {
this.bg = a;
this.j("Placeholder");
}
get visibleMonths() {
return this.az;
}
set visibleMonths(a) {
this.az = a;
this.j("VisibleMonths");
}
get showWeekNumbers() {
return this.ah;
}
set showWeekNumbers(a) {
this.ah = a;
this.j("ShowWeekNumbers");
}
get displayFormat() {
return this.a6;
}
set displayFormat(a) {
this.a6 = a;
this.j("DisplayFormat");
}
get inputFormat() {
return this.a9;
}
set inputFormat(a) {
this.a9 = a;
this.j("InputFormat");
}
get locale() {
return this.bb;
}
set locale(a) {
this.bb = a;
this.j("Locale");
}
get prompt() {
return this.bh;
}
set prompt(a) {
this.bh = a;
this.j("Prompt");
}
get resourceStrings() {
return this.x;
}
set resourceStrings(a) {
this.x = a;
this.j("ResourceStrings");
}
get weekStart() {
return this.bi;
}
set weekStart(a) {
this.bi = a;
this.j("WeekStart");
}
get disabled() {
return this.z;
}
set disabled(a) {
this.z = a;
this.j("Disabled");
}
get required() {
return this.ag;
}
set required(a) {
this.ag = a;
this.j("Required");
}
get defaultValue() {
return this.a1;
}
set defaultValue(a) {
this.a1 = a;
this.j("DefaultValue");
}
get invalid() {
return this.ac;
}
set invalid(a) {
this.ac = a;
this.j("Invalid");
}
get openingRef() {
return this.be;
}
set openingRef(a) {
this.be = a;
this.j("OpeningRef");
}
get openedRef() {
return this.bd;
}
set openedRef(a) {
this.bd = a;
this.j("OpenedRef");
}
get closingRef() {
return this.a5;
}
set closingRef(a) {
this.a5 = a;
this.j("ClosingRef");
}
get closedRef() {
return this.a4;
}
set closedRef(a) {
this.a4 = a;
this.j("ClosedRef");
}
get changeRef() {
return this.a3;
}
set changeRef(a) {
this.a3 = a;
this.j("ChangeRef");
}
get inputRef() {
return this.a8;
}
set inputRef(a) {
this.a8 = a;
this.j("InputRef");
}
}
WebDatePickerDescription.$t = markType(WebDatePickerDescription, 'WebDatePickerDescription', WebBaseComboBoxLikeDescription.$);
return WebDatePickerDescription;
})();