UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

128 lines (127 loc) 3.65 kB
/* 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.ad = new Date(); this.s = null; this.ac = new Date(); this.z = false; this.y = false; this.ak = null; this.al = null; this.ag = 0; this.ai = null; this.u = null; this.w = null; this.am = null; this.aj = null; } get_type() { return "WebCalendar"; } get value() { return this.ad; } set value(a) { this.ad = a; this.e("Value"); } get values() { return this.s; } set values(a) { this.s = a; this.e("Values"); } get activeDate() { return this.ac; } set activeDate(a) { this.ac = a; this.e("ActiveDate"); } get hideOutsideDays() { return this.z; } set hideOutsideDays(a) { this.z = a; this.e("HideOutsideDays"); } get hideHeader() { return this.y; } set hideHeader(a) { this.y = a; this.e("HideHeader"); } get headerOrientation() { return this.ak; } set headerOrientation(a) { this.ak = a; this.e("HeaderOrientation"); } get orientation() { return this.al; } set orientation(a) { this.al = a; this.e("Orientation"); } get visibleMonths() { return this.ag; } set visibleMonths(a) { this.ag = a; this.e("VisibleMonths"); } get activeView() { return this.ai; } set activeView(a) { this.ai = a; this.e("ActiveView"); } get formatOptions() { return this.u; } set formatOptions(a) { this.u = a; this.e("FormatOptions"); } get resourceStrings() { return this.w; } set resourceStrings(a) { this.w = a; this.e("ResourceStrings"); } get size() { return this.am; } set size(a) { this.am = a; this.e("Size"); } get changeRef() { return this.aj; } set changeRef(a) { this.aj = a; this.e("ChangeRef"); } } WebCalendarDescription.$t = markType(WebCalendarDescription, 'WebCalendarDescription', WebCalendarBaseDescription.$); return WebCalendarDescription; })();