igniteui-react-core
Version:
Ignite UI React Core.
80 lines (79 loc) • 2.54 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 { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionFieldSelectorDescription = /*@__PURE__*/ (() => {
class ToolActionFieldSelectorDescription extends ToolActionDescription {
get_type() {
return "ToolActionFieldSelector";
}
constructor() {
super();
this.ea = null;
this.ec = null;
this.eb = null;
this.d6 = false;
this.d2 = null;
this.d7 = false;
this.d3 = null;
}
get dataSourceRef() {
return this.ea;
}
set dataSourceRef(a) {
this.ea = a;
this.j("DataSourceRef");
}
get legendTargetRef() {
return this.ec;
}
set legendTargetRef(a) {
this.ec = a;
this.j("LegendTargetRef");
}
get fieldType() {
return this.eb;
}
set fieldType(a) {
this.eb = a;
this.j("FieldType");
}
get singleSelection() {
return this.d6;
}
set singleSelection(a) {
this.d6 = a;
this.j("SingleSelection");
}
get aggregations() {
return this.d2;
}
set aggregations(a) {
this.d2 = a;
this.j("Aggregations");
}
get updateDataSource() {
return this.d7;
}
set updateDataSource(a) {
this.d7 = a;
this.j("UpdateDataSource");
}
get selectedAggregations() {
return this.d3;
}
set selectedAggregations(a) {
this.d3 = a;
this.j("SelectedAggregations");
}
}
ToolActionFieldSelectorDescription.$t = /*@__PURE__*/ markType(ToolActionFieldSelectorDescription, 'ToolActionFieldSelectorDescription', ToolActionDescription.$);
return ToolActionFieldSelectorDescription;
})();