igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
76 lines (75 loc) • 2.79 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 { WebColumnDescription } from "./WebColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebColumnGroupDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebColumnGroupDescription, _super);
function WebColumnGroupDescription() {
var _this = _super.call(this) || this;
_this.c1 = null;
_this.c4 = false;
_this.c5 = false;
_this.c9 = null;
return _this;
}
WebColumnGroupDescription.prototype.get_type = function () {
return "WebColumnGroup";
};
Object.defineProperty(WebColumnGroupDescription.prototype, "children", {
get: function () {
return this.c1;
},
set: function (a) {
this.c1 = a;
this.j("Children");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebColumnGroupDescription.prototype, "collapsible", {
get: function () {
return this.c4;
},
set: function (a) {
this.c4 = a;
this.j("Collapsible");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebColumnGroupDescription.prototype, "expanded", {
get: function () {
return this.c5;
},
set: function (a) {
this.c5 = a;
this.j("Expanded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebColumnGroupDescription.prototype, "collapsibleIndicatorTemplateRef", {
get: function () {
return this.c9;
},
set: function (a) {
this.c9 = a;
this.j("CollapsibleIndicatorTemplateRef");
},
enumerable: false,
configurable: true
});
WebColumnGroupDescription.$t = markType(WebColumnGroupDescription, 'WebColumnGroupDescription', WebColumnDescription.$);
WebColumnGroupDescription.__canMarshalByValue1 = true;
WebColumnGroupDescription.__marshalByValueAlias1 = "ColumnGroup";
return WebColumnGroupDescription;
}(WebColumnDescription));
export { WebColumnGroupDescription };