UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

76 lines (75 loc) 2.85 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 { __extends } from "tslib"; import { DefinitionBaseDescription } from "./DefinitionBaseDescription"; import { markType } from "./type"; /** * @hidden */ var FilterRowDefinitionDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(FilterRowDefinitionDescription, _super); function FilterRowDefinitionDescription() { var _this = _super.call(this) || this; _this.ct = 0; _this.cv = 0; _this.cu = 0; _this.cs = 0; return _this; } FilterRowDefinitionDescription.prototype.get_type = function () { return "FilterRowDefinition"; }; Object.defineProperty(FilterRowDefinitionDescription.prototype, "paddingLeft", { get: function () { return this.ct; }, set: function (a) { this.ct = a; this.j("PaddingLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(FilterRowDefinitionDescription.prototype, "paddingTop", { get: function () { return this.cv; }, set: function (a) { this.cv = a; this.j("PaddingTop"); }, enumerable: false, configurable: true }); Object.defineProperty(FilterRowDefinitionDescription.prototype, "paddingRight", { get: function () { return this.cu; }, set: function (a) { this.cu = a; this.j("PaddingRight"); }, enumerable: false, configurable: true }); Object.defineProperty(FilterRowDefinitionDescription.prototype, "paddingBottom", { get: function () { return this.cs; }, set: function (a) { this.cs = a; this.j("PaddingBottom"); }, enumerable: false, configurable: true }); FilterRowDefinitionDescription.$t = markType(FilterRowDefinitionDescription, 'FilterRowDefinitionDescription', DefinitionBaseDescription.$); FilterRowDefinitionDescription.__canMarshalByValue = true; FilterRowDefinitionDescription.__marshalByValueAlias = "FilterRowDefinition"; return FilterRowDefinitionDescription; }(DefinitionBaseDescription)); export { FilterRowDefinitionDescription };