UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 4.05 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 SectionHeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SectionHeaderDescription, _super); function SectionHeaderDescription() { var _this = _super.call(this) || this; _this.cd = null; _this.cc = null; _this.b5 = 0; _this.b7 = 0; _this.b6 = 0; _this.b4 = 0; _this.b2 = false; _this.ce = null; return _this; } SectionHeaderDescription.prototype.get_type = function () { return "SectionHeader"; }; Object.defineProperty(SectionHeaderDescription.prototype, "selectedBackground", { get: function () { return this.cd; }, set: function (a) { this.cd = a; this.e("SelectedBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "actualSelectedBackground", { get: function () { return this.cc; }, set: function (a) { this.cc = a; this.e("ActualSelectedBackground"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "paddingLeft", { get: function () { return this.b5; }, set: function (a) { this.b5 = a; this.e("PaddingLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "paddingTop", { get: function () { return this.b7; }, set: function (a) { this.b7 = a; this.e("PaddingTop"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "paddingRight", { get: function () { return this.b6; }, set: function (a) { this.b6 = a; this.e("PaddingRight"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "paddingBottom", { get: function () { return this.b4; }, set: function (a) { this.b4 = a; this.e("PaddingBottom"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "isCollapsable", { get: function () { return this.b2; }, set: function (a) { this.b2 = a; this.e("IsCollapsable"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderDescription.prototype, "summaryDisplayMode", { get: function () { return this.ce; }, set: function (a) { this.ce = a; this.e("SummaryDisplayMode"); }, enumerable: false, configurable: true }); SectionHeaderDescription.$t = markType(SectionHeaderDescription, 'SectionHeaderDescription', DefinitionBaseDescription.$); return SectionHeaderDescription; }(DefinitionBaseDescription)); export { SectionHeaderDescription };