UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

107 lines (106 loc) 3.28 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 GridConditionalStyleDescription = /*@__PURE__*/ (() => { class GridConditionalStyleDescription extends Description { constructor() { super(); this.z = null; this.r = false; this.k = null; this.w = null; this.m = null; this.p = false; this.o = false; this.q = false; this.y = null; this.x = null; } get_type() { return "GridConditionalStyle"; } get type() { return this.get_type(); } get styleKey() { return this.z; } set styleKey(a) { this.z = a; this.j("StyleKey"); } get isTransitionInEnabled() { return this.r; } set isTransitionInEnabled(a) { this.r = a; this.j("IsTransitionInEnabled"); } get properties() { return this.k; } set properties(a) { this.k = a; this.j("Properties"); } get conditionString() { return this.w; } set conditionString(a) { this.w = a; this.j("ConditionString"); } get condition() { return this.m; } set condition(a) { this.m = a; this.j("Condition"); } get isFieldMinimumNeeded() { return this.p; } set isFieldMinimumNeeded(a) { this.p = a; this.j("IsFieldMinimumNeeded"); } get isFieldMaximumNeeded() { return this.o; } set isFieldMaximumNeeded(a) { this.o = a; this.j("IsFieldMaximumNeeded"); } get isFieldSumNeeded() { return this.q; } set isFieldSumNeeded(a) { this.q = a; this.j("IsFieldSumNeeded"); } get propertyUpdatedRef() { return this.y; } set propertyUpdatedRef(a) { this.y = a; this.j("PropertyUpdatedRef"); } get filterStringErrorsParsingRef() { return this.x; } set filterStringErrorsParsingRef(a) { this.x = a; this.j("FilterStringErrorsParsingRef"); } } GridConditionalStyleDescription.$t = markType(GridConditionalStyleDescription, 'GridConditionalStyleDescription', Description.$); return GridConditionalStyleDescription; })();