igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
153 lines (152 loc) • 5.08 kB
JavaScript
/*
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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var GridConditionalStyleDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridConditionalStyleDescription, _super);
function GridConditionalStyleDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
GridConditionalStyleDescription.prototype.get_type = function () {
return "GridConditionalStyle";
};
Object.defineProperty(GridConditionalStyleDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "styleKey", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("StyleKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "isTransitionInEnabled", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("IsTransitionInEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "properties", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Properties");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "conditionString", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("ConditionString");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "condition", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Condition");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "isFieldMinimumNeeded", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("IsFieldMinimumNeeded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "isFieldMaximumNeeded", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("IsFieldMaximumNeeded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "isFieldSumNeeded", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("IsFieldSumNeeded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "propertyUpdatedRef", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("PropertyUpdatedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridConditionalStyleDescription.prototype, "filterStringErrorsParsingRef", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("FilterStringErrorsParsingRef");
},
enumerable: false,
configurable: true
});
GridConditionalStyleDescription.$t = markType(GridConditionalStyleDescription, 'GridConditionalStyleDescription', Description.$);
return GridConditionalStyleDescription;
}(Description));
export { GridConditionalStyleDescription };