UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

235 lines (234 loc) 6.54 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.m = new Date(); this.l = new Date(); this.k = new Date(); this.j = new Date(); this.x = null; this.u = null; this.t = null; this.ag = null; this.ai = null; this.aa = null; this.af = null; this.ak = null; this.ah = null; this.ab = null; this.w = null; this.v = null; this.f = false; this.ac = null; this.r = 0; this.ad = null; this.ae = null; this.y = null; this.z = null; this.g = false; this.aj = null; this.al = null; } get_type() { return "Calendar"; } get type() { return this.get_type(); } get value() { return this.m; } set value(a) { this.m = a; this.e("Value"); } get today() { return this.l; } set today(a) { this.l = a; this.e("Today"); } get minDate() { return this.k; } set minDate(a) { this.k = a; this.e("MinDate"); } get maxDate() { return this.j; } set maxDate(a) { this.j = a; this.e("MaxDate"); } get density() { return this.x; } set density(a) { this.x = a; this.e("Density"); } get baseTheme() { return this.u; } set baseTheme(a) { this.u = a; this.e("BaseTheme"); } get backgroundColor() { return this.t; } set backgroundColor(a) { this.t = a; this.e("BackgroundColor"); } get selectedDateBackgroundColor() { return this.ag; } set selectedDateBackgroundColor(a) { this.ag = a; this.e("SelectedDateBackgroundColor"); } get selectedFocusDateBackgroundColor() { return this.ai; } set selectedFocusDateBackgroundColor(a) { this.ai = a; this.e("SelectedFocusDateBackgroundColor"); } get focusDateBackgroundColor() { return this.aa; } set focusDateBackgroundColor(a) { this.aa = a; this.e("FocusDateBackgroundColor"); } get hoverBackgroundColor() { return this.af; } set hoverBackgroundColor(a) { this.af = a; this.e("HoverBackgroundColor"); } get textColor() { return this.ak; } set textColor(a) { this.ak = a; this.e("TextColor"); } get selectedDateTextColor() { return this.ah; } set selectedDateTextColor(a) { this.ah = a; this.e("SelectedDateTextColor"); } get focusDateTextColor() { return this.ab; } set focusDateTextColor(a) { this.ab = a; this.e("FocusDateTextColor"); } get currentDateTextColor() { return this.w; } set currentDateTextColor(a) { this.w = a; this.e("CurrentDateTextColor"); } get currentDateBorderColor() { return this.v; } set currentDateBorderColor(a) { this.v = a; this.e("CurrentDateBorderColor"); } get showTodayButton() { return this.f; } set showTodayButton(a) { this.f = a; this.e("ShowTodayButton"); } get fontFamily() { return this.ac; } set fontFamily(a) { this.ac = a; this.e("FontFamily"); } get fontSize() { return this.r; } set fontSize(a) { this.r = a; this.e("FontSize"); } get fontStyle() { return this.ad; } set fontStyle(a) { this.ad = a; this.e("FontStyle"); } get fontWeight() { return this.ae; } set fontWeight(a) { this.ae = a; this.e("FontWeight"); } get firstDayOfWeek() { return this.y; } set firstDayOfWeek(a) { this.y = a; this.e("FirstDayOfWeek"); } get firstWeekOfYear() { return this.z; } set firstWeekOfYear(a) { this.z = a; this.e("FirstWeekOfYear"); } get showWeekNumbers() { return this.g; } set showWeekNumbers(a) { this.g = a; this.e("ShowWeekNumbers"); } get selectedValueChangedRef() { return this.aj; } set selectedValueChangedRef(a) { this.aj = a; this.e("SelectedValueChangedRef"); } get valueChangeRef() { return this.al; } set valueChangeRef(a) { this.al = a; this.e("ValueChangeRef"); } } CalendarDescription.$t = markType(CalendarDescription, 'CalendarDescription', Description.$); return CalendarDescription; })();