igniteui-react-grids
Version:
Ignite UI React grid components.
44 lines (43 loc) • 1.74 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 { BaseEventArgsDetail } from "./BaseEventArgsDetail";
import { SortingExpression } from "./SortingExpression";
import { markType } from "igniteui-react-core";
import { Column } from "./Column";
/**
* @hidden
*/
export let GroupingDoneEventArgsDetail = /*@__PURE__*/ (() => {
class GroupingDoneEventArgsDetail extends BaseEventArgsDetail {
get g() {
let ret_ = this.b.m("expressions", (a) => new SortingExpression());
return ret_;
}
set g(a) {
let value_ = a;
this.b.w("expressions", value_);
}
get h() {
let ret_ = this.b.m("groupedColumns", (a) => new Column());
return ret_;
}
set h(a) {
let value_ = a;
this.b.w("groupedColumns", value_);
}
get i() {
let ret_ = this.b.m("ungroupedColumns", (a) => new Column());
return ret_;
}
set i(a) {
let value_ = a;
this.b.w("ungroupedColumns", value_);
}
}
GroupingDoneEventArgsDetail.$t = /*@__PURE__*/ markType(GroupingDoneEventArgsDetail, 'GroupingDoneEventArgsDetail', BaseEventArgsDetail.$);
return GroupingDoneEventArgsDetail;
})();