igniteui-react-grids
Version:
Ignite UI React grid components.
70 lines (69 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, markType } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
import { SortingExpression } from "./SortingExpression";
import { GroupingExpression } from "./GroupingExpression";
/**
* @hidden
*/
export let SortingEventArgsDetail = /*@__PURE__*/ (() => {
class SortingEventArgsDetail 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("sortingExpressions", (a) => new SortingExpression());
return ret_;
}
set b(a) {
let value_ = a;
this.d.w("sortingExpressions", value_);
}
get a() {
let ret_ = this.d.m("groupingExpressions", (a) => new GroupingExpression());
return ret_;
}
set a(a) {
let value_ = a;
this.d.w("groupingExpressions", value_);
}
get h() {
let ret_ = this.d.n("owner");
return ret_;
}
set h(a) {
let value_ = a;
this.d.w("owner", value_);
}
get e() {
let ret_ = this.d.n("cancel");
return ret_;
}
set e(a) {
let value_ = a;
this.d.w("cancel", value_);
}
}
SortingEventArgsDetail.$t = /*@__PURE__*/ markType(SortingEventArgsDetail, 'SortingEventArgsDetail');
return SortingEventArgsDetail;
})();