igniteui-react-core
Version:
Ignite UI React Core.
242 lines (241 loc) • 7.27 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.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;
return _this;
}
WebGridDescription.prototype.get_type = function () {
return "WebGrid";
};
Object.defineProperty(WebGridDescription.prototype, "groupsExpanded", {
get: function () {
return this.gz;
},
set: function (a) {
this.gz = a;
this.g("GroupsExpanded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dropAreaTemplateRef", {
get: function () {
return this.hb;
},
set: function (a) {
this.hb = a;
this.g("DropAreaTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "detailTemplateRef", {
get: function () {
return this.g9;
},
set: function (a) {
this.g9 = a;
this.g("DetailTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "id", {
get: function () {
return this.hh;
},
set: function (a) {
this.hh = a;
this.g("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dataRef", {
get: function () {
return this.g8;
},
set: function (a) {
this.g8 = a;
this.g("DataRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "totalItemCount", {
get: function () {
return this.g5;
},
set: function (a) {
this.g5 = a;
this.g("TotalItemCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingExpressions", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.g("GroupingExpressions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingExpansionState", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.g("GroupingExpansionState");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "hideGroupedColumns", {
get: function () {
return this.g0;
},
set: function (a) {
this.g0 = a;
this.g("HideGroupedColumns");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupStrategy", {
get: function () {
return this.gx;
},
set: function (a) {
this.gx = a;
this.g("GroupStrategy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dropAreaMessage", {
get: function () {
return this.ha;
},
set: function (a) {
this.ha = a;
this.g("DropAreaMessage");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupByRowSelectorTemplateRef", {
get: function () {
return this.hc;
},
set: function (a) {
this.hc = a;
this.g("GroupByRowSelectorTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupRowTemplateRef", {
get: function () {
return this.hg;
},
set: function (a) {
this.hg = a;
this.g("GroupRowTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "showGroupArea", {
get: function () {
return this.g1;
},
set: function (a) {
this.g1 = a;
this.g("ShowGroupArea");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "dataPreLoadRef", {
get: function () {
return this.g7;
},
set: function (a) {
this.g7 = a;
this.g("DataPreLoadRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingExpressionsChangeRef", {
get: function () {
return this.hf;
},
set: function (a) {
this.hf = a;
this.g("GroupingExpressionsChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingExpansionStateChangeRef", {
get: function () {
return this.he;
},
set: function (a) {
this.he = a;
this.g("GroupingExpansionStateChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridDescription.prototype, "groupingDoneRef", {
get: function () {
return this.hd;
},
set: function (a) {
this.hd = a;
this.g("GroupingDoneRef");
},
enumerable: false,
configurable: true
});
WebGridDescription.$t = markType(WebGridDescription, 'WebGridDescription', WebGridBaseDirectiveDescription.$);
return WebGridDescription;
}(WebGridBaseDirectiveDescription));
export { WebGridDescription };