UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

235 lines (234 loc) 6.56 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let CalendarDescription = /*@__PURE__*/ (() => { class CalendarDescription extends Description { constructor() { super(); this.r = new Date(); this.q = new Date(); this.p = new Date(); this.o = new Date(); this.ac = null; this.z = null; this.y = null; this.al = null; this.an = null; this.af = null; this.ak = null; this.ap = null; this.am = null; this.ag = null; this.ab = null; this.aa = null; this.k = false; this.ah = null; this.w = 0; this.ai = null; this.aj = null; this.ad = null; this.ae = null; this.l = false; this.ao = null; this.aq = null; } get_type() { return "Calendar"; } get type() { return this.get_type(); } get value() { return this.r; } set value(a) { this.r = a; this.j("Value"); } get today() { return this.q; } set today(a) { this.q = a; this.j("Today"); } get minDate() { return this.p; } set minDate(a) { this.p = a; this.j("MinDate"); } get maxDate() { return this.o; } set maxDate(a) { this.o = a; this.j("MaxDate"); } get density() { return this.ac; } set density(a) { this.ac = a; this.j("Density"); } get baseTheme() { return this.z; } set baseTheme(a) { this.z = a; this.j("BaseTheme"); } get backgroundColor() { return this.y; } set backgroundColor(a) { this.y = a; this.j("BackgroundColor"); } get selectedDateBackgroundColor() { return this.al; } set selectedDateBackgroundColor(a) { this.al = a; this.j("SelectedDateBackgroundColor"); } get selectedFocusDateBackgroundColor() { return this.an; } set selectedFocusDateBackgroundColor(a) { this.an = a; this.j("SelectedFocusDateBackgroundColor"); } get focusDateBackgroundColor() { return this.af; } set focusDateBackgroundColor(a) { this.af = a; this.j("FocusDateBackgroundColor"); } get hoverBackgroundColor() { return this.ak; } set hoverBackgroundColor(a) { this.ak = a; this.j("HoverBackgroundColor"); } get textColor() { return this.ap; } set textColor(a) { this.ap = a; this.j("TextColor"); } get selectedDateTextColor() { return this.am; } set selectedDateTextColor(a) { this.am = a; this.j("SelectedDateTextColor"); } get focusDateTextColor() { return this.ag; } set focusDateTextColor(a) { this.ag = a; this.j("FocusDateTextColor"); } get currentDateTextColor() { return this.ab; } set currentDateTextColor(a) { this.ab = a; this.j("CurrentDateTextColor"); } get currentDateBorderColor() { return this.aa; } set currentDateBorderColor(a) { this.aa = a; this.j("CurrentDateBorderColor"); } get showTodayButton() { return this.k; } set showTodayButton(a) { this.k = a; this.j("ShowTodayButton"); } get fontFamily() { return this.ah; } set fontFamily(a) { this.ah = a; this.j("FontFamily"); } get fontSize() { return this.w; } set fontSize(a) { this.w = a; this.j("FontSize"); } get fontStyle() { return this.ai; } set fontStyle(a) { this.ai = a; this.j("FontStyle"); } get fontWeight() { return this.aj; } set fontWeight(a) { this.aj = a; this.j("FontWeight"); } get firstDayOfWeek() { return this.ad; } set firstDayOfWeek(a) { this.ad = a; this.j("FirstDayOfWeek"); } get firstWeekOfYear() { return this.ae; } set firstWeekOfYear(a) { this.ae = a; this.j("FirstWeekOfYear"); } get showWeekNumbers() { return this.l; } set showWeekNumbers(a) { this.l = a; this.j("ShowWeekNumbers"); } get selectedValueChangedRef() { return this.ao; } set selectedValueChangedRef(a) { this.ao = a; this.j("SelectedValueChangedRef"); } get valueChangeRef() { return this.aq; } set valueChangeRef(a) { this.aq = a; this.j("ValueChangeRef"); } } CalendarDescription.$t = markType(CalendarDescription, 'CalendarDescription', Description.$); return CalendarDescription; })();