UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

168 lines (167 loc) 5 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 { constructor() { super(); this.g4 = false; this.hg = null; this.he = null; this.hm = null; this.hd = null; this.ha = 0; this.gz = null; this.gy = null; this.g5 = false; this.g2 = null; this.hf = null; this.hh = null; this.hl = null; this.g6 = false; this.hc = null; this.hk = null; this.hj = null; this.hi = null; } get_type() { return "WebGrid"; } get groupsExpanded() { return this.g4; } set groupsExpanded(a) { this.g4 = a; this.j("GroupsExpanded"); } get dropAreaTemplateRef() { return this.hg; } set dropAreaTemplateRef(a) { this.hg = a; this.j("DropAreaTemplateRef"); } get detailTemplateRef() { return this.he; } set detailTemplateRef(a) { this.he = a; this.j("DetailTemplateRef"); } get id() { return this.hm; } set id(a) { this.hm = a; this.j("Id"); } get dataRef() { return this.hd; } set dataRef(a) { this.hd = a; this.j("DataRef"); } get totalItemCount() { return this.ha; } set totalItemCount(a) { this.ha = a; this.j("TotalItemCount"); } get groupingExpressions() { return this.gz; } set groupingExpressions(a) { this.gz = a; this.j("GroupingExpressions"); } get groupingExpansionState() { return this.gy; } set groupingExpansionState(a) { this.gy = a; this.j("GroupingExpansionState"); } get hideGroupedColumns() { return this.g5; } set hideGroupedColumns(a) { this.g5 = a; this.j("HideGroupedColumns"); } get groupStrategy() { return this.g2; } set groupStrategy(a) { this.g2 = a; this.j("GroupStrategy"); } get dropAreaMessage() { return this.hf; } set dropAreaMessage(a) { this.hf = a; this.j("DropAreaMessage"); } get groupByRowSelectorTemplateRef() { return this.hh; } set groupByRowSelectorTemplateRef(a) { this.hh = a; this.j("GroupByRowSelectorTemplateRef"); } get groupRowTemplateRef() { return this.hl; } set groupRowTemplateRef(a) { this.hl = a; this.j("GroupRowTemplateRef"); } get showGroupArea() { return this.g6; } set showGroupArea(a) { this.g6 = a; this.j("ShowGroupArea"); } get dataPreLoadRef() { return this.hc; } set dataPreLoadRef(a) { this.hc = a; this.j("DataPreLoadRef"); } get groupingExpressionsChangeRef() { return this.hk; } set groupingExpressionsChangeRef(a) { this.hk = a; this.j("GroupingExpressionsChangeRef"); } get groupingExpansionStateChangeRef() { return this.hj; } set groupingExpansionStateChangeRef(a) { this.hj = a; this.j("GroupingExpansionStateChangeRef"); } get groupingDoneRef() { return this.hi; } set groupingDoneRef(a) { this.hi = a; this.j("GroupingDoneRef"); } } WebGridDescription.$t = markType(WebGridDescription, 'WebGridDescription', WebGridBaseDirectiveDescription.$); return WebGridDescription; })();