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