igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
120 lines (119 loc) • 3.48 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 { WebCalendarBaseDescription } from "./WebCalendarBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebCalendarDescription = /*@__PURE__*/ (() => {
class WebCalendarDescription extends WebCalendarBaseDescription {
constructor() {
super();
this.ai = new Date();
this.x = null;
this.ah = new Date();
this.ae = false;
this.ad = false;
this.ap = null;
this.aq = null;
this.al = 0;
this.an = null;
this.z = null;
this.ab = null;
this.ao = null;
}
get_type() {
return "WebCalendar";
}
get value() {
return this.ai;
}
set value(a) {
this.ai = a;
this.j("Value");
}
get values() {
return this.x;
}
set values(a) {
this.x = a;
this.j("Values");
}
get activeDate() {
return this.ah;
}
set activeDate(a) {
this.ah = a;
this.j("ActiveDate");
}
get hideOutsideDays() {
return this.ae;
}
set hideOutsideDays(a) {
this.ae = a;
this.j("HideOutsideDays");
}
get hideHeader() {
return this.ad;
}
set hideHeader(a) {
this.ad = a;
this.j("HideHeader");
}
get headerOrientation() {
return this.ap;
}
set headerOrientation(a) {
this.ap = a;
this.j("HeaderOrientation");
}
get orientation() {
return this.aq;
}
set orientation(a) {
this.aq = a;
this.j("Orientation");
}
get visibleMonths() {
return this.al;
}
set visibleMonths(a) {
this.al = a;
this.j("VisibleMonths");
}
get activeView() {
return this.an;
}
set activeView(a) {
this.an = a;
this.j("ActiveView");
}
get formatOptions() {
return this.z;
}
set formatOptions(a) {
this.z = a;
this.j("FormatOptions");
}
get resourceStrings() {
return this.ab;
}
set resourceStrings(a) {
this.ab = a;
this.j("ResourceStrings");
}
get changeRef() {
return this.ao;
}
set changeRef(a) {
this.ao = a;
this.j("ChangeRef");
}
}
WebCalendarDescription.$t = markType(WebCalendarDescription, 'WebCalendarDescription', WebCalendarBaseDescription.$);
return WebCalendarDescription;
})();