UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

237 lines (236 loc) 7.12 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebTileDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebTileDescription, _super); function WebTileDescription() { var _this = _super.call(this) || this; _this.s = 0; _this.v = 0; _this.t = 0; _this.w = 0; _this.n = false; _this.m = false; _this.k = false; _this.l = false; _this.u = 0; _this.af = null; _this.ag = null; _this.ae = null; _this.ad = null; _this.ac = null; _this.aj = null; _this.ai = null; _this.ah = null; return _this; } WebTileDescription.prototype.get_type = function () { return "WebTile"; }; Object.defineProperty(WebTileDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "colSpan", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ColSpan"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "rowSpan", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("RowSpan"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "colStart", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("ColStart"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "rowStart", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("RowStart"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "maximized", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("Maximized"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "disableResize", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("DisableResize"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "disableFullscreen", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("DisableFullscreen"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "disableMaximize", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("DisableMaximize"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "position", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("Position"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileFullscreenRef", { get: function () { return this.af; }, set: function (a) { this.af = a; this.j("TileFullscreenRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileMaximizeRef", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.j("TileMaximizeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileDragStartRef", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.j("TileDragStartRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileDragEndRef", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("TileDragEndRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileDragCancelRef", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.j("TileDragCancelRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileResizeStartRef", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("TileResizeStartRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileResizeEndRef", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("TileResizeEndRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTileDescription.prototype, "tileResizeCancelRef", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("TileResizeCancelRef"); }, enumerable: false, configurable: true }); WebTileDescription.$t = markType(WebTileDescription, 'WebTileDescription', Description.$); return WebTileDescription; }(Description)); export { WebTileDescription };