igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
82 lines (81 loc) • 2.81 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionFieldSelectorInfoDescription = /*@__PURE__*/ (() => {
class ToolActionFieldSelectorInfoDescription extends ToolActionInfoDescription {
constructor() {
super();
this.bu = null;
this.bv = null;
this.bp = false;
this.bo = false;
this.bt = null;
this.bw = null;
this.bx = null;
}
get_type() {
return "ToolActionFieldSelectorInfo";
}
get dataSourceRef() {
return this.bu;
}
set dataSourceRef(a) {
this.bu = a;
this.j("DataSourceRef");
}
get fieldType() {
return this.bv;
}
set fieldType(a) {
this.bv = a;
this.j("FieldType");
}
get updateDataSource() {
return this.bp;
}
set updateDataSource(a) {
this.bp = a;
this.j("UpdateDataSource");
}
get singleSelection() {
return this.bo;
}
set singleSelection(a) {
this.bo = a;
this.j("SingleSelection");
}
get aggregationsRef() {
return this.bt;
}
set aggregationsRef(a) {
this.bt = a;
this.j("AggregationsRef");
}
get rulesRef() {
return this.bw;
}
set rulesRef(a) {
this.bw = a;
this.j("RulesRef");
}
get selectedAggregationsRef() {
return this.bx;
}
set selectedAggregationsRef(a) {
this.bx = a;
this.j("SelectedAggregationsRef");
}
}
ToolActionFieldSelectorInfoDescription.$t = markType(ToolActionFieldSelectorInfoDescription, 'ToolActionFieldSelectorInfoDescription', ToolActionInfoDescription.$);
ToolActionFieldSelectorInfoDescription.__marshalByValue1 = true;
ToolActionFieldSelectorInfoDescription.__marshalByValueAlias1 = "ToolActionFieldSelectorInfo";
return ToolActionFieldSelectorInfoDescription;
})();