igniteui-react-core
Version:
Ignite UI React Core.
114 lines (113 loc) • 3.82 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 { Base, markType } from "./type";
/**
* @hidden
*/
export let DataSeriesToDescriptionCustomization = /*@__PURE__*/ (() => {
class DataSeriesToDescriptionCustomization extends Base {
constructor() {
super();
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;
}
get owner() {
return this._owner;
}
set owner(a) {
this._owner = a;
}
get order() {
return this._order;
}
set order(a) {
this._order = a;
}
get matchType() {
return this._matchType;
}
set matchType(a) {
this._matchType = a;
}
get propertyName() {
return this._propertyName;
}
set propertyName(a) {
this._propertyName = a;
}
get propertyValue() {
if (this.j == null && this.e != null) {
this.j = this.e(this.owner, this.pendingDescription);
}
return this.j;
}
set propertyValue(a) {
this.j = a;
}
get pendingDescription() {
return this.i;
}
set pendingDescription(a) {
let b = this.i;
this.i = a;
if (this.e != null && this.i != null && this.i != b) {
this.j = null;
}
}
get isCollectionInsertionAtEnd() {
return this._isCollectionInsertionAtEnd;
}
set isCollectionInsertionAtEnd(a) {
this._isCollectionInsertionAtEnd = a;
}
get isCollectionInsertionAtStart() {
return this._isCollectionInsertionAtStart;
}
set isCollectionInsertionAtStart(a) {
this._isCollectionInsertionAtStart = a;
}
get isCollectionInsertionAtIndex() {
return this._isCollectionInsertionAtIndex;
}
set isCollectionInsertionAtIndex(a) {
this._isCollectionInsertionAtIndex = a;
}
get isCollectionRemovaltIndex() {
return this._isCollectionRemovaltIndex;
}
set isCollectionRemovaltIndex(a) {
this._isCollectionRemovaltIndex = a;
}
get collectionIndex() {
return this._collectionIndex;
}
set collectionIndex(a) {
this._collectionIndex = a;
}
get matchParentIndex() {
return this._matchParentIndex;
}
set matchParentIndex(a) {
this._matchParentIndex = a;
}
}
DataSeriesToDescriptionCustomization.$t = /*@__PURE__*/ markType(DataSeriesToDescriptionCustomization, 'DataSeriesToDescriptionCustomization');
return DataSeriesToDescriptionCustomization;
})();