igniteui-react-core
Version:
Ignite UI React Core.
152 lines (151 loc) • 4.35 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 { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebGridDescription = /*@__PURE__*/ (() => {
class WebGridDescription extends WebGridBaseDirectiveDescription {
get_type() {
return "WebGrid";
}
constructor() {
super();
this.gv = false;
this.g7 = null;
this.g5 = null;
this.hb = null;
this.g4 = null;
this.g1 = 0;
this.gq = null;
this.gp = null;
this.gw = false;
this.gt = null;
this.g6 = null;
this.g8 = null;
this.ha = null;
this.gx = false;
this.g3 = null;
this.g9 = null;
}
get groupsExpanded() {
return this.gv;
}
set groupsExpanded(a) {
this.gv = a;
this.g("GroupsExpanded");
}
get dropAreaTemplateRef() {
return this.g7;
}
set dropAreaTemplateRef(a) {
this.g7 = a;
this.g("DropAreaTemplateRef");
}
get detailTemplateRef() {
return this.g5;
}
set detailTemplateRef(a) {
this.g5 = a;
this.g("DetailTemplateRef");
}
get id() {
return this.hb;
}
set id(a) {
this.hb = a;
this.g("Id");
}
get dataRef() {
return this.g4;
}
set dataRef(a) {
this.g4 = a;
this.g("DataRef");
}
get totalItemCount() {
return this.g1;
}
set totalItemCount(a) {
this.g1 = a;
this.g("TotalItemCount");
}
get groupingExpressions() {
return this.gq;
}
set groupingExpressions(a) {
this.gq = a;
this.g("GroupingExpressions");
}
get groupingExpansionState() {
return this.gp;
}
set groupingExpansionState(a) {
this.gp = a;
this.g("GroupingExpansionState");
}
get hideGroupedColumns() {
return this.gw;
}
set hideGroupedColumns(a) {
this.gw = a;
this.g("HideGroupedColumns");
}
get groupStrategy() {
return this.gt;
}
set groupStrategy(a) {
this.gt = a;
this.g("GroupStrategy");
}
get dropAreaMessage() {
return this.g6;
}
set dropAreaMessage(a) {
this.g6 = a;
this.g("DropAreaMessage");
}
get groupByRowSelectorTemplateRef() {
return this.g8;
}
set groupByRowSelectorTemplateRef(a) {
this.g8 = a;
this.g("GroupByRowSelectorTemplateRef");
}
get groupRowTemplateRef() {
return this.ha;
}
set groupRowTemplateRef(a) {
this.ha = a;
this.g("GroupRowTemplateRef");
}
get showGroupArea() {
return this.gx;
}
set showGroupArea(a) {
this.gx = a;
this.g("ShowGroupArea");
}
get dataPreLoadRef() {
return this.g3;
}
set dataPreLoadRef(a) {
this.g3 = a;
this.g("DataPreLoadRef");
}
get groupingDoneRef() {
return this.g9;
}
set groupingDoneRef(a) {
this.g9 = a;
this.g("GroupingDoneRef");
}
}
WebGridDescription.$t = /*@__PURE__*/ markType(WebGridDescription, 'WebGridDescription', WebGridBaseDirectiveDescription.$);
return WebGridDescription;
})();