igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.28 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebCalendarBaseDescription = /*@__PURE__*/ (() => {
class WebCalendarBaseDescription extends Description {
constructor() {
super();
this.m = null;
this.j = false;
this.n = null;
this.l = null;
this.f = null;
this.g = null;
}
get_type() {
return "WebCalendarBase";
}
get type() {
return this.get_type();
}
get selection() {
return this.m;
}
set selection(a) {
this.m = a;
this.e("Selection");
}
get showWeekNumbers() {
return this.j;
}
set showWeekNumbers(a) {
this.j = a;
this.e("ShowWeekNumbers");
}
get weekStart() {
return this.n;
}
set weekStart(a) {
this.n = a;
this.e("WeekStart");
}
get locale() {
return this.l;
}
set locale(a) {
this.l = a;
this.e("Locale");
}
get disabledDates() {
return this.f;
}
set disabledDates(a) {
this.f = a;
this.e("DisabledDates");
}
get specialDates() {
return this.g;
}
set specialDates(a) {
this.g = a;
this.e("SpecialDates");
}
}
WebCalendarBaseDescription.$t = markType(WebCalendarBaseDescription, 'WebCalendarBaseDescription', Description.$);
return WebCalendarBaseDescription;
})();