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