igniteui-react-grids
Version:
Ignite UI React grid components.
62 lines (61 loc) • 2.05 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 "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
import { GroupingExpression } from "./GroupingExpression";
import { GroupByExpandState } from "./GroupByExpandState";
/**
* @hidden
*/
export let GroupingState = /*@__PURE__*/ (() => {
class GroupingState extends Base {
constructor() {
super(...arguments);
this.c = new WCNativeHelper();
this.f = null;
}
get d() {
return this.c;
}
get nativeElement() {
return this.f;
}
set nativeElement(a) {
this.f = a;
this.c.o = this.f;
}
setNativeElement(a) {
this.nativeElement = a;
}
get b() {
let ret_ = this.d.m("expressions", (a) => new GroupingExpression());
return ret_;
}
set b(a) {
let value_ = a;
this.d.w("expressions", value_);
}
get a() {
let ret_ = this.d.m("expansion", (a) => new GroupByExpandState());
return ret_;
}
set a(a) {
let value_ = a;
this.d.w("expansion", value_);
}
get e() {
let ret_ = this.d.n("defaultExpanded");
return ret_;
}
set e(a) {
let value_ = a;
this.d.w("defaultExpanded", value_);
}
}
GroupingState.$t = /*@__PURE__*/ markType(GroupingState, 'GroupingState');
return GroupingState;
})();