UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

170 lines (169 loc) 5.34 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 { __extends } from "tslib"; import { WebCalendarBaseDescription } from "./WebCalendarBaseDescription"; import { markType } from "./type"; /** * @hidden */ var WebCalendarDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebCalendarDescription, _super); function WebCalendarDescription() { var _this = _super.call(this) || this; _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; return _this; } WebCalendarDescription.prototype.get_type = function () { return "WebCalendar"; }; Object.defineProperty(WebCalendarDescription.prototype, "value", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("Value"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "values", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("Values"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "activeDate", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("ActiveDate"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "hideOutsideDays", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.j("HideOutsideDays"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "hideHeader", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("HideHeader"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "headerOrientation", { get: function () { return this.ap; }, set: function (a) { this.ap = a; this.j("HeaderOrientation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "orientation", { get: function () { return this.aq; }, set: function (a) { this.aq = a; this.j("Orientation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "visibleMonths", { get: function () { return this.al; }, set: function (a) { this.al = a; this.j("VisibleMonths"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "activeView", { get: function () { return this.an; }, set: function (a) { this.an = a; this.j("ActiveView"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "formatOptions", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("FormatOptions"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "resourceStrings", { get: function () { return this.ab; }, set: function (a) { this.ab = a; this.j("ResourceStrings"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCalendarDescription.prototype, "changeRef", { get: function () { return this.ao; }, set: function (a) { this.ao = a; this.j("ChangeRef"); }, enumerable: false, configurable: true }); WebCalendarDescription.$t = markType(WebCalendarDescription, 'WebCalendarDescription', WebCalendarBaseDescription.$); return WebCalendarDescription; }(WebCalendarBaseDescription)); export { WebCalendarDescription };