UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

141 lines (140 loc) 4.66 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebQueryBuilderDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebQueryBuilderDescription, _super); function WebQueryBuilderDescription() { var _this = _super.call(this) || this; _this.s = false; _this.k = null; _this.o = null; _this.x = null; _this.q = false; _this.y = null; _this.r = false; _this.l = null; _this.w = null; return _this; } WebQueryBuilderDescription.prototype.get_type = function () { return "WebQueryBuilder"; }; Object.defineProperty(WebQueryBuilderDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "showEntityChangeDialog", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ShowEntityChangeDialog"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "entities", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Entities"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "expressionTree", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("ExpressionTree"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "locale", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("Locale"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "disableEntityChange", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("DisableEntityChange"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "searchValueTemplateRef", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("SearchValueTemplateRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "disableReturnFieldsChange", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("DisableReturnFieldsChange"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "queryBuilderHeaderCollection", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("QueryBuilderHeaderCollection"); }, enumerable: false, configurable: true }); Object.defineProperty(WebQueryBuilderDescription.prototype, "expressionTreeChangeRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("ExpressionTreeChangeRef"); }, enumerable: false, configurable: true }); WebQueryBuilderDescription.$t = markType(WebQueryBuilderDescription, 'WebQueryBuilderDescription', Description.$); return WebQueryBuilderDescription; }(Description)); export { WebQueryBuilderDescription };