UNPKG

igniteui-react-core

Version:
168 lines (167 loc) 4.85 kB
/* 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.gz = false; this.hb = null; this.g9 = null; this.hh = null; this.g8 = null; this.g5 = 0; this.gu = null; this.gt = null; this.g0 = false; this.gx = null; this.ha = null; this.hc = null; this.hg = null; this.g1 = false; this.g7 = null; this.hf = null; this.he = null; this.hd = null; } get groupsExpanded() { return this.gz; } set groupsExpanded(a) { this.gz = a; this.g("GroupsExpanded"); } get dropAreaTemplateRef() { return this.hb; } set dropAreaTemplateRef(a) { this.hb = a; this.g("DropAreaTemplateRef"); } get detailTemplateRef() { return this.g9; } set detailTemplateRef(a) { this.g9 = a; this.g("DetailTemplateRef"); } get id() { return this.hh; } set id(a) { this.hh = a; this.g("Id"); } get dataRef() { return this.g8; } set dataRef(a) { this.g8 = a; this.g("DataRef"); } get totalItemCount() { return this.g5; } set totalItemCount(a) { this.g5 = a; this.g("TotalItemCount"); } get groupingExpressions() { return this.gu; } set groupingExpressions(a) { this.gu = a; this.g("GroupingExpressions"); } get groupingExpansionState() { return this.gt; } set groupingExpansionState(a) { this.gt = a; this.g("GroupingExpansionState"); } get hideGroupedColumns() { return this.g0; } set hideGroupedColumns(a) { this.g0 = a; this.g("HideGroupedColumns"); } get groupStrategy() { return this.gx; } set groupStrategy(a) { this.gx = a; this.g("GroupStrategy"); } get dropAreaMessage() { return this.ha; } set dropAreaMessage(a) { this.ha = a; this.g("DropAreaMessage"); } get groupByRowSelectorTemplateRef() { return this.hc; } set groupByRowSelectorTemplateRef(a) { this.hc = a; this.g("GroupByRowSelectorTemplateRef"); } get groupRowTemplateRef() { return this.hg; } set groupRowTemplateRef(a) { this.hg = a; this.g("GroupRowTemplateRef"); } get showGroupArea() { return this.g1; } set showGroupArea(a) { this.g1 = a; this.g("ShowGroupArea"); } get dataPreLoadRef() { return this.g7; } set dataPreLoadRef(a) { this.g7 = a; this.g("DataPreLoadRef"); } get groupingExpressionsChangeRef() { return this.hf; } set groupingExpressionsChangeRef(a) { this.hf = a; this.g("GroupingExpressionsChangeRef"); } get groupingExpansionStateChangeRef() { return this.he; } set groupingExpansionStateChangeRef(a) { this.he = a; this.g("GroupingExpansionStateChangeRef"); } get groupingDoneRef() { return this.hd; } set groupingDoneRef(a) { this.hd = a; this.g("GroupingDoneRef"); } } WebGridDescription.$t = /*@__PURE__*/ markType(WebGridDescription, 'WebGridDescription', WebGridBaseDirectiveDescription.$); return WebGridDescription; })();