igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.6 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 {
constructor() {
super();
this.d4 = null;
this.d6 = null;
this.d5 = null;
this.d0 = false;
this.dw = null;
this.d1 = false;
this.dx = null;
}
get_type() {
return "ToolActionFieldSelector";
}
get dataSourceRef() {
return this.d4;
}
set dataSourceRef(a) {
this.d4 = a;
this.j("DataSourceRef");
}
get legendTargetRef() {
return this.d6;
}
set legendTargetRef(a) {
this.d6 = a;
this.j("LegendTargetRef");
}
get fieldType() {
return this.d5;
}
set fieldType(a) {
this.d5 = a;
this.j("FieldType");
}
get singleSelection() {
return this.d0;
}
set singleSelection(a) {
this.d0 = a;
this.j("SingleSelection");
}
get aggregations() {
return this.dw;
}
set aggregations(a) {
this.dw = a;
this.j("Aggregations");
}
get updateDataSource() {
return this.d1;
}
set updateDataSource(a) {
this.d1 = a;
this.j("UpdateDataSource");
}
get selectedAggregations() {
return this.dx;
}
set selectedAggregations(a) {
this.dx = a;
this.j("SelectedAggregations");
}
}
ToolActionFieldSelectorDescription.$t = markType(ToolActionFieldSelectorDescription, 'ToolActionFieldSelectorDescription', ToolActionDescription.$);
return ToolActionFieldSelectorDescription;
})();