igniteui-react-grids
Version:
Ignite UI React grid components.
78 lines (77 loc) • 2.43 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 { BaseElement } from "igniteui-react";
import { WCNativeHelper } from "igniteui-react";
import { markType } from "igniteui-react-core";
import { PivotGrid } from "./PivotGrid";
/**
* @hidden
*/
export let PivotDataSelector = /*@__PURE__*/ (() => {
class PivotDataSelector extends BaseElement {
constructor() {
super(...arguments);
this.b = new WCNativeHelper();
this.h = null;
}
get c() {
return this.b;
}
get nativeElement() {
return this.h;
}
set nativeElement(a) {
this.h = a;
this.b.o = this.h;
}
setNativeElement(a) {
this.nativeElement = a;
}
get d() {
let ret_ = this.c.n("columnsExpanded");
return ret_;
}
set d(a) {
let value_ = a;
this.c.w("columnsExpanded", value_);
}
get f() {
let ret_ = this.c.n("rowsExpanded");
return ret_;
}
set f(a) {
let value_ = a;
this.c.w("rowsExpanded", value_);
}
get e() {
let ret_ = this.c.n("filtersExpanded");
return ret_;
}
set e(a) {
let value_ = a;
this.c.w("filtersExpanded", value_);
}
get g() {
let ret_ = this.c.n("valuesExpanded");
return ret_;
}
set g(a) {
let value_ = a;
this.c.w("valuesExpanded", value_);
}
get a() {
let ret_ = this.c.m("grid", (a) => new PivotGrid());
return ret_;
}
set a(a) {
let value_ = a;
this.c.w("grid", value_);
}
}
PivotDataSelector.$t = /*@__PURE__*/ markType(PivotDataSelector, 'PivotDataSelector', BaseElement.$);
return PivotDataSelector;
})();