UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.36 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 { GridColumnOptionsSectionBaseDescription } from "./GridColumnOptionsSectionBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let GridColumnFilterOptionsDescription = /*@__PURE__*/ (() => { class GridColumnFilterOptionsDescription extends GridColumnOptionsSectionBaseDescription { constructor() { super(); this.aw = null; this.ay = null; this.ax = null; this.av = null; this.az = null; } get_type() { return "GridColumnFilterOptions"; } get clearColumnFiltersCaption() { return this.aw; } set clearColumnFiltersCaption(a) { this.aw = a; this.j("ClearColumnFiltersCaption"); } get filterListPlaceholderText() { return this.ay; } set filterListPlaceholderText(a) { this.ay = a; this.j("FilterListPlaceholderText"); } get filterListDensity() { return this.ax; } set filterListDensity(a) { this.ax = a; this.j("FilterListDensity"); } get actualFilterListDensity() { return this.av; } set actualFilterListDensity(a) { this.av = a; this.j("ActualFilterListDensity"); } get textFilterCaption() { return this.az; } set textFilterCaption(a) { this.az = a; this.j("TextFilterCaption"); } } GridColumnFilterOptionsDescription.$t = markType(GridColumnFilterOptionsDescription, 'GridColumnFilterOptionsDescription', GridColumnOptionsSectionBaseDescription.$); return GridColumnFilterOptionsDescription; })();