igniteui-react-grids
Version:
Ignite UI React grid components.
59 lines (58 loc) • 2.31 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, enumGetBox, EnumUtil, markType } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
import { PivotDimension } from "./PivotDimension";
import { PivotDimensionType_$type } from "./PivotDimensionType";
/**
* @hidden
*/
export let DimensionsChangeDetail = /*@__PURE__*/ (() => {
class DimensionsChangeDetail extends Base {
constructor() {
super(...arguments);
this.c = new WCNativeHelper();
this.e = null;
}
get d() {
return this.c;
}
get nativeElement() {
return this.e;
}
set nativeElement(a) {
this.e = a;
this.c.o = this.e;
}
setNativeElement(a) {
this.nativeElement = a;
}
get a() {
let ret_ = this.d.m("dimensions", (a) => new PivotDimension());
return ret_;
}
set a(a) {
let value_ = a;
this.d.w("dimensions", value_);
}
get b() {
let ret_ = this.d.n("dimensionCollectionType");
if ((ret_ === undefined && this.___rawMode)) {
return undefined;
}
ret_ = enumGetBox(PivotDimensionType_$type, EnumUtil.getEnumValue(PivotDimensionType_$type, this.d.f(PivotDimensionType_$type, ret_)));
return EnumUtil.getEnumValue(PivotDimensionType_$type, ret_);
}
set b(a) {
let value_ = enumGetBox(PivotDimensionType_$type, a);
value_ = this.d.f(PivotDimensionType_$type, value_);
this.d.w("dimensionCollectionType", value_);
}
}
DimensionsChangeDetail.$t = /*@__PURE__*/ markType(DimensionsChangeDetail, 'DimensionsChangeDetail');
return DimensionsChangeDetail;
})();