UNPKG

igniteui-react-core

Version:
86 lines (85 loc) 3.2 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 { GridColumnOptionsSectionBaseDescription } from "./GridColumnOptionsSectionBaseDescription"; import { markType } from "./type"; /** * @hidden */ var GridColumnFilterOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridColumnFilterOptionsDescription, _super); function GridColumnFilterOptionsDescription() { var _this = _super.call(this) || this; _this.at = null; _this.av = null; _this.au = null; _this.as = null; _this.aw = null; return _this; } GridColumnFilterOptionsDescription.prototype.get_type = function () { return "GridColumnFilterOptions"; }; Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "clearColumnFiltersCaption", { get: function () { return this.at; }, set: function (a) { this.at = a; this.g("ClearColumnFiltersCaption"); }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "filterListPlaceholderText", { get: function () { return this.av; }, set: function (a) { this.av = a; this.g("FilterListPlaceholderText"); }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "filterListDensity", { get: function () { return this.au; }, set: function (a) { this.au = a; this.g("FilterListDensity"); }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "actualFilterListDensity", { get: function () { return this.as; }, set: function (a) { this.as = a; this.g("ActualFilterListDensity"); }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "textFilterCaption", { get: function () { return this.aw; }, set: function (a) { this.aw = a; this.g("TextFilterCaption"); }, enumerable: false, configurable: true }); GridColumnFilterOptionsDescription.$t = markType(GridColumnFilterOptionsDescription, 'GridColumnFilterOptionsDescription', GridColumnOptionsSectionBaseDescription.$); return GridColumnFilterOptionsDescription; }(GridColumnOptionsSectionBaseDescription)); export { GridColumnFilterOptionsDescription };