igniteui-react-core
Version:
Ignite UI React Core.
112 lines (111 loc) • 3.83 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var SummaryCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SummaryCellInfoDescription, _super);
function SummaryCellInfoDescription() {
var _this = _super.call(this) || this;
_this.gw = null;
_this.gx = null;
_this.g1 = null;
_this.gy = null;
_this.gt = 0;
_this.gz = null;
_this.g0 = null;
return _this;
}
SummaryCellInfoDescription.prototype.get_type = function () {
return "SummaryCellInfo";
};
Object.defineProperty(SummaryCellInfoDescription.prototype, "resolvedSummaryLabel", {
get: function () {
return this.gw;
},
set: function (a) {
this.gw = a;
this.j("ResolvedSummaryLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SummaryCellInfoDescription.prototype, "resolvedSummaryValue", {
get: function () {
return this.gx;
},
set: function (a) {
this.gx = a;
this.j("ResolvedSummaryValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelTextColor", {
get: function () {
return this.g1;
},
set: function (a) {
this.g1 = a;
this.j("SummaryLabelTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontFamily", {
get: function () {
return this.gy;
},
set: function (a) {
this.gy = a;
this.j("SummaryLabelFontFamily");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontSize", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.j("SummaryLabelFontSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontStyle", {
get: function () {
return this.gz;
},
set: function (a) {
this.gz = a;
this.j("SummaryLabelFontStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontWeight", {
get: function () {
return this.g0;
},
set: function (a) {
this.g0 = a;
this.j("SummaryLabelFontWeight");
},
enumerable: false,
configurable: true
});
SummaryCellInfoDescription.$t = markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$);
SummaryCellInfoDescription.__marshalByValue1 = true;
SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel";
return SummaryCellInfoDescription;
}(CellInfoDescription));
export { SummaryCellInfoDescription };