igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
62 lines (61 loc) • 2.35 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 WebDockPaneActionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebDockPaneActionDescription, _super);
function WebDockPaneActionDescription() {
var _this = _super.call(this) || this;
_this.k = null;
_this.g = null;
_this.i = null;
return _this;
}
WebDockPaneActionDescription.prototype.get_type = function () {
return "WebDockPaneAction";
};
Object.defineProperty(WebDockPaneActionDescription.prototype, "actionType", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.e("ActionType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDockPaneActionDescription.prototype, "dockingIndicator", {
get: function () {
return this.g;
},
set: function (a) {
this.g = a;
this.e("DockingIndicator");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDockPaneActionDescription.prototype, "targetPane", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.e("TargetPane");
},
enumerable: false,
configurable: true
});
WebDockPaneActionDescription.$t = markType(WebDockPaneActionDescription, 'WebDockPaneActionDescription', WebPaneDragActionDescription.$);
return WebDockPaneActionDescription;
}(WebPaneDragActionDescription));
export { WebDockPaneActionDescription };