igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
176 lines (175 loc) • 5.14 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 {
constructor() {
super();
this.hd = false;
this.hr = null;
this.hp = null;
this.hv = null;
this.g7 = null;
this.ho = null;
this.hl = null;
this.hj = 0;
this.g6 = null;
this.g5 = null;
this.he = false;
this.hb = null;
this.hq = null;
this.ht = null;
this.hu = null;
this.hs = null;
this.hf = false;
this.hn = null;
this.hw = null;
}
get_type() {
return "WebGrid";
}
get groupsExpanded() {
return this.hd;
}
set groupsExpanded(a) {
this.hd = a;
this.e("GroupsExpanded");
}
get dropAreaTemplateRef() {
return this.hr;
}
set dropAreaTemplateRef(a) {
this.hr = a;
this.e("DropAreaTemplateRef");
}
get detailTemplateRef() {
return this.hp;
}
set detailTemplateRef(a) {
this.hp = a;
this.e("DetailTemplateRef");
}
get id() {
return this.hv;
}
set id(a) {
this.hv = a;
this.e("Id");
}
get groupsRecords() {
return this.g7;
}
set groupsRecords(a) {
this.g7 = a;
this.e("GroupsRecords");
}
get dataRef() {
return this.ho;
}
set dataRef(a) {
this.ho = a;
this.e("DataRef");
}
get filteredData() {
return this.hl;
}
set filteredData(a) {
this.hl = a;
this.e("FilteredData");
}
get totalItemCount() {
return this.hj;
}
set totalItemCount(a) {
this.hj = a;
this.e("TotalItemCount");
}
get groupingExpressions() {
return this.g6;
}
set groupingExpressions(a) {
this.g6 = a;
this.e("GroupingExpressions");
}
get groupingExpansionState() {
return this.g5;
}
set groupingExpansionState(a) {
this.g5 = a;
this.e("GroupingExpansionState");
}
get hideGroupedColumns() {
return this.he;
}
set hideGroupedColumns(a) {
this.he = a;
this.e("HideGroupedColumns");
}
get groupStrategy() {
return this.hb;
}
set groupStrategy(a) {
this.hb = a;
this.e("GroupStrategy");
}
get dropAreaMessage() {
return this.hq;
}
set dropAreaMessage(a) {
this.hq = a;
this.e("DropAreaMessage");
}
get groupByRowSelectorTemplateRef() {
return this.ht;
}
set groupByRowSelectorTemplateRef(a) {
this.ht = a;
this.e("GroupByRowSelectorTemplateRef");
}
get groupRowTemplateRef() {
return this.hu;
}
set groupRowTemplateRef(a) {
this.hu = a;
this.e("GroupRowTemplateRef");
}
get groupAreaTemplateRef() {
return this.hs;
}
set groupAreaTemplateRef(a) {
this.hs = a;
this.e("GroupAreaTemplateRef");
}
get showGroupArea() {
return this.hf;
}
set showGroupArea(a) {
this.hf = a;
this.e("ShowGroupArea");
}
get dataPreLoadRef() {
return this.hn;
}
set dataPreLoadRef(a) {
this.hn = a;
this.e("DataPreLoadRef");
}
get onGroupingDoneRef() {
return this.hw;
}
set onGroupingDoneRef(a) {
this.hw = a;
this.e("OnGroupingDoneRef");
}
}
WebGridDescription.$t = markType(WebGridDescription, 'WebGridDescription', WebGridBaseDirectiveDescription.$);
return WebGridDescription;
})();