UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

76 lines (75 loc) 2.81 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 { WebPaneDragActionDescription } from "./WebPaneDragActionDescription"; import { markType } from "./type"; /** * @hidden */ var WebFloatPaneActionDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebFloatPaneActionDescription, _super); function WebFloatPaneActionDescription() { var _this = _super.call(this) || this; _this.v = null; _this.n = null; _this.r = 0; _this.q = 0; return _this; } WebFloatPaneActionDescription.prototype.get_type = function () { return "WebFloatPaneAction"; }; Object.defineProperty(WebFloatPaneActionDescription.prototype, "actionType", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("ActionType"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFloatPaneActionDescription.prototype, "location", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("Location"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFloatPaneActionDescription.prototype, "width", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("Width"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFloatPaneActionDescription.prototype, "height", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("Height"); }, enumerable: false, configurable: true }); WebFloatPaneActionDescription.$t = markType(WebFloatPaneActionDescription, 'WebFloatPaneActionDescription', WebPaneDragActionDescription.$); WebFloatPaneActionDescription.__marshalByValue1 = true; WebFloatPaneActionDescription.__marshalByValueAlias1 = "FloatPaneAction"; return WebFloatPaneActionDescription; }(WebPaneDragActionDescription)); export { WebFloatPaneActionDescription };