igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 1.97 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.cu = null;
_this.cw = null;
return _this;
}
WebColumnGroupDescription.prototype.get_type = function () {
return "WebColumnGroup";
};
Object.defineProperty(WebColumnGroupDescription.prototype, "children", {
get: function () {
return this.cu;
},
set: function (a) {
this.cu = a;
this.e("Children");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebColumnGroupDescription.prototype, "collapsibleIndicatorTemplateRef", {
get: function () {
return this.cw;
},
set: function (a) {
this.cw = a;
this.e("CollapsibleIndicatorTemplateRef");
},
enumerable: false,
configurable: true
});
WebColumnGroupDescription.$t = markType(WebColumnGroupDescription, 'WebColumnGroupDescription', WebColumnDescription.$);
return WebColumnGroupDescription;
}(WebColumnDescription));
export { WebColumnGroupDescription };