igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.61 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 { __extends } from "tslib";
import { WebPaneDragActionDescription } from "./WebPaneDragActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebMoveFloatingPaneActionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebMoveFloatingPaneActionDescription, _super);
function WebMoveFloatingPaneActionDescription() {
var _this = _super.call(this) || this;
_this.t = null;
_this.o = null;
_this.n = null;
return _this;
}
WebMoveFloatingPaneActionDescription.prototype.get_type = function () {
return "WebMoveFloatingPaneAction";
};
Object.defineProperty(WebMoveFloatingPaneActionDescription.prototype, "actionType", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("ActionType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebMoveFloatingPaneActionDescription.prototype, "oldLocation", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("OldLocation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebMoveFloatingPaneActionDescription.prototype, "newLocation", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("NewLocation");
},
enumerable: false,
configurable: true
});
WebMoveFloatingPaneActionDescription.$t = markType(WebMoveFloatingPaneActionDescription, 'WebMoveFloatingPaneActionDescription', WebPaneDragActionDescription.$);
WebMoveFloatingPaneActionDescription.__marshalByValue1 = true;
WebMoveFloatingPaneActionDescription.__marshalByValueAlias1 = "MoveFloatingPaneAction";
return WebMoveFloatingPaneActionDescription;
}(WebPaneDragActionDescription));
export { WebMoveFloatingPaneActionDescription };