igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
189 lines (188 loc) • 6.13 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var TreemapNodePointerEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TreemapNodePointerEventArgsDescription, _super);
function TreemapNodePointerEventArgsDescription() {
var _this = _super.call(this) || this;
_this.v = 0;
_this.u = 0;
_this.aa = null;
_this.ab = null;
_this.ad = null;
_this.k = null;
_this.o = false;
_this.m = false;
_this.n = false;
_this.ac = null;
_this.t = 0;
_this.ae = null;
_this.s = 0;
return _this;
}
TreemapNodePointerEventArgsDescription.prototype.get_type = function () {
return "TreemapNodePointerEventArgs";
};
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "value", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "sum", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("Sum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "customValueRef", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("CustomValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "itemRef", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("ItemRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "parentItemRef", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("ParentItemRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "position", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Position");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "isRightButton", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("IsRightButton");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "isHandled", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("IsHandled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "isOverHeader", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("IsOverHeader");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "label", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "parentValue", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("ParentValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "parentLabel", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("ParentLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodePointerEventArgsDescription.prototype, "parentSum", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ParentSum");
},
enumerable: false,
configurable: true
});
TreemapNodePointerEventArgsDescription.$t = markType(TreemapNodePointerEventArgsDescription, 'TreemapNodePointerEventArgsDescription', Description.$);
return TreemapNodePointerEventArgsDescription;
}(Description));
export { TreemapNodePointerEventArgsDescription };