UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 2.01 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 { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription"; import { markType } from "./type"; /** * @hidden */ export let WebHierarchicalGridBaseDirectiveDescription = /*@__PURE__*/ (() => { class WebHierarchicalGridBaseDirectiveDescription extends WebGridBaseDirectiveDescription { get_type() { return "WebHierarchicalGridBaseDirective"; } constructor() { super(); this.gy = null; this.gv = false; this.gt = null; this.gx = null; } get hasChildrenKey() { return this.gy; } set hasChildrenKey(a) { this.gy = a; this.g("HasChildrenKey"); } get showExpandAll() { return this.gv; } set showExpandAll(a) { this.gv = a; this.g("ShowExpandAll"); } get rootGrid() { return this.gt; } set rootGrid(a) { this.gt = a; this.g("RootGrid"); } get dataPreLoadRef() { return this.gx; } set dataPreLoadRef(a) { this.gx = a; this.g("DataPreLoadRef"); } } WebHierarchicalGridBaseDirectiveDescription.$t = /*@__PURE__*/ markType(WebHierarchicalGridBaseDirectiveDescription, 'WebHierarchicalGridBaseDirectiveDescription', WebGridBaseDirectiveDescription.$); return WebHierarchicalGridBaseDirectiveDescription; })();