igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.63 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 { GridColumnOptionsSectionBaseDescription } from "./GridColumnOptionsSectionBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GridColumnSummaryOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnSummaryOptionsDescription, _super);
function GridColumnSummaryOptionsDescription() {
var _this = _super.call(this) || this;
_this.ay = null;
_this.a0 = null;
_this.ax = null;
_this.av = 0;
_this.a1 = null;
_this.az = null;
return _this;
}
GridColumnSummaryOptionsDescription.prototype.get_type = function () {
return "GridColumnSummaryOptions";
};
Object.defineProperty(GridColumnSummaryOptionsDescription.prototype, "summaryCaption", {
get: function () {
return this.ay;
},
set: function (a) {
this.ay = a;
this.j("SummaryCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSummaryOptionsDescription.prototype, "summaryListDensity", {
get: function () {
return this.a0;
},
set: function (a) {
this.a0 = a;
this.j("SummaryListDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSummaryOptionsDescription.prototype, "actualSummaryListDensity", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.j("ActualSummaryListDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSummaryOptionsDescription.prototype, "activeCount", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.j("ActiveCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSummaryOptionsDescription.prototype, "summaryListTextColor", {
get: function () {
return this.a1;
},
set: function (a) {
this.a1 = a;
this.j("SummaryListTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSummaryOptionsDescription.prototype, "summaryListBackground", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("SummaryListBackground");
},
enumerable: false,
configurable: true
});
GridColumnSummaryOptionsDescription.$t = markType(GridColumnSummaryOptionsDescription, 'GridColumnSummaryOptionsDescription', GridColumnOptionsSectionBaseDescription.$);
return GridColumnSummaryOptionsDescription;
}(GridColumnOptionsSectionBaseDescription));
export { GridColumnSummaryOptionsDescription };