igniteui-react-core
Version:
Ignite UI React Core.
164 lines (163 loc) • 5.7 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 { Base, markType } from "./type";
/**
* @hidden
*/
var DataSeriesToDescriptionCustomization = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataSeriesToDescriptionCustomization, _super);
function DataSeriesToDescriptionCustomization() {
var _this = _super.call(this) || this;
_this._owner = null;
_this._order = 0;
_this._matchType = null;
_this._propertyName = null;
_this.j = null;
_this.i = null;
_this._isCollectionInsertionAtEnd = false;
_this._isCollectionInsertionAtStart = false;
_this._isCollectionInsertionAtIndex = false;
_this._isCollectionRemovaltIndex = false;
_this._collectionIndex = 0;
_this._matchParentIndex = 0;
_this.e = null;
_this.order = -1;
_this.matchParentIndex = -1;
return _this;
}
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "owner", {
get: function () {
return this._owner;
},
set: function (a) {
this._owner = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "order", {
get: function () {
return this._order;
},
set: function (a) {
this._order = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "matchType", {
get: function () {
return this._matchType;
},
set: function (a) {
this._matchType = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "propertyName", {
get: function () {
return this._propertyName;
},
set: function (a) {
this._propertyName = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "propertyValue", {
get: function () {
if (this.j == null && this.e != null) {
this.j = this.e(this.owner, this.pendingDescription);
}
return this.j;
},
set: function (a) {
this.j = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "pendingDescription", {
get: function () {
return this.i;
},
set: function (a) {
var b = this.i;
this.i = a;
if (this.e != null && this.i != null && this.i != b) {
this.j = null;
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "isCollectionInsertionAtEnd", {
get: function () {
return this._isCollectionInsertionAtEnd;
},
set: function (a) {
this._isCollectionInsertionAtEnd = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "isCollectionInsertionAtStart", {
get: function () {
return this._isCollectionInsertionAtStart;
},
set: function (a) {
this._isCollectionInsertionAtStart = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "isCollectionInsertionAtIndex", {
get: function () {
return this._isCollectionInsertionAtIndex;
},
set: function (a) {
this._isCollectionInsertionAtIndex = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "isCollectionRemovaltIndex", {
get: function () {
return this._isCollectionRemovaltIndex;
},
set: function (a) {
this._isCollectionRemovaltIndex = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "collectionIndex", {
get: function () {
return this._collectionIndex;
},
set: function (a) {
this._collectionIndex = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataSeriesToDescriptionCustomization.prototype, "matchParentIndex", {
get: function () {
return this._matchParentIndex;
},
set: function (a) {
this._matchParentIndex = a;
},
enumerable: false,
configurable: true
});
DataSeriesToDescriptionCustomization.$t = markType(DataSeriesToDescriptionCustomization, 'DataSeriesToDescriptionCustomization');
return DataSeriesToDescriptionCustomization;
}(Base));
export { DataSeriesToDescriptionCustomization };