igniteui-react-core
Version:
Ignite UI React Core.
165 lines (164 loc) • 5.02 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 ColumnChooserDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ColumnChooserDescription, _super);
function ColumnChooserDescription() {
var _this = _super.call(this) || this;
_this.n = null;
_this.o = null;
_this.q = null;
_this.h = 0;
_this.r = null;
_this.s = null;
_this.p = null;
_this.m = null;
_this.k = null;
_this.l = null;
_this.j = null;
return _this;
}
ColumnChooserDescription.prototype.get_type = function () {
return "ColumnChooser";
};
Object.defineProperty(ColumnChooserDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "targetGridRef", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("TargetGridRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "title", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("Title");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "titleFontFamily", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.g("TitleFontFamily");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "titleFontSize", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("TitleFontSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "titleFontStyle", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.g("TitleFontStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "titleFontWeight", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.g("TitleFontWeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "titleColor", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("TitleColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "filterPlaceholderText", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("FilterPlaceholderText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "baseTheme", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("BaseTheme");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "density", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("Density");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnChooserDescription.prototype, "backgroundColor", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("BackgroundColor");
},
enumerable: false,
configurable: true
});
ColumnChooserDescription.$t = markType(ColumnChooserDescription, 'ColumnChooserDescription', Description.$);
return ColumnChooserDescription;
}(Description));
export { ColumnChooserDescription };