UNPKG

igniteui-react-core

Version:
66 lines (65 loc) 2.37 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 { TextCellInfoDescription } from "./TextCellInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let TextHeaderCellInfoDescription = /*@__PURE__*/ (() => { class TextHeaderCellInfoDescription extends TextCellInfoDescription { get_type() { return "TextHeaderCellInfo"; } constructor() { super(); this.fs = false; this.fy = null; this.fv = null; this.fx = null; this.fw = null; } get isColumnOptionsEnabled() { return this.fs; } set isColumnOptionsEnabled(a) { this.fs = a; this.g("IsColumnOptionsEnabled"); } get sortIndicatorStyle() { return this.fy; } set sortIndicatorStyle(a) { this.fy = a; this.g("SortIndicatorStyle"); } get columnOptionsIconAlignment() { return this.fv; } set columnOptionsIconAlignment(a) { this.fv = a; this.g("ColumnOptionsIconAlignment"); } get columnOptionsIconColor() { return this.fx; } set columnOptionsIconColor(a) { this.fx = a; this.g("ColumnOptionsIconColor"); } get columnOptionsIconBehavior() { return this.fw; } set columnOptionsIconBehavior(a) { this.fw = a; this.g("ColumnOptionsIconBehavior"); } } TextHeaderCellInfoDescription.$t = /*@__PURE__*/ markType(TextHeaderCellInfoDescription, 'TextHeaderCellInfoDescription', TextCellInfoDescription.$); TextHeaderCellInfoDescription.__marshalByValue2 = true; TextHeaderCellInfoDescription.__marshalByValueAlias2 = "TextHeaderCellModel"; return TextHeaderCellInfoDescription; })();