UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

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