UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.44 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 WebMoveTabActionDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebMoveTabActionDescription, _super); function WebMoveTabActionDescription() { var _this = _super.call(this) || this; _this.t = null; _this.p = 0; _this.o = 0; return _this; } WebMoveTabActionDescription.prototype.get_type = function () { return "WebMoveTabAction"; }; Object.defineProperty(WebMoveTabActionDescription.prototype, "actionType", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("ActionType"); }, enumerable: false, configurable: true }); Object.defineProperty(WebMoveTabActionDescription.prototype, "oldIndex", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("OldIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(WebMoveTabActionDescription.prototype, "newIndex", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("NewIndex"); }, enumerable: false, configurable: true }); WebMoveTabActionDescription.$t = markType(WebMoveTabActionDescription, 'WebMoveTabActionDescription', WebPaneDragActionDescription.$); WebMoveTabActionDescription.__marshalByValue1 = true; WebMoveTabActionDescription.__marshalByValueAlias1 = "MoveTabAction"; return WebMoveTabActionDescription; }(WebPaneDragActionDescription)); export { WebMoveTabActionDescription };