igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
249 lines (248 loc) • 7.85 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var GridColumnOptionsBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnOptionsBaseDescription, _super);
function GridColumnOptionsBaseDescription() {
var _this = _super.call(this) || this;
_this.m = false;
_this.v = null;
_this.w = null;
_this.s = null;
_this.x = null;
_this.t = null;
_this.y = null;
_this.o = 0;
_this.z = null;
_this.aa = null;
_this.k = null;
_this.ab = null;
_this.u = null;
_this.ac = null;
_this.p = 0;
_this.ad = null;
_this.ae = null;
_this.af = null;
return _this;
}
GridColumnOptionsBaseDescription.prototype.get_type = function () {
return "GridColumnOptionsBase";
};
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "autoSize", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("AutoSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "backgroundColor", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("BackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "baseTheme", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("BaseTheme");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "actualBaseTheme", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ActualBaseTheme");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "buttonDensity", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("ButtonDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "actualButtonDensity", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("ActualButtonDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "buttonFontFamily", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("ButtonFontFamily");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "buttonFontSize", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("ButtonFontSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "buttonFontStyle", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("ButtonFontStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "buttonFontWeight", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("ButtonFontWeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "column", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Column");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "density", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("Density");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "actualDensity", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("ActualDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "labelFontFamily", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("LabelFontFamily");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "labelFontSize", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("LabelFontSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "labelFontStyle", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("LabelFontStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "labelFontWeight", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("LabelFontWeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnOptionsBaseDescription.prototype, "textColor", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("TextColor");
},
enumerable: false,
configurable: true
});
GridColumnOptionsBaseDescription.$t = markType(GridColumnOptionsBaseDescription, 'GridColumnOptionsBaseDescription', Description.$);
return GridColumnOptionsBaseDescription;
}(Description));
export { GridColumnOptionsBaseDescription };