UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 3.6 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let FilterCellInfoDescription = /*@__PURE__*/ (() => { class FilterCellInfoDescription extends CellInfoDescription { constructor() { super(); this.g6 = null; this.go = null; this.gq = null; this.gm = null; this.g8 = null; this.g7 = null; this.gy = 0; this.gx = 0; this.gw = 0; this.gv = 0; this.gu = 0; this.gt = 0; } get_type() { return "FilterCellInfo"; } get dataType() { return this.g6; } set dataType(a) { this.g6 = a; this.j("DataType"); } get filter() { return this.go; } set filter(a) { this.go = a; this.j("Filter"); } get filterExpression() { return this.gq; } set filterExpression(a) { this.gq = a; this.j("FilterExpression"); } get filterOperands() { return this.gm; } set filterOperands(a) { this.gm = a; this.j("FilterOperands"); } get operatorType() { return this.g8; } set operatorType(a) { this.g8 = a; this.j("OperatorType"); } get filterValueRef() { return this.g7; } set filterValueRef(a) { this.g7 = a; this.j("FilterValueRef"); } get selectorTop() { return this.gy; } set selectorTop(a) { this.gy = a; this.j("SelectorTop"); } get selectorLeft() { return this.gx; } set selectorLeft(a) { this.gx = a; this.j("SelectorLeft"); } get editorTop() { return this.gw; } set editorTop(a) { this.gw = a; this.j("EditorTop"); } get editorLeft() { return this.gv; } set editorLeft(a) { this.gv = a; this.j("EditorLeft"); } get clearIconTop() { return this.gu; } set clearIconTop(a) { this.gu = a; this.j("ClearIconTop"); } get clearIconLeft() { return this.gt; } set clearIconLeft(a) { this.gt = a; this.j("ClearIconLeft"); } } FilterCellInfoDescription.$t = markType(FilterCellInfoDescription, 'FilterCellInfoDescription', CellInfoDescription.$); FilterCellInfoDescription.__marshalByValue1 = true; FilterCellInfoDescription.__marshalByValueAlias1 = "FilterCellModel"; return FilterCellInfoDescription; })();