igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 3.28 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 { 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.aw = null;
_this.ay = null;
_this.ax = null;
_this.av = null;
_this.az = null;
return _this;
}
GridColumnFilterOptionsDescription.prototype.get_type = function () {
return "GridColumnFilterOptions";
};
Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "clearColumnFiltersCaption", {
get: function () {
return this.aw;
},
set: function (a) {
this.aw = a;
this.j("ClearColumnFiltersCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "filterListPlaceholderText", {
get: function () {
return this.ay;
},
set: function (a) {
this.ay = a;
this.j("FilterListPlaceholderText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "filterListDensity", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.j("FilterListDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "actualFilterListDensity", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.j("ActualFilterListDensity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnFilterOptionsDescription.prototype, "textFilterCaption", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("TextFilterCaption");
},
enumerable: false,
configurable: true
});
GridColumnFilterOptionsDescription.$t = markType(GridColumnFilterOptionsDescription, 'GridColumnFilterOptionsDescription', GridColumnOptionsSectionBaseDescription.$);
return GridColumnFilterOptionsDescription;
}(GridColumnOptionsSectionBaseDescription));
export { GridColumnFilterOptionsDescription };