UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

115 lines (114 loc) 3.31 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let ColumnChooserDescription = /*@__PURE__*/ (() => { class ColumnChooserDescription extends Description { constructor() { super(); this.q = null; this.r = null; this.t = null; this.k = 0; this.u = null; this.v = null; this.s = null; this.p = null; this.n = null; this.o = null; this.m = null; } get_type() { return "ColumnChooser"; } get type() { return this.get_type(); } get targetGridRef() { return this.q; } set targetGridRef(a) { this.q = a; this.j("TargetGridRef"); } get title() { return this.r; } set title(a) { this.r = a; this.j("Title"); } get titleFontFamily() { return this.t; } set titleFontFamily(a) { this.t = a; this.j("TitleFontFamily"); } get titleFontSize() { return this.k; } set titleFontSize(a) { this.k = a; this.j("TitleFontSize"); } get titleFontStyle() { return this.u; } set titleFontStyle(a) { this.u = a; this.j("TitleFontStyle"); } get titleFontWeight() { return this.v; } set titleFontWeight(a) { this.v = a; this.j("TitleFontWeight"); } get titleColor() { return this.s; } set titleColor(a) { this.s = a; this.j("TitleColor"); } get filterPlaceholderText() { return this.p; } set filterPlaceholderText(a) { this.p = a; this.j("FilterPlaceholderText"); } get baseTheme() { return this.n; } set baseTheme(a) { this.n = a; this.j("BaseTheme"); } get density() { return this.o; } set density(a) { this.o = a; this.j("Density"); } get backgroundColor() { return this.m; } set backgroundColor(a) { this.m = a; this.j("BackgroundColor"); } } ColumnChooserDescription.$t = markType(ColumnChooserDescription, 'ColumnChooserDescription', Description.$); return ColumnChooserDescription; })();