igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
254 lines (253 loc) • 7.8 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 { __extends } from "tslib";
import { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridDescription, _super);
function WebGridDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
WebGridDescription.prototype.get_type = function () {
return "WebGrid";
};
Object.defineProperty(WebGridDescription.prototype, "groupsExpanded", {
get: function () {
return this.hd;
},
set: function (a) {
this.hd = a;
this.e("GroupsExpanded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dropAreaTemplateRef", {
get: function () {
return this.hr;
},
set: function (a) {
this.hr = a;
this.e("DropAreaTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "detailTemplateRef", {
get: function () {
return this.hp;
},
set: function (a) {
this.hp = a;
this.e("DetailTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "id", {
get: function () {
return this.hv;
},
set: function (a) {
this.hv = a;
this.e("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupsRecords", {
get: function () {
return this.g7;
},
set: function (a) {
this.g7 = a;
this.e("GroupsRecords");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dataRef", {
get: function () {
return this.ho;
},
set: function (a) {
this.ho = a;
this.e("DataRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "filteredData", {
get: function () {
return this.hl;
},
set: function (a) {
this.hl = a;
this.e("FilteredData");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "totalItemCount", {
get: function () {
return this.hj;
},
set: function (a) {
this.hj = a;
this.e("TotalItemCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingExpressions", {
get: function () {
return this.g6;
},
set: function (a) {
this.g6 = a;
this.e("GroupingExpressions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingExpansionState", {
get: function () {
return this.g5;
},
set: function (a) {
this.g5 = a;
this.e("GroupingExpansionState");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "hideGroupedColumns", {
get: function () {
return this.he;
},
set: function (a) {
this.he = a;
this.e("HideGroupedColumns");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupStrategy", {
get: function () {
return this.hb;
},
set: function (a) {
this.hb = a;
this.e("GroupStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dropAreaMessage", {
get: function () {
return this.hq;
},
set: function (a) {
this.hq = a;
this.e("DropAreaMessage");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupByRowSelectorTemplateRef", {
get: function () {
return this.ht;
},
set: function (a) {
this.ht = a;
this.e("GroupByRowSelectorTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupRowTemplateRef", {
get: function () {
return this.hu;
},
set: function (a) {
this.hu = a;
this.e("GroupRowTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupAreaTemplateRef", {
get: function () {
return this.hs;
},
set: function (a) {
this.hs = a;
this.e("GroupAreaTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "showGroupArea", {
get: function () {
return this.hf;
},
set: function (a) {
this.hf = a;
this.e("ShowGroupArea");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dataPreLoadRef", {
get: function () {
return this.hn;
},
set: function (a) {
this.hn = a;
this.e("DataPreLoadRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "onGroupingDoneRef", {
get: function () {
return this.hw;
},
set: function (a) {
this.hw = a;
this.e("OnGroupingDoneRef");
},
enumerable: false,
configurable: true
});
WebGridDescription.$t = markType(WebGridDescription, 'WebGridDescription', WebGridBaseDirectiveDescription.$);
return WebGridDescription;
}(WebGridBaseDirectiveDescription));
export { WebGridDescription };