igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 3.09 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebQueryBuilderDescription = /*@__PURE__*/ (() => {
class WebQueryBuilderDescription extends Description {
constructor() {
super();
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;
}
get_type() {
return "WebQueryBuilder";
}
get type() {
return this.get_type();
}
get showEntityChangeDialog() {
return this.s;
}
set showEntityChangeDialog(a) {
this.s = a;
this.j("ShowEntityChangeDialog");
}
get entities() {
return this.k;
}
set entities(a) {
this.k = a;
this.j("Entities");
}
get expressionTree() {
return this.o;
}
set expressionTree(a) {
this.o = a;
this.j("ExpressionTree");
}
get locale() {
return this.x;
}
set locale(a) {
this.x = a;
this.j("Locale");
}
get disableEntityChange() {
return this.q;
}
set disableEntityChange(a) {
this.q = a;
this.j("DisableEntityChange");
}
get searchValueTemplateRef() {
return this.y;
}
set searchValueTemplateRef(a) {
this.y = a;
this.j("SearchValueTemplateRef");
}
get disableReturnFieldsChange() {
return this.r;
}
set disableReturnFieldsChange(a) {
this.r = a;
this.j("DisableReturnFieldsChange");
}
get queryBuilderHeaderCollection() {
return this.l;
}
set queryBuilderHeaderCollection(a) {
this.l = a;
this.j("QueryBuilderHeaderCollection");
}
get expressionTreeChangeRef() {
return this.w;
}
set expressionTreeChangeRef(a) {
this.w = a;
this.j("ExpressionTreeChangeRef");
}
}
WebQueryBuilderDescription.$t = markType(WebQueryBuilderDescription, 'WebQueryBuilderDescription', Description.$);
return WebQueryBuilderDescription;
})();