igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
122 lines (121 loc) • 4.05 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 { 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.c2 = null;
_this.c1 = null;
_this.cu = 0;
_this.cw = 0;
_this.cv = 0;
_this.ct = 0;
_this.cr = false;
_this.c3 = null;
return _this;
}
SectionHeaderDescription.prototype.get_type = function () {
return "SectionHeader";
};
Object.defineProperty(SectionHeaderDescription.prototype, "selectedBackground", {
get: function () {
return this.c2;
},
set: function (a) {
this.c2 = a;
this.j("SelectedBackground");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "actualSelectedBackground", {
get: function () {
return this.c1;
},
set: function (a) {
this.c1 = a;
this.j("ActualSelectedBackground");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "paddingLeft", {
get: function () {
return this.cu;
},
set: function (a) {
this.cu = a;
this.j("PaddingLeft");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "paddingTop", {
get: function () {
return this.cw;
},
set: function (a) {
this.cw = a;
this.j("PaddingTop");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "paddingRight", {
get: function () {
return this.cv;
},
set: function (a) {
this.cv = a;
this.j("PaddingRight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "paddingBottom", {
get: function () {
return this.ct;
},
set: function (a) {
this.ct = a;
this.j("PaddingBottom");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "isCollapsable", {
get: function () {
return this.cr;
},
set: function (a) {
this.cr = a;
this.j("IsCollapsable");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderDescription.prototype, "summaryDisplayMode", {
get: function () {
return this.c3;
},
set: function (a) {
this.c3 = a;
this.j("SummaryDisplayMode");
},
enumerable: false,
configurable: true
});
SectionHeaderDescription.$t = markType(SectionHeaderDescription, 'SectionHeaderDescription', DefinitionBaseDescription.$);
return SectionHeaderDescription;
}(DefinitionBaseDescription));
export { SectionHeaderDescription };