igniteui-react-grids
Version:
Ignite UI React grid components.
51 lines (50 loc) • 1.82 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 { Column } from "./Column";
import { ColumnCollection } from "./ColumnCollection";
import { markType } from "igniteui-react-core";
import { ColumnTemplateContext } from "./ColumnTemplateContext";
/**
* @hidden
*/
export let ColumnGroup = /*@__PURE__*/ (() => {
class ColumnGroup extends Column {
constructor() {
super(...arguments);
this.br = null;
}
get bo() {
let ret_ = this.n.l("children", (a) => new ColumnCollection(), (a) => new Column(), ["Column", "ColumnGroup", "ColumnLayout"]);
return ret_;
}
get bp() {
let ret_ = this.n.n("collapsible");
return ret_;
}
set bp(a) {
let value_ = a;
this.n.w("collapsible", value_);
}
get bq() {
let ret_ = this.n.n("expanded");
return ret_;
}
set bq(a) {
let value_ = a;
this.n.w("expanded", value_);
}
get bs() {
return this.br;
}
set bs(a) {
this.br = a;
this.n.t("collapsibleIndicatorTemplate", (b) => new ColumnTemplateContext(), this.br);
}
}
ColumnGroup.$t = /*@__PURE__*/ markType(ColumnGroup, 'ColumnGroup', Column.$);
return ColumnGroup;
})();