UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

123 lines (122 loc) 4 kB
/* 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 { DefinitionBaseDescription } from "./DefinitionBaseDescription"; import { markType } from "./type"; /** * @hidden */ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(HeaderDescription, _super); function HeaderDescription() { var _this = _super.call(this) || this; _this.cd = null; _this.cb = null; _this.ce = null; _this.cc = null; _this.b4 = 0; _this.b6 = 0; _this.b5 = 0; _this.b3 = 0; return _this; } HeaderDescription.prototype.get_type = function () { return "Header"; }; Object.defineProperty(HeaderDescription.prototype, "sortIndicatorColor", { get: function () { return this.cd; }, set: function (a) { this.cd = a; this.e("SortIndicatorColor"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "actualSortIndicatorColor", { get: function () { return this.cb; }, set: function (a) { this.cb = a; this.e("ActualSortIndicatorColor"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "sortIndicatorStyle", { get: function () { return this.ce; }, set: function (a) { this.ce = a; this.e("SortIndicatorStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "actualSortIndicatorStyle", { get: function () { return this.cc; }, set: function (a) { this.cc = a; this.e("ActualSortIndicatorStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "paddingLeft", { get: function () { return this.b4; }, set: function (a) { this.b4 = a; this.e("PaddingLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "paddingTop", { get: function () { return this.b6; }, set: function (a) { this.b6 = a; this.e("PaddingTop"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "paddingRight", { get: function () { return this.b5; }, set: function (a) { this.b5 = a; this.e("PaddingRight"); }, enumerable: false, configurable: true }); Object.defineProperty(HeaderDescription.prototype, "paddingBottom", { get: function () { return this.b3; }, set: function (a) { this.b3 = a; this.e("PaddingBottom"); }, enumerable: false, configurable: true }); HeaderDescription.$t = markType(HeaderDescription, 'HeaderDescription', DefinitionBaseDescription.$); HeaderDescription.__canMarshalByValue = true; return HeaderDescription; }(DefinitionBaseDescription)); export { HeaderDescription };